{"info":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","description":"<html><head></head><body><h1 id=\"overview\">Overview</h1>\n<p>The LEFTA Systems API allows you to develop applications and integrations that integrate with the SHILED Application platform. The API is a RESTful API that uses HTTP requests and JSON responses for ease of integration.</p>\n<p>LEFTA Systems API provides an interface to the collection of applications within the LEFTA System's SHIELD Suite. Each application interface provides a series of methods within each URL grouping of the application name.</p>\n<p>This API is subject to change without notice and access is restricted only to developers approved by LEFTA Systems.</p>\n<h1 id=\"api-reference\">API Reference</h1>\n<p>Each section will cover in detail their APIs and use.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Overview","slug":"overview"},{"content":"API Reference","slug":"api-reference"}],"owner":"300733","collectionId":"33893710-1615-4c30-8d19-c5e2692d375a","publishedId":"UyrDCvAW","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"082d3d"},"publishDate":"2022-12-07T14:44:24.000Z"},"item":[{"name":"Authentication","item":[{"name":"Authenticate","event":[{"listen":"test","script":{"id":"ef74b19f-9275-4bd7-af05-727d4f0277d4","exec":["const responseJson = pm.response.json();\r","var accessToken = responseJson.accessToken;\r","var refreshToken = responseJson.refreshToken;\r","\r","pm.environment.set(\"AccessToken\", accessToken);\r","pm.environment.set(\"RefreshToken\", refreshToken);"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"27d3b229-1fc7-43b0-93f9-53871aebc745","exec":["pm.collectionVariables.set(\"pw\", pm.environment.get(\"Password\"))\r","pm.collectionVariables.set(\"un\", UserName)\r","pm.collectionVariable.set(\"us\", UserSecret)"],"type":"text/javascript"}}],"id":"fbbcaf6f-c396-4735-82c0-994b4d8c6f38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"username\": {{un}},\r\n    \"password\": ,\r\n    \"usersecret\": {{us}}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/authentication/authenticate","description":"<p>With your username, password, and usersecret, retrieve an access token that is valid for 8 hours. Once the token expires, the API will return a 401 response on all requests. This request also returns your refresh token which remains valid for a year since its creation.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"77a10c9b-a741-41fc-bd72-ab0a59fa0cfb","id":"77a10c9b-a741-41fc-bd72-ab0a59fa0cfb","name":"Authentication","type":"folder"}},"urlObject":{"path":["api","authentication","authenticate"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"18e8c382-ef6c-4dd3-9636-518aef8755fe","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"username\": \"*********************************\",\r\n    \"password\": \"*********************************\",\r\n    \"usersecret\": \"*********************************\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.leftasystems.net/api/authentication/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcYXV0aGVudGljYXRpb25cYXV0aGVudGljYXRl?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 14:31:18 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"accessToken\": \"*********************************\",\n    \"refreshToken\": \"*********************************\",\n    \"accessTokenExpiry\": \"2022-07-21T02:15:25.4096514Z\"\n}"},{"id":"5af3542f-2a7c-4a1c-8de4-63899ed9944c","name":"Invalid Credentials","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"username\": \"*********************************\",\r\n    \"password\": \"*********************************\",\r\n    \"usersecret\": \"*********************************\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.leftasystems.net/api/authentication/authenticate"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcYXV0aGVudGljYXRpb25cYXV0aGVudGljYXRl?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 14:34:55 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Invalid credentials\"\n}"}],"_postman_id":"fbbcaf6f-c396-4735-82c0-994b4d8c6f38"},{"name":"Refresh Tokens","event":[{"listen":"test","script":{"id":"f3554e14-5ce0-4d51-8df5-c8f09930c463","exec":["const responseJson = pm.response.json();\r","var accessToken = responseJson.accessToken;\r","var refreshToken = responseJson.refreshToken;\r","\r","pm.environment.set(\"AccessToken\", accessToken);\r","pm.environment.set(\"RefreshToken\", refreshToken);"],"type":"text/javascript"}}],"id":"9b183c3e-cb9e-4f55-9007-46ec0c7a7be7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"accessToken\": \"{{AccessToken}}\",\r\n    \"refreshToken\": \"{{RefreshToken}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/authentication/refresh","description":"<p>To reduce the exposure of client credentials over the network, your expired access token in conjunction with your current refresh token can be used to create a new access token. This is an optional method to revalidating your access token once expired.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"77a10c9b-a741-41fc-bd72-ab0a59fa0cfb","id":"77a10c9b-a741-41fc-bd72-ab0a59fa0cfb","name":"Authentication","type":"folder"}},"urlObject":{"path":["api","authentication","refresh"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"bb04e62a-9279-4ddd-b165-c6ddfe189ed4","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"accessToken\": \"*********************************\",\r\n    \"refreshToken\": \"*********************************\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.leftasystems.net/api/authentication/refresh"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcYXV0aGVudGljYXRpb25ccmVmcmVzaA==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 14:46:44 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"accessToken\": \"*********************************\",\n    \"refreshToken\": \"*********************************\",\n    \"accessTokenExpiry\": \"2022-07-21T02:15:25.4096514Z\"\n}"},{"id":"4ae8aedd-7190-42df-beab-91a773ce26de","name":"Invalid Token","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"accessToken\": \"*********************************\",\r\n    \"refreshToken\": \"*********************************\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/authentication/refresh"},"status":"Bad Request","code":400,"_postman_previewlanguage":"plain","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcYXV0aGVudGljYXRpb25ccmVmcmVzaA==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 14:43:05 GMT"}],"cookie":[],"responseTime":null,"body":"Invalid Client Request"}],"_postman_id":"9b183c3e-cb9e-4f55-9007-46ec0c7a7be7"}],"id":"77a10c9b-a741-41fc-bd72-ab0a59fa0cfb","description":"<h3 id=\"summary\">Summary</h3>\n<p>Most of the LEFTA Systems API methods use Bearer Authentication. The Bearer Token must be supplied with all API requests with exception to the Authentication API group. The Bearer Token, referred to as Access Token in the API, can be obtained via the API using the LEFTA supplied user credentials. The details are given in the next section.</p>\n<h3 id=\"client-setup-and-credentials\">Client Setup and Credentials</h3>\n<p>To begin, you will need to obtain client credentials by directly contacting LEFTA Systems. With the proper client credentials, your application will be able to request an access token from the Authentication API, extract a token from the response, and send the token to the LEFTA Systems API that you want to access on behalf of an authorized user.</p>\n<p>First, you will need to request access to our LEFTA Systems API by providing us with information about the application you wish to integrate with the API and agree to the necessary terms of service and<br />conditions.</p>\n<p>Once approved, LEFTA Systems will provide a Username, Password, and a User Secret Key - these keys are private and should be secured accordingly.</p>\n<h3 id=\"accessbearer-token\">Access/Bearer Token</h3>\n<p>The LEFTA Systems API provides and endpoint to provide you an access token based on the client credentials provided. The access token will be valid for 8 hours form issue.</p>\n<h3 id=\"refresh-tokens\">Refresh Tokens</h3>\n<p>The LEFTA Systems API also uses Refresh Tokens as part of the authentication/authorization workflow. Refresh tokens are credentials that can be used to acquire new access tokens. When access tokens expire, we can use refresh tokens to get a new access token from the authentication component. The lifetime of a refresh token is set much longer compared to the lifetime of an access token.</p>\n<h2 id=\"authentication-workflow-summary\">Authentication Workflow Summary</h2>\n<ol>\n<li>The client authenticates with the authentication API by providing the credentials.</li>\n</ol>\n<p>2. The authentication API issues the access token and the refresh token.</p>\n<p>3.The client requests the resource endpoints for a protected resource by providing the access token as a bearer token in the request header.</p>\n<p>4. The resource endpoint validates the access token and provides the protected resource.</p>\n<p>5. Steps 3 &amp; 4 keep on repeating until the access token expires.</p>\n<p>6. Once the access token expires, the client requests a new access token by providing the refresh token.</p>\n<p>7. The authentication API issues a new access token and refresh token.</p>\n<p>8. Steps 3 through 7 keep on repeating until the refresh token expires.</p>\n<p>9. Once the refresh token expires, the client needs to authenticate with the authentication server once again and the flow repeats from step 1.</p>\n<img src=\"https://api.leftasystems.net/images/documentation/AuthenticationProcess.png\" alt />","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"bf53cc76-bda9-48c4-baac-a9b96dd3a420","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"12022ba8-311b-4510-aba9-16c91156a8ba","type":"text/javascript","exec":[""]}}],"_postman_id":"77a10c9b-a741-41fc-bd72-ab0a59fa0cfb"},{"name":"User : Application Users","item":[{"name":"LookUp","item":[{"name":"Get By UserId","id":"1937da06-215c-4535-9407-a6d1aeaa7a45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/user/lookup/3","description":"<p>Get a detailed record of an application user using the LEFTA created User Id. The User Id is unique, as this is the Id created by the LEFTA system. Every user will have a User Id.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","user","lookup","3"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"b54133ed-ee59-46db-ad1e-4f29278e76ec","name":"Success","originalRequest":{"method":"GET","header":[],"url":"{{BaseUri}}/api/user/lookup/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcdXNlclxsb29rdXBcMw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 25 Jul 2022 18:39:39 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": 3,\n    \"userName\": \"jsmith@leftasystems.org\",\n    \"idnumber\": \"3475\",\n    \"rank\": \"Officer\",\n    \"firstName\": \"John\",\n    \"middleName\": \"Frank\",\n    \"lastName\": \"Smith\",\n    \"email\": \"\",\n    \"streetAddress\": \"123 Main Street\",\n    \"city\": \"Jacksonville\",\n    \"state\": \"FL\",\n    \"zip\": \"32223-____\",\n    \"phone\": \"234-123-4532 x_____\",\n    \"altPhone\": \"890-234-2131 x12342\",\n    \"birthDate\": \"01/01/1968\",\n    \"gender\": \"Male\",\n    \"race\": \"White\",\n    \"height\": \"6'2\",\n    \"employmentDate\": \"07/06/2015\",\n    \"workAssignment1\": \"Narcotics\",\n    \"workAssignment2\": \"Community Relations\",\n    \"workHours\": \"0800-1800\",\n    \"division\": \"Patrol\",\n    \"unit\": \"Alpha\",\n    \"ssn\": \"213-41-2341\",\n    \"dln\": \"GA 987-A786\",\n    \"dlnexpirationDate\": \"07/24/2019\",\n    \"languageSkills\": \"Spanish, French\",\n    \"specialSkills\": \"DUI Instructor\",\n    \"photoUrl\": \"Shield/User/3/profile-3c6a5e0e-c7e4-490c-97e9-4118c7bfe2e4.jpg\",\n    \"chainOfCommand\": \"johnjsmith@leftasystems.org\",\n    \"lawEnforcementStartDate\": \"07/01/1990\",\n    \"noRejectionEmail\": false,\n    \"status\": \"Complete\",\n    \"roleString\": \"\",\n    \"fieldStatus\": \"\",\n    \"className\": \"\",\n    \"cit\": true,\n    \"watch\": \"Day Watch\",\n    \"zone\": \"2\",\n    \"certificationDate\": \"12/16/2015\",\n    \"reCertificationDate\": \"11/05/2018\",\n    \"adLogin\": \"\",\n    \"endofTrainingDate\": \"\",\n    \"purgeStatus\": \"\",\n    \"dateofTraining\": \"\",\n    \"ftoProgramEndDate\": \"\",\n    \"probationaryPeriodStartDate\": \"\",\n    \"probationaryPeriodEndDate\": \"\",\n    \"supervisorEmail\": \"\",\n    \"comments\": \"\",\n    \"agencyId\": 1,\n    \"allAreas\": true,\n    \"postId\": \"\",\n    \"stateId\": \"\",\n    \"militaryService\": null,\n    \"militaryBranch\": \"\",\n    \"militaryServiceStartDate\": null,\n    \"militaryServiceEndDate\": null,\n    \"maritalStatus\": \"\",\n    \"jobClass\": \"\",\n    \"uniqueIdentifier\": \"\",\n    \"analyticsAdministrator\": false,\n    \"analyticsViewOnly\": false,\n    \"superAdmin\": false,\n    \"employeeSnapshot\": false,\n    \"deleted\": false,\n    \"userFullName\": \"Smith, John\",\n    \"leftaUserFullName\": \"Smith, John (3475)\",\n    \"metrUserFullNameddl\": \"Smith, John (3475)\",\n    \"leftaUserFullNameWithShiftAndZone\": \"Smith, John (3475)  - Day Watch  - 2\",\n    \"userAreas\": \"\",\n    \"include\": false,\n    \"dlnState\": \"\",\n    \"allSegments\": false,\n    \"weight\": \"\",\n    \"userDefinedFieldValues\": null\n}"},{"id":"bebd75bc-d92f-46bf-9be4-a8accef9e6fa","name":"User Not Found","originalRequest":{"method":"GET","header":[],"url":"{{BaseUri}}/api/user/lookup/3"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcdXNlclwx?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 25 Mar 2022 12:30:54 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"User not found for the supplied id!\"\n}"}],"_postman_id":"1937da06-215c-4535-9407-a6d1aeaa7a45"},{"name":"Get By CadId","id":"aff72b16-69de-4d6a-a2e5-6e043dd97910","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/user/lookup/3?searchtype=cadid","description":"<p>If your agency has been configured for CAD importing, you may look up users by their associated CAD Id.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","user","lookup","3"],"host":["{{BaseUri}}"],"query":[{"description":{"content":"<p>User Id assigned by the CAD system. (Requried)</p>\n","type":"text/plain"},"key":"searchtype","value":"cadid"}],"variable":[]}},"response":[{"id":"db342cce-80d9-423a-99f3-6588cedb0590","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/user/lookup/3?searchtype=cadid","host":["{{BaseUri}}"],"path":["api","user","lookup","3"],"query":[{"key":"searchtype","value":"cadid"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcdXNlclxsb29rdXBcMw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 25 Jul 2022 18:39:39 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": 3,\n    \"userName\": \"jsmith@leftasystems.org\",\n    \"idnumber\": \"3475\",\n    \"rank\": \"Officer\",\n    \"firstName\": \"John\",\n    \"middleName\": \"Frank\",\n    \"lastName\": \"Smith\",\n    \"email\": \"\",\n    \"streetAddress\": \"123 Main Street\",\n    \"city\": \"Jacksonville\",\n    \"state\": \"FL\",\n    \"zip\": \"32223-____\",\n    \"phone\": \"234-123-4532 x_____\",\n    \"altPhone\": \"890-234-2131 x12342\",\n    \"birthDate\": \"01/01/1968\",\n    \"gender\": \"Male\",\n    \"race\": \"White\",\n    \"height\": \"6'2\",\n    \"employmentDate\": \"07/06/2015\",\n    \"workAssignment1\": \"Narcotics\",\n    \"workAssignment2\": \"Community Relations\",\n    \"workHours\": \"0800-1800\",\n    \"division\": \"Patrol\",\n    \"unit\": \"Alpha\",\n    \"ssn\": \"213-41-2341\",\n    \"dln\": \"GA 987-A786\",\n    \"dlnexpirationDate\": \"07/24/2019\",\n    \"languageSkills\": \"Spanish, French\",\n    \"specialSkills\": \"DUI Instructor\",\n    \"photoUrl\": \"Shield/User/3/profile-3c6a5e0e-c7e4-490c-97e9-4118c7bfe2e4.jpg\",\n    \"chainOfCommand\": \"johnjsmith@leftasystems.org\",\n    \"lawEnforcementStartDate\": \"07/01/1990\",\n    \"noRejectionEmail\": false,\n    \"status\": \"Complete\",\n    \"roleString\": \"\",\n    \"fieldStatus\": \"\",\n    \"className\": \"\",\n    \"cit\": true,\n    \"watch\": \"Day Watch\",\n    \"zone\": \"2\",\n    \"certificationDate\": \"12/16/2015\",\n    \"reCertificationDate\": \"11/05/2018\",\n    \"adLogin\": \"\",\n    \"endofTrainingDate\": \"\",\n    \"purgeStatus\": \"\",\n    \"dateofTraining\": \"\",\n    \"ftoProgramEndDate\": \"\",\n    \"probationaryPeriodStartDate\": \"\",\n    \"probationaryPeriodEndDate\": \"\",\n    \"supervisorEmail\": \"\",\n    \"comments\": \"\",\n    \"agencyId\": 1,\n    \"allAreas\": true,\n    \"postId\": \"\",\n    \"stateId\": \"\",\n    \"militaryService\": null,\n    \"militaryBranch\": \"\",\n    \"militaryServiceStartDate\": null,\n    \"militaryServiceEndDate\": null,\n    \"maritalStatus\": \"\",\n    \"jobClass\": \"\",\n    \"uniqueIdentifier\": \"\",\n    \"analyticsAdministrator\": false,\n    \"analyticsViewOnly\": false,\n    \"superAdmin\": false,\n    \"employeeSnapshot\": false,\n    \"deleted\": false,\n    \"userFullName\": \"Smith, John\",\n    \"leftaUserFullName\": \"Smith, John (3475)\",\n    \"metrUserFullNameddl\": \"Smith, John (3475)\",\n    \"leftaUserFullNameWithShiftAndZone\": \"Smith, John (3475)  - Day Watch  - 2\",\n    \"userAreas\": \"\",\n    \"include\": false,\n    \"dlnState\": \"\",\n    \"allSegments\": false,\n    \"weight\": \"\",\n    \"userDefinedFieldValues\": null\n}"},{"id":"0120c28f-4d5c-45ca-951b-8472b78fdb78","name":"User Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/user/lookup/3?searchtype=cadid","host":["{{BaseUri}}"],"path":["api","user","lookup","3"],"query":[{"key":"searchtype","value":"cadid"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcdXNlclwx?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 25 Mar 2022 12:30:54 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"User not found for the supplied id!\"\n}"}],"_postman_id":"aff72b16-69de-4d6a-a2e5-6e043dd97910"},{"name":"Get By Agency Assigned Id","id":"c970f689-63fb-482b-9177-daca624533b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/user/lookup/3475?searchtype=agencyassignedid","description":"<p>Agencies are allowed to assign their own IDs (keys) to each user. Typically, this is a badge or employee number. This endpoint will allow one to request user information using the agency assigned ID. Because agencies can use any name for their ID, the name may not match up with the API's JSON object. The ID being used in this method will always match up to the \"idnumber\" attribute.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","user","lookup","3475"],"host":["{{BaseUri}}"],"query":[{"description":{"content":"<p>Typically a badge or employee number (required).</p>\n","type":"text/plain"},"key":"searchtype","value":"agencyassignedid"}],"variable":[]}},"response":[{"id":"d0da4d73-ab4b-4248-8b98-d1a8dcdfb3a0","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/user/lookup/3?searchtype=agencyassignedid","host":["{{BaseUri}}"],"path":["api","user","lookup","3"],"query":[{"key":"searchtype","value":"agencyassignedid"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcdXNlclxsb29rdXBcMw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 25 Jul 2022 18:39:39 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": 3,\n    \"userName\": \"jsmith@leftasystems.org\",\n    \"idnumber\": \"3475\",\n    \"rank\": \"Officer\",\n    \"firstName\": \"John\",\n    \"middleName\": \"Frank\",\n    \"lastName\": \"Smith\",\n    \"email\": \"\",\n    \"streetAddress\": \"123 Main Street\",\n    \"city\": \"Jacksonville\",\n    \"state\": \"FL\",\n    \"zip\": \"32223-____\",\n    \"phone\": \"234-123-4532 x_____\",\n    \"altPhone\": \"890-234-2131 x12342\",\n    \"birthDate\": \"01/01/1968\",\n    \"gender\": \"Male\",\n    \"race\": \"White\",\n    \"height\": \"6'2\",\n    \"employmentDate\": \"07/06/2015\",\n    \"workAssignment1\": \"Narcotics\",\n    \"workAssignment2\": \"Community Relations\",\n    \"workHours\": \"0800-1800\",\n    \"division\": \"Patrol\",\n    \"unit\": \"Alpha\",\n    \"ssn\": \"213-41-2341\",\n    \"dln\": \"GA 987-A786\",\n    \"dlnexpirationDate\": \"07/24/2019\",\n    \"languageSkills\": \"Spanish, French\",\n    \"specialSkills\": \"DUI Instructor\",\n    \"photoUrl\": \"Shield/User/3/profile-3c6a5e0e-c7e4-490c-97e9-4118c7bfe2e4.jpg\",\n    \"chainOfCommand\": \"johnjsmith@leftasystems.org\",\n    \"lawEnforcementStartDate\": \"07/01/1990\",\n    \"noRejectionEmail\": false,\n    \"status\": \"Complete\",\n    \"roleString\": \"\",\n    \"fieldStatus\": \"\",\n    \"className\": \"\",\n    \"cit\": true,\n    \"watch\": \"Day Watch\",\n    \"zone\": \"2\",\n    \"certificationDate\": \"12/16/2015\",\n    \"reCertificationDate\": \"11/05/2018\",\n    \"adLogin\": \"\",\n    \"endofTrainingDate\": \"\",\n    \"purgeStatus\": \"\",\n    \"dateofTraining\": \"\",\n    \"ftoProgramEndDate\": \"\",\n    \"probationaryPeriodStartDate\": \"\",\n    \"probationaryPeriodEndDate\": \"\",\n    \"supervisorEmail\": \"\",\n    \"comments\": \"\",\n    \"agencyId\": 1,\n    \"allAreas\": true,\n    \"postId\": \"\",\n    \"stateId\": \"\",\n    \"militaryService\": null,\n    \"militaryBranch\": \"\",\n    \"militaryServiceStartDate\": null,\n    \"militaryServiceEndDate\": null,\n    \"maritalStatus\": \"\",\n    \"jobClass\": \"\",\n    \"uniqueIdentifier\": \"\",\n    \"analyticsAdministrator\": false,\n    \"analyticsViewOnly\": false,\n    \"superAdmin\": false,\n    \"employeeSnapshot\": false,\n    \"deleted\": false,\n    \"userFullName\": \"Smith, John\",\n    \"leftaUserFullName\": \"Smith, John (3475)\",\n    \"metrUserFullNameddl\": \"Smith, John (3475)\",\n    \"leftaUserFullNameWithShiftAndZone\": \"Smith, John (3475)  - Day Watch  - 2\",\n    \"userAreas\": \"\",\n    \"include\": false,\n    \"dlnState\": \"\",\n    \"allSegments\": false,\n    \"weight\": \"\",\n    \"userDefinedFieldValues\": null\n}"},{"id":"83e7abdd-66c2-4aad-adae-fa9bbc3c219f","name":"User Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/user/lookup/3?searchtype=agencyassignedid","host":["{{BaseUri}}"],"path":["api","user","lookup","3"],"query":[{"key":"searchtype","value":"agencyassignedid"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcdXNlclwx?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 25 Mar 2022 12:30:54 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"User not found for the supplied id!\"\n}"}],"_postman_id":"c970f689-63fb-482b-9177-daca624533b5"}],"id":"6425b13e-6517-4ffc-9e11-c7fd47720ff2","description":"<p>On top of the standard Get method, the User API offers a lookup endpoint. This endpoint allows one to lookup specific users within the LEFTA system using one of three IDs.</p>\n","_postman_id":"6425b13e-6517-4ffc-9e11-c7fd47720ff2","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}}},{"name":"ProfilePhoto","item":[{"name":"Get","id":"e5a565ac-c28c-4dbd-91de-65558d06908a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/user/profilephoto/18","description":"<p>Get the photo associated with a user from the LEFTA system as a byte array. This documentation is unable to present an example of a successful request containing body content; however, the informational headers are available.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","user","profilephoto","18"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"7c7986d6-8a7d-4e1a-8719-660b73136398","name":"Success","originalRequest":{"method":"GET","header":[],"url":"{{BaseUri}}/api/user/profilephoto/18"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Kestrel"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 25 Mar 2022 12:26:35 GMT"},{"key":"Content-Length","value":"54615","description":"","type":"text"},{"key":"Content-Type","value":"image/png","description":"","type":"text"},{"key":"Content-Disposition","value":"attachment; filename=Bryan.PNG; filename*=UTF-8''Bryan.PNG","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"d34a75e2-4392-4513-ba60-444d1a4b9606","name":"Missing Photo","originalRequest":{"method":"GET","header":[],"url":"{{BaseUri}}/api/user/profilephoto/3"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcdXNlclxwcm9maWxlcGhvdG9cMw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 25 Jul 2022 18:51:06 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"trackingId\": \"993f958d-79c9-47e6-a3b1-96037b836342\",\n    \"message\": \"The requested user does not have a photo URL configured, or a photo could not be found at the configured URL!  Please ensure this user has a photo confgured in the SHIELD Portal application.\",\n    \"stackTrace\": \"   at LeftaSystems.Shield.Api.Controllers.UserController.ProfilePhoto(Int32 userId) in C:\\\\Source Control\\\\Git\\\\Api\\\\LeftaSystems.Shield.Api\\\\Controllers\\\\UserController.cs:line 101\\r\\n   at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.TaskOfIActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)\\r\\n   at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync()\\r\\n   at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync()\\r\\n   at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context)\\r\\n   at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\\r\\n   at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync()\\r\\n   at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync()\"\n}"}],"_postman_id":"e5a565ac-c28c-4dbd-91de-65558d06908a"}],"id":"e98f0b4e-b6f6-47d8-871e-9c70374ffcd2","description":"<p>Methods in this endpoint will interact with the User Photos configured within the LEFTA system.</p>\n","_postman_id":"e98f0b4e-b6f6-47d8-871e-9c70374ffcd2","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}}},{"name":"Get a List of Users","id":"8e043fb6-d83c-4b42-bdad-9870ea0d2d6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/user","description":"<p>Get a list of all application users.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","user"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"1c83958f-d022-4389-bde4-89a55d2d8e7b","name":"Success","originalRequest":{"method":"GET","header":[],"url":"{{BaseUri}}/api/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcdXNlcg==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 25 Mar 2022 12:20:16 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": 3,\n        \"userName\": \"hsarria@leftasystems.org\",\n        \"idnumber\": \"3475\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Henry\",\n        \"middleName\": \"Frank\",\n        \"lastName\": \"Sarria\",\n        \"email\": \"hsarria@leftasystems.org\",\n        \"streetAddress\": \"123 Main Street\",\n        \"city\": \"Jacksonville\",\n        \"state\": \"FL\",\n        \"zip\": \"32223-____\",\n        \"phone\": \"234-123-4532 x_____\",\n        \"altPhone\": \"890-234-2131 x12342\",\n        \"birthDate\": \"01/01/1968\",\n        \"gender\": \"Male\",\n        \"race\": \"White\",\n        \"height\": \"6'2\",\n        \"employmentDate\": \"07/06/2015\",\n        \"workAssignment1\": \"Narcotics\",\n        \"workAssignment2\": \"Community Relations\",\n        \"workHours\": \"0800-1800\",\n        \"division\": \"Patrol\",\n        \"unit\": \"Alpha\",\n        \"ssn\": \"sc/Ggi3s0GGLh4+FTIQPyw==\",\n        \"dln\": \"q//YWi8OfUBjNF9VH+Xcug==\",\n        \"dlnexpirationDate\": \"07/24/2019\",\n        \"languageSkills\": \"Spanish, French\",\n        \"specialSkills\": \"DUI Instructor\",\n        \"photoUrl\": \"Shield/User/3/profile-3c6a5e0e-c7e4-490c-97e9-4118c7bfe2e4.jpg\",\n        \"chainOfCommand\": \"bryanselzer@leftasystems.org\",\n        \"lawEnforcementStartDate\": \"07/01/1990\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": true,\n        \"watch\": \"Day Watch\",\n        \"zone\": \"2\",\n        \"certificationDate\": \"12/16/2015\",\n        \"reCertificationDate\": \"11/05/2018\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Sarria, Henry\",\n        \"leftaUserFullName\": \"Sarria, Henry (3475)\",\n        \"metrUserFullNameddl\": \"Sarria, Henry (3475)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Sarria, Henry (3475)  - Day Watch  - 2\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 4,\n        \"userName\": \"fborntraeger@leftasystems.org\",\n        \"idnumber\": \"4322\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Frank\",\n        \"middleName\": \"\",\n        \"lastName\": \"Borntraeger\",\n        \"email\": \"fborntraeger@leftasystems.org\",\n        \"streetAddress\": \"987 Main Street\",\n        \"city\": \"Miami\",\n        \"state\": \"FL\",\n        \"zip\": \"32886-____\",\n        \"phone\": \"987-645-3423 x_____\",\n        \"altPhone\": \"876-456-4532 x_____\",\n        \"birthDate\": \"12/24/1981\",\n        \"gender\": \"Male\",\n        \"race\": \"White\",\n        \"height\": \"5'10\",\n        \"employmentDate\": \"07/26/2011\",\n        \"workAssignment1\": \"East Sector\",\n        \"workAssignment2\": \"Bravo\",\n        \"workHours\": \"0600-1600\",\n        \"division\": \"Patrol\",\n        \"unit\": \"Patrol Unit\",\n        \"ssn\": \"\",\n        \"dln\": \"ztODOo1qdxuJIz/zsU0rWw==\",\n        \"dlnexpirationDate\": \"01/09/2025\",\n        \"languageSkills\": \"Spanish\",\n        \"specialSkills\": \"FTO, DUI Instructor\",\n        \"photoUrl\": \"Shield/User/4/profile-5e68de8e-4927-47bc-9138-5df37cbeaa60.jpg\",\n        \"chainOfCommand\": \"bsmith@jpd.gov\",\n        \"lawEnforcementStartDate\": \"07/26/2011\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"Trainee\",\n        \"className\": \"Jan-2019\",\n        \"cit\": true,\n        \"watch\": \"Day Shift\",\n        \"zone\": \"North Sector\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"A50C01\",\n        \"stateId\": \"7987\",\n        \"militaryService\": true,\n        \"militaryBranch\": \"Marine Corps\",\n        \"militaryServiceStartDate\": \"2019-08-12T00:00:00\",\n        \"militaryServiceEndDate\": \"2020-05-14T00:00:00\",\n        \"maritalStatus\": \"Single\",\n        \"jobClass\": \"Sworn\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Borntraeger, Frank\",\n        \"leftaUserFullName\": \"Borntraeger, Frank (4322)\",\n        \"metrUserFullNameddl\": \"Borntraeger, Frank (4322)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Borntraeger, Frank (4322)  - Day Shift  - North Sector\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"Fl\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 5,\n        \"userName\": \"jrobinson@leftasystems.org\",\n        \"idnumber\": \"3762\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"James\",\n        \"middleName\": \"\",\n        \"lastName\": \"Robinson\",\n        \"email\": \"jrobinson@leftasystems.org\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"FL\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"01/25/1976\",\n        \"gender\": \"Male\",\n        \"race\": \"Black\",\n        \"height\": \"5'9\",\n        \"employmentDate\": \"07/27/1999\",\n        \"workAssignment1\": \"Community Relations\",\n        \"workAssignment2\": \"Community Relations\",\n        \"workHours\": \"\",\n        \"division\": \"Patrol\",\n        \"unit\": \"Alpha\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"Shield/User/5/attachment-1ae94eca-182c-4d2c-b4d4-af5230bf9a89.jpg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"07/27/1999\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"1\",\n        \"zone\": \"3\",\n        \"certificationDate\": \"08/29/2016\",\n        \"reCertificationDate\": \"08/28/2019\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Robinson, James\",\n        \"leftaUserFullName\": \"Robinson, James (3762)\",\n        \"metrUserFullNameddl\": \"Robinson, James (3762)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Robinson, James (3762)  - 1  - 3\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 6,\n        \"userName\": \"gmcdonalds@leftasystems.org\",\n        \"idnumber\": \"3819\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Greg\",\n        \"middleName\": \"\",\n        \"lastName\": \"McDonalds\",\n        \"email\": \"gmcdonalds@leftasystems.org\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"FL\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"01/23/1996\",\n        \"gender\": \"Male\",\n        \"race\": \"Black\",\n        \"height\": \"6'2\",\n        \"employmentDate\": \"07/02/2008\",\n        \"workAssignment1\": \"Community Relations\",\n        \"workAssignment2\": \"Community Relations\",\n        \"workHours\": \"\",\n        \"division\": \"Patrol\",\n        \"unit\": \"Bravo\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"Shield/User/6/attachment-b6a6c047-6563-4f72-9625-eff9a46776cb.jpg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"07/02/2008\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": true,\n        \"watch\": \"Evening\",\n        \"zone\": \"1\",\n        \"certificationDate\": \"01/02/2017\",\n        \"reCertificationDate\": \"01/01/2020\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"McDonalds, Greg\",\n        \"leftaUserFullName\": \"McDonalds, Greg (3819)\",\n        \"metrUserFullNameddl\": \"McDonalds, Greg (3819)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"McDonalds, Greg (3819)  - Evening  - 1\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 7,\n        \"userName\": \"lalley@leftasystems.org\",\n        \"idnumber\": \"3628\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Lynn\",\n        \"middleName\": \"\",\n        \"lastName\": \"Alley\",\n        \"email\": \"lalley@leftasystems.org\",\n        \"streetAddress\": \"986 W. Second Street\",\n        \"city\": \"Miami\",\n        \"state\": \"FL\",\n        \"zip\": \"90769-____\",\n        \"phone\": \"312-876-8743 x_____\",\n        \"altPhone\": \"312-358-0564 x_____\",\n        \"birthDate\": \"01/25/1978\",\n        \"gender\": \"Female\",\n        \"race\": \"Hispanic/Latino\",\n        \"height\": \" < 5'\",\n        \"employmentDate\": \"04/16/2005\",\n        \"workAssignment1\": \"Community Relations\",\n        \"workAssignment2\": \"Community Relations\",\n        \"workHours\": \"\",\n        \"division\": \"Problem Response Team\",\n        \"unit\": \"Bravo\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"NoImage.jpeg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"04/16/2005\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"Evening\",\n        \"zone\": \"2\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"Married\",\n        \"jobClass\": \"Sworn\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Alley, Lynn\",\n        \"leftaUserFullName\": \"Alley, Lynn (3628)\",\n        \"metrUserFullNameddl\": \"Alley, Lynn (3628)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Alley, Lynn (3628)  - Evening  - 2\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"100 - 149\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 8,\n        \"userName\": \"arobben@leftasystems.org\",\n        \"idnumber\": \"4819\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Art\",\n        \"middleName\": \"\",\n        \"lastName\": \"Robben\",\n        \"email\": \"arobben@leftasystems.org\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"FL\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"01/25/1990\",\n        \"gender\": \"Male\",\n        \"race\": \"Hispanic/Latino\",\n        \"height\": \" < 5'\",\n        \"employmentDate\": \"08/14/2000\",\n        \"workAssignment1\": \"Community Relations\",\n        \"workAssignment2\": \"Community Relations\",\n        \"workHours\": \"\",\n        \"division\": \"Problem Response Team\",\n        \"unit\": \"Bravo\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"Shield/User/8/attachment-c571d9ca-f7ad-48ad-a2fa-76548d3c29e0.jpg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"08/14/2018\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": true,\n        \"watch\": \"Midnights\",\n        \"zone\": \"1\",\n        \"certificationDate\": \"03/19/2016\",\n        \"reCertificationDate\": \"03/18/2019\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Robben, Art\",\n        \"leftaUserFullName\": \"Robben, Art (4819)\",\n        \"metrUserFullNameddl\": \"Robben, Art (4819)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Robben, Art (4819)  - Midnights  - 1\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 9,\n        \"userName\": \"tmueller@leftasystems.org\",\n        \"idnumber\": \"3876\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Tim\",\n        \"middleName\": \"\",\n        \"lastName\": \"Mueller\",\n        \"email\": \"tmueller@leftasystems.org\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"FL\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"01/01/1983\",\n        \"gender\": \"Male\",\n        \"race\": \"Asian\",\n        \"height\": \" < 5'\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"Community Relations\",\n        \"workAssignment2\": \"Community Relations\",\n        \"workHours\": \"\",\n        \"division\": \"Vice\",\n        \"unit\": \"Detective\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"Shield/User/9/attachment-54b9d2c8-87a7-41d5-ab8d-71e4827eb857.jpg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": true,\n        \"watch\": \"Midnights\",\n        \"zone\": \"3\",\n        \"certificationDate\": \"08/14/2016\",\n        \"reCertificationDate\": \"08/13/2019\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Mueller, Tim\",\n        \"leftaUserFullName\": \"Mueller, Tim (3876)\",\n        \"metrUserFullNameddl\": \"Mueller, Tim (3876)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Mueller, Tim (3876)  - Midnights  - 3\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 10,\n        \"userName\": \"pbreitner@leftasystems.org\",\n        \"idnumber\": \"3761\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Paula\",\n        \"middleName\": \"\",\n        \"lastName\": \"Breitner\",\n        \"email\": \"pbreitner@leftasystems.org\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"FL\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"02/01/1964\",\n        \"gender\": \"Female\",\n        \"race\": \"Asian\",\n        \"height\": \" < 5'\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"Community Relations\",\n        \"workAssignment2\": \"Community Relations\",\n        \"workHours\": \"\",\n        \"division\": \"Vice\",\n        \"unit\": \"Detective\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"NoImage.jpeg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"Evenings\",\n        \"zone\": \"2\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"Civilian\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Breitner, Paula\",\n        \"leftaUserFullName\": \"Breitner, Paula (3761)\",\n        \"metrUserFullNameddl\": \"Breitner, Paula (3761)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Breitner, Paula (3761)  - Evenings  - 2\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 11,\n        \"userName\": \"mneuer@leftasystems.org\",\n        \"idnumber\": \"3214\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Mike\",\n        \"middleName\": \"\",\n        \"lastName\": \"Neuer\",\n        \"email\": \"mneuer@leftasystems.org\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"FL\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"01/24/1982\",\n        \"gender\": \"Male\",\n        \"race\": \"Black\",\n        \"height\": \" < 5'\",\n        \"employmentDate\": \"08/15/2015\",\n        \"workAssignment1\": \"Community Relations\",\n        \"workAssignment2\": \"Community Relations\",\n        \"workHours\": \"\",\n        \"division\": \"Patrol\",\n        \"unit\": \"Charlie\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"Shield/User/11/profile-aaac33be-79e7-44b0-9e74-078afb32e947.jpg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"08/15/2018\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"Graduated\",\n        \"className\": \"Oct-2018\",\n        \"cit\": null,\n        \"watch\": \"Days\",\n        \"zone\": \"3\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"09/26/2018\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"10/01/2018\",\n        \"ftoProgramEndDate\": \"01/31/2019\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Neuer, Mike\",\n        \"leftaUserFullName\": \"Neuer, Mike (3214)\",\n        \"metrUserFullNameddl\": \"Neuer, Mike (3214)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Neuer, Mike (3214)  - Days  - 3\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 12,\n        \"userName\": \"plahm@leftasystems.org\",\n        \"idnumber\": \"3998\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Phillis\",\n        \"middleName\": \"\",\n        \"lastName\": \"Lahm\",\n        \"email\": \"plahm@leftasystems.org\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"FL\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"01/17/1996\",\n        \"gender\": \"Female\",\n        \"race\": \"Asian\",\n        \"height\": \" < 5'\",\n        \"employmentDate\": \"04/02/2010\",\n        \"workAssignment1\": \"Community Relations\",\n        \"workAssignment2\": \"Community Relations\",\n        \"workHours\": \"\",\n        \"division\": \"Patrol\",\n        \"unit\": \"Charlie\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"Shield/User/12/attachment-c85cfa32-9590-4497-a47f-5c76ea19bb21.jpg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"04/02/2018\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"Trainee\",\n        \"className\": \"Dec-2018\",\n        \"cit\": null,\n        \"watch\": \"Evenings\",\n        \"zone\": \"\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"03/05/2019\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Lahm, Phillis\",\n        \"leftaUserFullName\": \"Lahm, Phillis (3998)\",\n        \"metrUserFullNameddl\": \"Lahm, Phillis (3998)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Lahm, Phillis (3998)  - Evenings \",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 13,\n        \"userName\": \"xalonso@leftasystems.org\",\n        \"idnumber\": \"4387\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Jennifer\",\n        \"middleName\": \"\",\n        \"lastName\": \"Alonso\",\n        \"email\": \"xalonso@leftasystems.org\",\n        \"streetAddress\": \"190 Del Mar Shores\",\n        \"city\": \"Jacksonville\",\n        \"state\": \"FL\",\n        \"zip\": \"32224-____\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"01/25/1995\",\n        \"gender\": \"Female\",\n        \"race\": \"White\",\n        \"height\": \" < 5'\",\n        \"employmentDate\": \"08/14/2005\",\n        \"workAssignment1\": \"Community Relations\",\n        \"workAssignment2\": \"Community Relations\",\n        \"workHours\": \"\",\n        \"division\": \"Patrol\",\n        \"unit\": \"Charlie\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"08/14/2018\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"Trainee\",\n        \"className\": \"Oct-2018\",\n        \"cit\": null,\n        \"watch\": \"Midnights\",\n        \"zone\": \"2\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"10/01/2018\",\n        \"ftoProgramEndDate\": \"01/31/2019\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"Non-Sworn\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Alonso, Jennifer\",\n        \"leftaUserFullName\": \"Alonso, Jennifer (4387)\",\n        \"metrUserFullNameddl\": \"Alonso, Jennifer (4387)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Alonso, Jennifer (4387)  - Midnights  - 2\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 14,\n        \"userName\": \"dalaba@leftasystems.org\",\n        \"idnumber\": \"3451\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"David\",\n        \"middleName\": \"\",\n        \"lastName\": \"Alaba\",\n        \"email\": \"dalaba@leftasystems.org\",\n        \"streetAddress\": \"1605 W Walnut St\",\n        \"city\": \"Jacksonville\",\n        \"state\": \"FL\",\n        \"zip\": \"32256-____\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"01/25/1993\",\n        \"gender\": \"LBBTQ+\",\n        \"race\": \"Pacific Islander\",\n        \"height\": \" < 5'\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"East Sector\",\n        \"workAssignment2\": \"Alpha\",\n        \"workHours\": \"\",\n        \"division\": \"Corrections Division\",\n        \"unit\": \"FTO Unit\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"Shield/User/14/profile-4af0d4f9-11b7-4a44-8611-8682763013bd.jpg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"01/01/2018\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"Graduated\",\n        \"className\": \"Oct-2018\",\n        \"cit\": null,\n        \"watch\": \"Day Shift\",\n        \"zone\": \"Sector 1 (South)\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"05/15/2019\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"08/14/2018\",\n        \"ftoProgramEndDate\": \"01/31/2019\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"Sworn\",\n        \"uniqueIdentifier\": \"A12345678\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": true,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Alaba, David\",\n        \"leftaUserFullName\": \"Alaba, David (3451)\",\n        \"metrUserFullNameddl\": \"Alaba, David (3451)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Alaba, David (3451)  - Day Shift  - Sector 1 (South)\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"150 - 199\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 15,\n        \"userName\": \"kwebb@leftasystems.org\",\n        \"idnumber\": \"702\",\n        \"rank\": \"Sergeant\",\n        \"firstName\": \"Kyle\",\n        \"middleName\": \"\",\n        \"lastName\": \"Webb\",\n        \"email\": \"kwebb@leftasystems.org\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"FL\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"\",\n        \"gender\": \"Male\",\n        \"race\": \"Asian\",\n        \"height\": \" < 5'\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"Community Relations\",\n        \"workAssignment2\": \"Community Relations\",\n        \"workHours\": \"\",\n        \"division\": \"Patrol\",\n        \"unit\": \"Patrol East\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"NoImage.jpeg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"Evenings\",\n        \"zone\": \"2\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Webb, Kyle\",\n        \"leftaUserFullName\": \"Webb, Kyle (702)\",\n        \"metrUserFullNameddl\": \"Webb, Kyle (702)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Webb, Kyle (702)  - Evenings  - 2\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 16,\n        \"userName\": \"crodgers@leftasystems.org\",\n        \"idnumber\": \"714\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Chris\",\n        \"middleName\": \"\",\n        \"lastName\": \"Rodgers\",\n        \"email\": \"crodgers@leftasystems.org\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"FL\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"\",\n        \"gender\": \"Male\",\n        \"race\": \"White\",\n        \"height\": \" < 5'\",\n        \"employmentDate\": \"08/15/2000\",\n        \"workAssignment1\": \"Community Relations\",\n        \"workAssignment2\": \"Community Relations\",\n        \"workHours\": \"\",\n        \"division\": \"Patrol\",\n        \"unit\": \"Patrol East\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"NoImage.jpeg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"08/15/2018\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"Graduated\",\n        \"className\": \"Oct-2018\",\n        \"cit\": null,\n        \"watch\": \"Midnights\",\n        \"zone\": \"1\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"04/02/2018\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"08/01/2018\",\n        \"probationaryPeriodEndDate\": \"09/28/2019\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Rodgers, Chris\",\n        \"leftaUserFullName\": \"Rodgers, Chris (714)\",\n        \"metrUserFullNameddl\": \"Rodgers, Chris (714)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Rodgers, Chris (714)  - Midnights  - 1\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 17,\n        \"userName\": \"dhoeness@leftasystems.org\",\n        \"idnumber\": \"756\",\n        \"rank\": \"Sergeant\",\n        \"firstName\": \"Dave\",\n        \"middleName\": \"\",\n        \"lastName\": \"Hoeness\",\n        \"email\": \"dhoeness@leftasystems.org\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"FL\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"\",\n        \"gender\": \"Male\",\n        \"race\": \"Black\",\n        \"height\": \" < 5'\",\n        \"employmentDate\": \"04/03/1995\",\n        \"workAssignment1\": \"Community Relations\",\n        \"workAssignment2\": \"Community Relations\",\n        \"workHours\": \"\",\n        \"division\": \"Patrol\",\n        \"unit\": \"Patrol East\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"NoImage.jpeg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"04/03/2018\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"Evenings\",\n        \"zone\": \"2\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"Sworn\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Hoeness, Dave\",\n        \"leftaUserFullName\": \"Hoeness, Dave (756)\",\n        \"metrUserFullNameddl\": \"Hoeness, Dave (756)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Hoeness, Dave (756)  - Evenings  - 2\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 18,\n        \"userName\": \"bsadmin@leftasystems.org\",\n        \"idnumber\": \"7525\",\n        \"rank\": \"Lieutenant\",\n        \"firstName\": \"Brian\",\n        \"middleName\": \"\",\n        \"lastName\": \"Selzer\",\n        \"email\": \"bsadmin@leftasystems.org\",\n        \"streetAddress\": \"123 Main Street\",\n        \"city\": \"Jacksonville\",\n        \"state\": \"Fl\",\n        \"zip\": \"35675-6876\",\n        \"phone\": \"904-786-6799 x_____\",\n        \"altPhone\": \"904-879-8987 x_____\",\n        \"birthDate\": \"01/10/1978\",\n        \"gender\": \"Male\",\n        \"race\": \"White\",\n        \"height\": \"5'10\",\n        \"employmentDate\": \"01/11/1998\",\n        \"workAssignment1\": \"East Sector\",\n        \"workAssignment2\": \"SWAT\",\n        \"workHours\": \"0700-1700\",\n        \"division\": \"Patrol Division\",\n        \"unit\": \"Patrol East\",\n        \"ssn\": \"QIEcFlObrLkPzqe2j1ccuw==\",\n        \"dln\": \"1YcLD1dP7kGneNbZWzr0akvFAZ+iM7cKfHZDW84xZYI=\",\n        \"dlnexpirationDate\": \"01/23/2019\",\n        \"languageSkills\": \"German\",\n        \"specialSkills\": \"FTO and DUI certified\",\n        \"photoUrl\": \"NoImage.jpeg\",\n        \"chainOfCommand\": \"bsingleton@police.gov\",\n        \"lawEnforcementStartDate\": \"07/01/1990\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"Watch 2\",\n        \"zone\": \"Patrol\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"kbixby@police.gov\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"76421\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"Single\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": true,\n        \"analyticsViewOnly\": true,\n        \"superAdmin\": true,\n        \"employeeSnapshot\": true,\n        \"deleted\": false,\n        \"userFullName\": \"Selzer, Brian\",\n        \"leftaUserFullName\": \"Selzer, Brian (7525)\",\n        \"metrUserFullNameddl\": \"Selzer, Brian (7525)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Selzer, Brian (7525)  - Watch 2  - Patrol\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"FL\",\n        \"allSegments\": false,\n        \"weight\": \"150 - 199\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 21,\n        \"userName\": \"passofficer@yahoo.com\",\n        \"idnumber\": \"3876\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Bryan\",\n        \"middleName\": \"\",\n        \"lastName\": \"Selzer\",\n        \"email\": \"passofficer@yahoo.com\",\n        \"streetAddress\": \"123 Main Street\",\n        \"city\": \"Jacksonville\",\n        \"state\": \"Fl\",\n        \"zip\": \"32223-____\",\n        \"phone\": \"904-467-1234 x_____\",\n        \"altPhone\": \"904-678-8755 x_____\",\n        \"birthDate\": \"01/24/1976\",\n        \"gender\": \"Male\",\n        \"race\": \"White\",\n        \"height\": \"5'10\",\n        \"employmentDate\": \"01/15/1996\",\n        \"workAssignment1\": \"Watch 1\",\n        \"workAssignment2\": \"Gold Squad\",\n        \"workHours\": \"0700-1825\",\n        \"division\": \"Patrol\",\n        \"unit\": \"Alpha\",\n        \"ssn\": \"a6vfP9uH8IVaEsdvR9f14w==\",\n        \"dln\": \"RmmTLYy/ibLPDZfNXjdh3w==\",\n        \"dlnexpirationDate\": \"01/02/2020\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"CIT, SWAT\",\n        \"photoUrl\": \"\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"\",\n        \"zone\": \"\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Selzer, Bryan\",\n        \"leftaUserFullName\": \"Selzer, Bryan (3876)\",\n        \"metrUserFullNameddl\": \"Selzer, Bryan (3876)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Selzer, Bryan (3876)  \",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 22,\n        \"userName\": \"passreviewer@yahoo.com\",\n        \"idnumber\": \"777\",\n        \"rank\": \"Sergeant\",\n        \"firstName\": \"Bill\",\n        \"middleName\": \"\",\n        \"lastName\": \"Wilmoth\",\n        \"email\": \"passreviewer@yahoo.com\",\n        \"streetAddress\": \"123 Main Street\",\n        \"city\": \"Jacksonville\",\n        \"state\": \"Fl\",\n        \"zip\": \"32223-____\",\n        \"phone\": \"904-463-7712 x_____\",\n        \"altPhone\": \"904-463-7712 x_____\",\n        \"birthDate\": \"01/17/1959\",\n        \"gender\": \"Male\",\n        \"race\": \"White\",\n        \"height\": \"6'2\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"Watch 1\",\n        \"workAssignment2\": \"\",\n        \"workHours\": \"0700-1825\",\n        \"division\": \"Patrol\",\n        \"unit\": \"Alpha\",\n        \"ssn\": \"DXpFSNus9WoH9elBmFtX8g==\",\n        \"dln\": \"pH2ns38Ty2lo74FvPW+aaw==\",\n        \"dlnexpirationDate\": \"01/23/2020\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"\",\n        \"zone\": \"\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Wilmoth, Bill\",\n        \"leftaUserFullName\": \"Wilmoth, Bill (777)\",\n        \"metrUserFullNameddl\": \"Wilmoth, Bill (777)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Wilmoth, Bill (777)  \",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 82,\n        \"userName\": \"diddlyoman@hotmail.com\",\n        \"idnumber\": \"0004\",\n        \"rank\": \"\",\n        \"firstName\": \"Brad\",\n        \"middleName\": \"\",\n        \"lastName\": \"Boman\",\n        \"email\": \"diddlyoman@hotmail.com\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"\",\n        \"gender\": \"Male\",\n        \"race\": \"Other\",\n        \"height\": \"\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"\",\n        \"workAssignment2\": \"\",\n        \"workHours\": \"\",\n        \"division\": \"\",\n        \"unit\": \"\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"\",\n        \"zone\": \"\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Boman, Brad\",\n        \"leftaUserFullName\": \"Boman, Brad (0004)\",\n        \"metrUserFullNameddl\": \"Boman, Brad (0004)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Boman, Brad (0004)  \",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 83,\n        \"userName\": \"bradley.boman@global-infonet.com\",\n        \"idnumber\": \"0005\",\n        \"rank\": \"\",\n        \"firstName\": \"Bradley\",\n        \"middleName\": \"\",\n        \"lastName\": \"Bronson\",\n        \"email\": \"bradley.boman@global-infonet.com\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"\",\n        \"gender\": \"Male\",\n        \"race\": \"Other\",\n        \"height\": \"\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"\",\n        \"workAssignment2\": \"\",\n        \"workHours\": \"\",\n        \"division\": \"\",\n        \"unit\": \"\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"\",\n        \"zone\": \"\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Bronson, Bradley\",\n        \"leftaUserFullName\": \"Bronson, Bradley (0005)\",\n        \"metrUserFullNameddl\": \"Bronson, Bradley (0005)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Bronson, Bradley (0005)  \",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 4349,\n        \"userName\": \"mpaul@leftasystems.org\",\n        \"idnumber\": \"1020\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Mark\",\n        \"middleName\": \"\",\n        \"lastName\": \"Paul\",\n        \"email\": \"mpaul@leftasystems.org\",\n        \"streetAddress\": \"123 Main Street\",\n        \"city\": \"Jacksonville\",\n        \"state\": \"FL\",\n        \"zip\": \"32223-____\",\n        \"phone\": \"234-123-4532 x_____\",\n        \"altPhone\": \"234-123-4533 x_____\",\n        \"birthDate\": \"07/11/1990\",\n        \"gender\": \"Male\",\n        \"race\": \"Hispanic/Latino\",\n        \"height\": \"5' 4\\\" - 5' 7\\\"\",\n        \"employmentDate\": \"07/17/2000\",\n        \"workAssignment1\": \"Narcotics\",\n        \"workAssignment2\": \"School Resource Officer\",\n        \"workHours\": \"\",\n        \"division\": \"Investigations\",\n        \"unit\": \"Patrol West\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"07/11/2000\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"Trainee\",\n        \"className\": \"Oct-2018\",\n        \"cit\": null,\n        \"watch\": \"\",\n        \"zone\": \"\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"09/03/2018\",\n        \"ftoProgramEndDate\": \"12/03/2018\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Paul, Mark\",\n        \"leftaUserFullName\": \"Paul, Mark (1020)\",\n        \"metrUserFullNameddl\": \"Paul, Mark (1020)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Paul, Mark (1020)  \",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 4364,\n        \"userName\": \"jacksmith@leftasystems.org\",\n        \"idnumber\": \"3005\",\n        \"rank\": \"\",\n        \"firstName\": \"Jack\",\n        \"middleName\": \"\",\n        \"lastName\": \"Smith\",\n        \"email\": \"jacksmith@leftasystems.org\",\n        \"streetAddress\": \"123 Main Street\",\n        \"city\": \"Jacksonville\",\n        \"state\": \"FL\",\n        \"zip\": \"32256-____\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"08/15/1990\",\n        \"gender\": \"Male\",\n        \"race\": \"Black\",\n        \"height\": \"5' 4\\\" - 5' 7\\\"\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"Community Relations\",\n        \"workAssignment2\": \"Community Relations\",\n        \"workHours\": \"\",\n        \"division\": \"Patrol Division\",\n        \"unit\": \"Patrol East\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"Trainee\",\n        \"className\": \"Oct-2018\",\n        \"cit\": null,\n        \"watch\": \"\",\n        \"zone\": \"\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"09/11/2018\",\n        \"ftoProgramEndDate\": \"12/11/2018\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Smith, Jack\",\n        \"leftaUserFullName\": \"Smith, Jack (3005)\",\n        \"metrUserFullNameddl\": \"Smith, Jack (3005)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Smith, Jack (3005)  \",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 4925,\n        \"userName\": \"jacko'brian@leftasystems.org\",\n        \"idnumber\": \"3000\",\n        \"rank\": \"\",\n        \"firstName\": \"Jack\",\n        \"middleName\": \"\",\n        \"lastName\": \"O'Brian\",\n        \"email\": \"jacko'brian@leftasystems.org\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"FL\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"\",\n        \"gender\": \"\",\n        \"race\": \"\",\n        \"height\": \" < 5'\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"Community Relations\",\n        \"workAssignment2\": \"Community Relations\",\n        \"workHours\": \"\",\n        \"division\": \"Patrol Division\",\n        \"unit\": \"Patrol East\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"Oct-2018\",\n        \"cit\": null,\n        \"watch\": \"\",\n        \"zone\": \"\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"09/26/2018\",\n        \"probationaryPeriodEndDate\": \"09/25/2019\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": false,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"O'Brian, Jack\",\n        \"leftaUserFullName\": \"O'Brian, Jack (3000)\",\n        \"metrUserFullNameddl\": \"O'Brian, Jack (3000)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"O'Brian, Jack (3000)  \",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 31294,\n        \"userName\": \"testbiuser@leftasystems.org\",\n        \"idnumber\": \"2068\",\n        \"rank\": \"\",\n        \"firstName\": \"Ryan\",\n        \"middleName\": \"\",\n        \"lastName\": \"Alexis\",\n        \"email\": \"testbiuser@leftasystems.org\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"\",\n        \"gender\": \"\",\n        \"race\": \"\",\n        \"height\": \"\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"\",\n        \"workAssignment2\": \"\",\n        \"workHours\": \"\",\n        \"division\": \"\",\n        \"unit\": \"\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"\",\n        \"zone\": \"\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Alexis, Ryan\",\n        \"leftaUserFullName\": \"Alexis, Ryan (2068)\",\n        \"metrUserFullNameddl\": \"Alexis, Ryan (2068)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Alexis, Ryan (2068)  \",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 31307,\n        \"userName\": \"kdavis@anytowm.us\",\n        \"idnumber\": \"090\",\n        \"rank\": \"Patrol\",\n        \"firstName\": \"Kevin\",\n        \"middleName\": \"Allen\",\n        \"lastName\": \"Davis\",\n        \"email\": \"kdavis@anytowm.us\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"phone\": \"734-355-4968 x_____\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"07/14/1990\",\n        \"gender\": \"Male\",\n        \"race\": \"White\",\n        \"height\": \"5' 8\\\"- 5' 11\\\"\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"\",\n        \"workAssignment2\": \"\",\n        \"workHours\": \"\",\n        \"division\": \"\",\n        \"unit\": \"\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Invited\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"\",\n        \"zone\": \"\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"090\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"Sworn\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Davis, Kevin\",\n        \"leftaUserFullName\": \"Davis, Kevin (090)\",\n        \"metrUserFullNameddl\": \"Davis, Kevin (090)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Davis, Kevin (090)  \",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 50125,\n        \"userName\": \"BSDemo_WalterTaylor914@gmail.com\",\n        \"idnumber\": \"0123\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Walter\",\n        \"middleName\": \"\",\n        \"lastName\": \"Taylor\",\n        \"email\": \"WalterTaylor914@gmail.com\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"\",\n        \"gender\": \"Male\",\n        \"race\": \"White\",\n        \"height\": \"5' 8\\\"- 5' 11\\\"\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"\",\n        \"workAssignment2\": \"\",\n        \"workHours\": \"\",\n        \"division\": \"\",\n        \"unit\": \"\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"Shield/User/7933/profile-ee16167d-adcf-40d5-be05-e7f6ea76d507.jpg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"Graduated\",\n        \"className\": \"Test Class\",\n        \"cit\": null,\n        \"watch\": \"\",\n        \"zone\": \"\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Taylor, Walter\",\n        \"leftaUserFullName\": \"Taylor, Walter (0123)\",\n        \"metrUserFullNameddl\": \"Taylor, Walter (0123)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Taylor, Walter (0123)  \",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 50127,\n        \"userName\": \"BSDemo_9174@itsupport.leftasystems.org\",\n        \"idnumber\": \"2000\",\n        \"rank\": \"\",\n        \"firstName\": \"Bryan\",\n        \"middleName\": \"\",\n        \"lastName\": \"Selzer\",\n        \"email\": \"9174@itsupport.leftasystems.org\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"\",\n        \"gender\": \"\",\n        \"race\": \"\",\n        \"height\": \"\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"\",\n        \"workAssignment2\": \"\",\n        \"workHours\": \"\",\n        \"division\": \"\",\n        \"unit\": \"\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"\",\n        \"zone\": \"\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": false,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Selzer, Bryan\",\n        \"leftaUserFullName\": \"Selzer, Bryan (2000)\",\n        \"metrUserFullNameddl\": \"Selzer, Bryan (2000)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Selzer, Bryan (2000)  \",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 50128,\n        \"userName\": \"BSDemo_dennisbaldwin242@gmail.com\",\n        \"idnumber\": \"0124\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Dennis\",\n        \"middleName\": \"L.\",\n        \"lastName\": \"Baldwin\",\n        \"email\": \"dennisbaldwin242@gmail.com\",\n        \"streetAddress\": \"10950-60 San Jose Blvd., Suite 101\",\n        \"city\": \"Jacksonville\",\n        \"state\": \"FL\",\n        \"zip\": \"32223\",\n        \"phone\": \"9045591705\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"07/18/1985\",\n        \"gender\": \"Male\",\n        \"race\": \"White\",\n        \"height\": \"5' 4\\\" - 5' 7\\\"\",\n        \"employmentDate\": \"10/01/2011\",\n        \"workAssignment1\": \"East District\",\n        \"workAssignment2\": \"\",\n        \"workHours\": \"\",\n        \"division\": \"Patrol Division\",\n        \"unit\": \"\",\n        \"ssn\": \"\",\n        \"dln\": \"qa3A9HMXj9Zk4mC6RA+xyQ==\",\n        \"dlnexpirationDate\": \"07/04/2025\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"Shield/User/7975/profile-c724a495-dbb9-4d6e-8ba5-e54dc9628306.jpg\",\n        \"chainOfCommand\": \"mattjarvis@leftasystems.org\",\n        \"lawEnforcementStartDate\": \"07/08/1999\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": true,\n        \"watch\": \"Day Shift\",\n        \"zone\": \"Day Shift\",\n        \"certificationDate\": \"07/04/2018\",\n        \"reCertificationDate\": \"07/04/2020\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": false,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": true,\n        \"militaryBranch\": \"Navy\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": \"2019-11-02T00:00:00\",\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Baldwin, Dennis\",\n        \"leftaUserFullName\": \"Baldwin, Dennis (0124)\",\n        \"metrUserFullNameddl\": \"Baldwin, Dennis (0124)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Baldwin, Dennis (0124)  - Day Shift  - Day Shift\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 50129,\n        \"userName\": \"BSDemo_LibbiePowell914@gmail.com\",\n        \"idnumber\": \"0125\",\n        \"rank\": \"Lieutenant\",\n        \"firstName\": \"Libbie\",\n        \"middleName\": \"M.\",\n        \"lastName\": \"Powell\",\n        \"email\": \"LibbiePowell914@gmail.com\",\n        \"streetAddress\": \"410 Courtney Drive\",\n        \"city\": \"Model City\",\n        \"state\": \"FL\",\n        \"zip\": \"32222-____\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"12/21/1990\",\n        \"gender\": \"Female\",\n        \"race\": \"Black\",\n        \"height\": \"5' 8\\\"- 5' 11\\\"\",\n        \"employmentDate\": \"04/21/2001\",\n        \"workAssignment1\": \"East District\",\n        \"workAssignment2\": \"N/A\",\n        \"workHours\": \"N/A\",\n        \"division\": \"Patrol Division\",\n        \"unit\": \"Crisis Negotiations\",\n        \"ssn\": \"\",\n        \"dln\": \"i1rEaxf8WLo1GYifybfibw==\",\n        \"dlnexpirationDate\": \"04/20/2025\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"Shield/User/7976/profile-54b02b9c-1bb5-4bf4-85aa-0710a8eb1377.JPG\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"04/21/2001\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"Trainee\",\n        \"className\": \"Test Class\",\n        \"cit\": null,\n        \"watch\": \"Day Shift\",\n        \"zone\": \"Day Shift\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"Divorced\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Powell, Libbie\",\n        \"leftaUserFullName\": \"Powell, Libbie (0125)\",\n        \"metrUserFullNameddl\": \"Powell, Libbie (0125)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Powell, Libbie (0125)  - Day Shift  - Day Shift\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 50130,\n        \"userName\": \"BSDemo_DuaneSwanson914@gmail.com\",\n        \"idnumber\": \"0128\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Duane\",\n        \"middleName\": \"\",\n        \"lastName\": \"Swanson\",\n        \"email\": \"DuaneSwanson914@gmail.com\",\n        \"streetAddress\": \"1013 Bert Avenue\",\n        \"city\": \"Anytown\",\n        \"state\": \"FL\",\n        \"zip\": \"32238-____\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"09/22/1989\",\n        \"gender\": \"Male\",\n        \"race\": \"Hispanic/Latino\",\n        \"height\": \"6' or more\",\n        \"employmentDate\": \"11/19/2009\",\n        \"workAssignment1\": \"\",\n        \"workAssignment2\": \"N/A\",\n        \"workHours\": \"N/A\",\n        \"division\": \"Patrol Division\",\n        \"unit\": \"SWAT\",\n        \"ssn\": \"\",\n        \"dln\": \"mcH1STseHNmv8qYT3PKrTw==\",\n        \"dlnexpirationDate\": \"10/29/2025\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"Shield/User/7977/profile-e328c489-196b-4026-8172-ddceb2e4192c.jpg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"11/18/2009\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"Graduated\",\n        \"className\": \"Test Class\",\n        \"cit\": true,\n        \"watch\": \"Day\",\n        \"zone\": \"Uniform Patrol\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"12/31/2018\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"11/01/2018\",\n        \"ftoProgramEndDate\": \"07/31/2019\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"Widowed\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Swanson, Duane\",\n        \"leftaUserFullName\": \"Swanson, Duane (0128)\",\n        \"metrUserFullNameddl\": \"Swanson, Duane (0128)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Swanson, Duane (0128)  - Day  - Uniform Patrol\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 50131,\n        \"userName\": \"BSDemo_KennyLeonard914@gmail.com\",\n        \"idnumber\": \"0127\",\n        \"rank\": \"Sergeant\",\n        \"firstName\": \"Kenny\",\n        \"middleName\": \"G.\",\n        \"lastName\": \"Leonard\",\n        \"email\": \"KennyLeonard914@gmail.com\",\n        \"streetAddress\": \"210 West Simon Avenue\",\n        \"city\": \"Model City\",\n        \"state\": \"FL\",\n        \"zip\": \"32222-____\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"03/03/1990\",\n        \"gender\": \"Male\",\n        \"race\": \"Other\",\n        \"height\": \"5' 8\\\"- 5' 11\\\"\",\n        \"employmentDate\": \"10/05/2007\",\n        \"workAssignment1\": \"East District\",\n        \"workAssignment2\": \"N/A\",\n        \"workHours\": \"N/A\",\n        \"division\": \"Patrol Division\",\n        \"unit\": \"School Resource Officer\",\n        \"ssn\": \"\",\n        \"dln\": \"C0ksRJUQj5ffPt57fG/uIQ==\",\n        \"dlnexpirationDate\": \"01/10/2025\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"Shield/User/7978/profile-4316a5cd-5793-43e4-ba6c-bf53fa109138.jpg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"08/15/2004\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"Day Shift\",\n        \"zone\": \"Day Shift\",\n        \"certificationDate\": \"06/01/2018\",\n        \"reCertificationDate\": \"06/01/2025\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": false,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"Single\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Leonard, Kenny\",\n        \"leftaUserFullName\": \"Leonard, Kenny (0127)\",\n        \"metrUserFullNameddl\": \"Leonard, Kenny (0127)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Leonard, Kenny (0127)  - Day Shift  - Day Shift\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 50132,\n        \"userName\": \"BSDemo_KimberlyGarza914@gmail.com\",\n        \"idnumber\": \"0130\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Kimberly\",\n        \"middleName\": \"L.\",\n        \"lastName\": \"Garza\",\n        \"email\": \"KimberlyGarza914@gmail.com\",\n        \"streetAddress\": \"2932 Wall Street\",\n        \"city\": \"Model City\",\n        \"state\": \"FL\",\n        \"zip\": \"32222-____\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"12/16/1995\",\n        \"gender\": \"Female\",\n        \"race\": \"Hispanic/Latino\",\n        \"height\": \"5' 4\\\" - 5' 7\\\"\",\n        \"employmentDate\": \"01/16/2006\",\n        \"workAssignment1\": \"East District\",\n        \"workAssignment2\": \"N/A\",\n        \"workHours\": \"N/A\",\n        \"division\": \"Patrol Division\",\n        \"unit\": \"Traffic\",\n        \"ssn\": \"\",\n        \"dln\": \"/6NW+t8/E50PPt3NUJfgPg==\",\n        \"dlnexpirationDate\": \"05/16/2025\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"Shield/User/7979/profile-6c8c4a8c-178f-47bd-8a1a-f4349424c337.jpg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"01/16/2006\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": true,\n        \"watch\": \"Night Shift\",\n        \"zone\": \"Night Shift\",\n        \"certificationDate\": \"03/05/2020\",\n        \"reCertificationDate\": \"10/01/2023\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": false,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": true,\n        \"militaryBranch\": \"Army National Guard\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": \"2019-11-02T00:00:00\",\n        \"maritalStatus\": \"Married\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Garza, Kimberly\",\n        \"leftaUserFullName\": \"Garza, Kimberly (0130)\",\n        \"metrUserFullNameddl\": \"Garza, Kimberly (0130)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Garza, Kimberly (0130)  - Night Shift  - Night Shift\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 50133,\n        \"userName\": \"BSDemo_allisonbrazda@gmail.com\",\n        \"idnumber\": \"0132\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Allison\",\n        \"middleName\": \"R.\",\n        \"lastName\": \"Brazda\",\n        \"email\": \"allisonbrazda@gmail.com\",\n        \"streetAddress\": \"10640 San Jose Blvd\",\n        \"city\": \"Jacksonville\",\n        \"state\": \"AL\",\n        \"zip\": \"32269-____\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"12/01/1996\",\n        \"gender\": \"Female\",\n        \"race\": \"Asian\",\n        \"height\": \"5' 4\\\" - 5' 7\\\"\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"West District\",\n        \"workAssignment2\": \"N/A\",\n        \"workHours\": \"N/A\",\n        \"division\": \"Patrol Division\",\n        \"unit\": \"Traffic\",\n        \"ssn\": \"\",\n        \"dln\": \"iIFazh9rdzZmnx8UcO5vwQ==\",\n        \"dlnexpirationDate\": \"12/01/2025\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"Shield/User/7980/profile-2c4f9ee9-70ab-4aec-be0f-7758b95802dd.jpg\",\n        \"chainOfCommand\": \"Mattjarvis@leftasystems.org\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"Graduated\",\n        \"className\": \"Test Class\",\n        \"cit\": null,\n        \"watch\": \"Midnights\",\n        \"zone\": \"Road Patrol\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"Single\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Brazda, Allison\",\n        \"leftaUserFullName\": \"Brazda, Allison (0132)\",\n        \"metrUserFullNameddl\": \"Brazda, Allison (0132)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Brazda, Allison (0132)  - Midnights  - Road Patrol\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 50134,\n        \"userName\": \"BSDemo_CoryGeorge914@gmail.com\",\n        \"idnumber\": \"0126\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Cory\",\n        \"middleName\": \"R.\",\n        \"lastName\": \"George\",\n        \"email\": \"CoryGeorge914@gmail.com\",\n        \"streetAddress\": \"8954 Sullivan Circle\",\n        \"city\": \"Model City\",\n        \"state\": \"FL\",\n        \"zip\": \"32222-____\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"06/16/1993\",\n        \"gender\": \"Male\",\n        \"race\": \"White\",\n        \"height\": \"6' or more\",\n        \"employmentDate\": \"05/05/2009\",\n        \"workAssignment1\": \"\",\n        \"workAssignment2\": \"N/A\",\n        \"workHours\": \"N/A\",\n        \"division\": \"Patrol Division\",\n        \"unit\": \"School Resource Officer\",\n        \"ssn\": \"\",\n        \"dln\": \"3n1URwBZjPcxNjK3kqdltg==\",\n        \"dlnexpirationDate\": \"05/15/2025\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"Shield/User/7981/profile-3d328b98-a586-4120-80d1-d5bb06e8e7ed.jpeg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"05/05/2009\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"Graduated\",\n        \"className\": \"Test Class\",\n        \"cit\": true,\n        \"watch\": \"\",\n        \"zone\": \"\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"11/01/2018\",\n        \"ftoProgramEndDate\": \"01/31/2019\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"George, Cory\",\n        \"leftaUserFullName\": \"George, Cory (0126)\",\n        \"metrUserFullNameddl\": \"George, Cory (0126)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"George, Cory (0126)  \",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 50135,\n        \"userName\": \"BSDemo_Percy.Shields@agency.com\",\n        \"idnumber\": \"0135\",\n        \"rank\": \"Patrol Officers\",\n        \"firstName\": \"Percy\",\n        \"middleName\": \"\",\n        \"lastName\": \"Shields\",\n        \"email\": \"Percy.Shields@agency.com\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"05/15/1990\",\n        \"gender\": \"Male\",\n        \"race\": \"Black\",\n        \"height\": \"6' or more\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"\",\n        \"workAssignment2\": \"\",\n        \"workHours\": \"\",\n        \"division\": \"Patrol Division\",\n        \"unit\": \"\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"Shield/User/8947/profile-6ad123b3-8008-4c34-9458-46cd99257f3c.jpg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Invited\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"Night Shift\",\n        \"zone\": \"Night Shift\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": false,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Shields, Percy\",\n        \"leftaUserFullName\": \"Shields, Percy (0135)\",\n        \"metrUserFullNameddl\": \"Shields, Percy (0135)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Shields, Percy (0135)  - Night Shift  - Night Shift\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 50138,\n        \"userName\": \"BSDemo_bricerussell914@gmail.com\",\n        \"idnumber\": \"0129\",\n        \"rank\": \"Officer\",\n        \"firstName\": \"Brice\",\n        \"middleName\": \"\",\n        \"lastName\": \"Russell\",\n        \"email\": \"bricerussell914@gmail.com\",\n        \"streetAddress\": \"411 East 22nd Avenue\",\n        \"city\": \"Model City\",\n        \"state\": \"FL\",\n        \"zip\": \"32222-____\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"06/16/1979\",\n        \"gender\": \"Male\",\n        \"race\": \"Asian\",\n        \"height\": \"5' 8\\\"- 5' 11\\\"\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"\",\n        \"workAssignment2\": \"\",\n        \"workHours\": \"\",\n        \"division\": \"\",\n        \"unit\": \"\",\n        \"ssn\": \"\",\n        \"dln\": \"ysmEh95i7Ma8HwEt0p8gAA==\",\n        \"dlnexpirationDate\": \"12/23/2025\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"Shield/User/10200/profile-08107817-6d2f-4a16-a2af-89809bdb0fb5.jpg\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"Graduated\",\n        \"className\": \"Test Class\",\n        \"cit\": null,\n        \"watch\": \"Midnights\",\n        \"zone\": \"Road Patrol\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"12/02/2018\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Russell, Brice\",\n        \"leftaUserFullName\": \"Russell, Brice (0129)\",\n        \"metrUserFullNameddl\": \"Russell, Brice (0129)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Russell, Brice (0129)  - Midnights  - Road Patrol\",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 50171,\n        \"userName\": \"BSDemo_3420@itsupport.leftasystems.org\",\n        \"idnumber\": \"2000\",\n        \"rank\": \"\",\n        \"firstName\": \"Test\",\n        \"middleName\": \"\",\n        \"lastName\": \"User\",\n        \"email\": \"3420@itsupport.leftasystems.org\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"\",\n        \"gender\": \"\",\n        \"race\": \"\",\n        \"height\": \"\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"\",\n        \"workAssignment2\": \"\",\n        \"workHours\": \"\",\n        \"division\": \"\",\n        \"unit\": \"\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"\",\n        \"zone\": \"\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"User, Test\",\n        \"leftaUserFullName\": \"User, Test (2000)\",\n        \"metrUserFullNameddl\": \"User, Test (2000)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"User, Test (2000)  \",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 65184,\n        \"userName\": \"John.Doe@agency.org\",\n        \"idnumber\": \"1000\",\n        \"rank\": \"\",\n        \"firstName\": \"John\",\n        \"middleName\": \"\",\n        \"lastName\": \"Doe\",\n        \"email\": \"John.Doe@agency.org\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"\",\n        \"gender\": \"\",\n        \"race\": \"\",\n        \"height\": \"\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"\",\n        \"workAssignment2\": \"\",\n        \"workHours\": \"\",\n        \"division\": \"\",\n        \"unit\": \"\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Created\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"\",\n        \"zone\": \"\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": false,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Doe, John\",\n        \"leftaUserFullName\": \"Doe, John (1000)\",\n        \"metrUserFullNameddl\": \"Doe, John (1000)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Doe, John (1000)  \",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 69708,\n        \"userName\": \"carolinesudhoff@leftasystems.org\",\n        \"idnumber\": \"3000\",\n        \"rank\": \"\",\n        \"firstName\": \"Caroline\",\n        \"middleName\": \"\",\n        \"lastName\": \"Sudhoff\",\n        \"email\": \"carolinesudhoff@leftasystems.org\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"\",\n        \"gender\": \"\",\n        \"race\": \"\",\n        \"height\": \"\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"\",\n        \"workAssignment2\": \"\",\n        \"workHours\": \"\",\n        \"division\": \"\",\n        \"unit\": \"\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"\",\n        \"zone\": \"\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": false,\n        \"analyticsViewOnly\": false,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": false,\n        \"deleted\": false,\n        \"userFullName\": \"Sudhoff, Caroline\",\n        \"leftaUserFullName\": \"Sudhoff, Caroline (3000)\",\n        \"metrUserFullNameddl\": \"Sudhoff, Caroline (3000)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Sudhoff, Caroline (3000)  \",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    },\n    {\n        \"userId\": 91653,\n        \"userName\": \"drewpamplin@leftasystems.org\",\n        \"idnumber\": \"3000\",\n        \"rank\": \"\",\n        \"firstName\": \"Drew\",\n        \"middleName\": \"\",\n        \"lastName\": \"Pamplin\",\n        \"email\": \"drewpamplin@leftasystems.org\",\n        \"streetAddress\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"phone\": \"\",\n        \"altPhone\": \"\",\n        \"birthDate\": \"\",\n        \"gender\": \"\",\n        \"race\": \"\",\n        \"height\": \"\",\n        \"employmentDate\": \"\",\n        \"workAssignment1\": \"\",\n        \"workAssignment2\": \"\",\n        \"workHours\": \"\",\n        \"division\": \"\",\n        \"unit\": \"\",\n        \"ssn\": \"\",\n        \"dln\": \"\",\n        \"dlnexpirationDate\": \"\",\n        \"languageSkills\": \"\",\n        \"specialSkills\": \"\",\n        \"photoUrl\": \"\",\n        \"chainOfCommand\": \"\",\n        \"lawEnforcementStartDate\": \"\",\n        \"noRejectionEmail\": false,\n        \"status\": \"Complete\",\n        \"roleString\": \"\",\n        \"fieldStatus\": \"\",\n        \"className\": \"\",\n        \"cit\": null,\n        \"watch\": \"\",\n        \"zone\": \"\",\n        \"certificationDate\": \"\",\n        \"reCertificationDate\": \"\",\n        \"adLogin\": \"\",\n        \"endofTrainingDate\": \"\",\n        \"purgeStatus\": \"\",\n        \"dateofTraining\": \"\",\n        \"ftoProgramEndDate\": \"\",\n        \"probationaryPeriodStartDate\": \"\",\n        \"probationaryPeriodEndDate\": \"\",\n        \"supervisorEmail\": \"\",\n        \"comments\": \"\",\n        \"agencyId\": 1,\n        \"allAreas\": true,\n        \"postId\": \"\",\n        \"stateId\": \"\",\n        \"militaryService\": null,\n        \"militaryBranch\": \"\",\n        \"militaryServiceStartDate\": null,\n        \"militaryServiceEndDate\": null,\n        \"maritalStatus\": \"\",\n        \"jobClass\": \"\",\n        \"uniqueIdentifier\": \"\",\n        \"analyticsAdministrator\": true,\n        \"analyticsViewOnly\": true,\n        \"superAdmin\": false,\n        \"employeeSnapshot\": true,\n        \"deleted\": false,\n        \"userFullName\": \"Pamplin, Drew\",\n        \"leftaUserFullName\": \"Pamplin, Drew (3000)\",\n        \"metrUserFullNameddl\": \"Pamplin, Drew (3000)\",\n        \"leftaUserFullNameWithShiftAndZone\": \"Pamplin, Drew (3000)  \",\n        \"userAreas\": \"\",\n        \"include\": false,\n        \"dlnState\": \"\",\n        \"allSegments\": false,\n        \"weight\": \"\",\n        \"userDefinedFieldValues\": {}\n    }\n]"}],"_postman_id":"8e043fb6-d83c-4b42-bdad-9870ea0d2d6f"},{"name":"Get User","id":"b3fbe441-1ad9-40c4-b5bc-5a81cb5dc392","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/user/3","description":"<p>Get a detailed record of an application user based of the supplied Id.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","user","3"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"e2c99750-c4aa-4828-8151-f05afbe7380b","name":"Success","originalRequest":{"method":"GET","header":[],"url":"{{BaseUri}}/api/user/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcdXNlclwz?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 25 Mar 2022 12:26:35 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": 3,\n    \"userName\": \"jsmith@leftasystems.org\",\n    \"idnumber\": \"3475\",\n    \"rank\": \"Officer\",\n    \"firstName\": \"John\",\n    \"middleName\": \"Frank\",\n    \"lastName\": \"Smith\",\n    \"email\": \"\",\n    \"streetAddress\": \"123 Main Street\",\n    \"city\": \"Jacksonville\",\n    \"state\": \"FL\",\n    \"zip\": \"32223-____\",\n    \"phone\": \"234-123-4532 x_____\",\n    \"altPhone\": \"890-234-2131 x12342\",\n    \"birthDate\": \"01/01/1968\",\n    \"gender\": \"Male\",\n    \"race\": \"White\",\n    \"height\": \"6'2\",\n    \"employmentDate\": \"07/06/2015\",\n    \"workAssignment1\": \"Narcotics\",\n    \"workAssignment2\": \"Community Relations\",\n    \"workHours\": \"0800-1800\",\n    \"division\": \"Patrol\",\n    \"unit\": \"Alpha\",\n    \"ssn\": \"213-41-2341\",\n    \"dln\": \"GA 987-A786\",\n    \"dlnexpirationDate\": \"07/24/2019\",\n    \"languageSkills\": \"Spanish, French\",\n    \"specialSkills\": \"DUI Instructor\",\n    \"photoUrl\": \"Shield/User/3/profile-3c6a5e0e-c7e4-490c-97e9-4118c7bfe2e4.jpg\",\n    \"chainOfCommand\": \"johnjsmith@leftasystems.org\",\n    \"lawEnforcementStartDate\": \"07/01/1990\",\n    \"noRejectionEmail\": false,\n    \"status\": \"Complete\",\n    \"roleString\": \"\",\n    \"fieldStatus\": \"\",\n    \"className\": \"\",\n    \"cit\": true,\n    \"watch\": \"Day Watch\",\n    \"zone\": \"2\",\n    \"certificationDate\": \"12/16/2015\",\n    \"reCertificationDate\": \"11/05/2018\",\n    \"adLogin\": \"\",\n    \"endofTrainingDate\": \"\",\n    \"purgeStatus\": \"\",\n    \"dateofTraining\": \"\",\n    \"ftoProgramEndDate\": \"\",\n    \"probationaryPeriodStartDate\": \"\",\n    \"probationaryPeriodEndDate\": \"\",\n    \"supervisorEmail\": \"\",\n    \"comments\": \"\",\n    \"agencyId\": 1,\n    \"allAreas\": true,\n    \"postId\": \"\",\n    \"stateId\": \"\",\n    \"militaryService\": null,\n    \"militaryBranch\": \"\",\n    \"militaryServiceStartDate\": null,\n    \"militaryServiceEndDate\": null,\n    \"maritalStatus\": \"\",\n    \"jobClass\": \"\",\n    \"uniqueIdentifier\": \"\",\n    \"analyticsAdministrator\": false,\n    \"analyticsViewOnly\": false,\n    \"superAdmin\": false,\n    \"employeeSnapshot\": false,\n    \"deleted\": false,\n    \"userFullName\": \"Smith, John\",\n    \"leftaUserFullName\": \"Smith, John (3475)\",\n    \"metrUserFullNameddl\": \"Smith, John (3475)\",\n    \"leftaUserFullNameWithShiftAndZone\": \"Smith, John (3475)  - Day Watch  - 2\",\n    \"userAreas\": \"\",\n    \"include\": false,\n    \"dlnState\": \"\",\n    \"allSegments\": false,\n    \"weight\": \"\",\n    \"userDefinedFieldValues\": null\n}"},{"id":"9680f8cd-1686-41f6-8c06-d8320c339860","name":"User Not Found","originalRequest":{"method":"GET","header":[],"url":"{{BaseUri}}/api/user/1"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcdXNlclwx?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 25 Mar 2022 12:30:54 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"User not found for the supplied id!\"\n}"}],"_postman_id":"b3fbe441-1ad9-40c4-b5bc-5a81cb5dc392"},{"name":"Update User","id":"bbfeedae-3a66-480a-9c6d-e121c3709c84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"userId\": 3,\r\n    \"userName\": \"hsarria@leftasystems.org\",\r\n    \"idnumber\": \"3475\",\r\n    \"rank\": \"Officer\",\r\n    \"firstName\": \"Henry\",\r\n    \"middleName\": \"Frankish\",\r\n    \"lastName\": \"Sarria\",\r\n    \"email\": \"\",\r\n    \"streetAddress\": \"123 Main Street\",\r\n    \"city\": \"Jacksonville\",\r\n    \"state\": \"FL\",\r\n    \"zip\": \"32223-____\",\r\n    \"phone\": \"234-123-4532 x_____\",\r\n    \"altPhone\": \"890-234-2131 x12342\",\r\n    \"birthDate\": \"01/01/1968\",\r\n    \"gender\": \"Male\",\r\n    \"race\": \"White\",\r\n    \"height\": \"6'2\",\r\n    \"employmentDate\": \"07/06/2015\",\r\n    \"workAssignment1\": \"Narcotics\",\r\n    \"workAssignment2\": \"Community Relations\",\r\n    \"workHours\": \"0800-1800\",\r\n    \"division\": \"Patrol\",\r\n    \"unit\": \"Alpha\",\r\n    \"ssn\": \"213-41-2341\",\r\n    \"dln\": \"GA 987-A786\",\r\n    \"dlnexpirationDate\": \"07/24/2019\",\r\n    \"languageSkills\": \"Spanish, French\",\r\n    \"specialSkills\": \"DUI Instructor\",\r\n    \"photoUrl\": \"Shield/User/3/profile-3c6a5e0e-c7e4-490c-97e9-4118c7bfe2e4.jpg\",\r\n    \"chainOfCommand\": \"bryanselzer@leftasystems.org\",\r\n    \"lawEnforcementStartDate\": \"07/01/1990\",\r\n    \"noRejectionEmail\": false,\r\n    \"status\": \"Complete\",\r\n    \"roleString\": \"\",\r\n    \"fieldStatus\": \"\",\r\n    \"className\": \"\",\r\n    \"cit\": true,\r\n    \"watch\": \"Day Watch\",\r\n    \"zone\": \"2\",\r\n    \"certificationDate\": \"12/16/2015\",\r\n    \"reCertificationDate\": \"11/05/2018\",\r\n    \"adLogin\": \"\",\r\n    \"endofTrainingDate\": \"\",\r\n    \"purgeStatus\": \"\",\r\n    \"dateofTraining\": \"\",\r\n    \"ftoProgramEndDate\": \"\",\r\n    \"probationaryPeriodStartDate\": \"\",\r\n    \"probationaryPeriodEndDate\": \"\",\r\n    \"supervisorEmail\": \"\",\r\n    \"comments\": \"\",\r\n    \"agencyId\": 1,\r\n    \"allAreas\": true,\r\n    \"postId\": \"\",\r\n    \"stateId\": \"\",\r\n    \"militaryService\": null,\r\n    \"militaryBranch\": \"\",\r\n    \"militaryServiceStartDate\": null,\r\n    \"militaryServiceEndDate\": null,\r\n    \"maritalStatus\": \"\",\r\n    \"jobClass\": \"\",\r\n    \"uniqueIdentifier\": \"\",\r\n    \"analyticsAdministrator\": false,\r\n    \"analyticsViewOnly\": false,\r\n    \"superAdmin\": false,\r\n    \"employeeSnapshot\": false,\r\n    \"deleted\": false,\r\n    \"userFullName\": \"Sarria, Henry\",\r\n    \"leftaUserFullName\": \"Sarria, Henry (3475)\",\r\n    \"metrUserFullNameddl\": \"Sarria, Henry (3475)\",\r\n    \"leftaUserFullNameWithShiftAndZone\": \"Sarria, Henry (3475)  - Day Watch  - 2\",\r\n    \"userAreas\": \"\",\r\n    \"include\": false,\r\n    \"dlnState\": \"\",\r\n    \"allSegments\": false,\r\n    \"weight\": \"\",\r\n    \"userDefinedFieldValues\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/user/","description":"<p>Update an application user.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","user",""],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"13e6316a-2552-4b87-b678-f7d654dc7821","name":"Success","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"userId\": 3,\r\n    \"userName\": \"jsmith@leftasystems.org\",\r\n    \"idnumber\": \"3475\",\r\n    \"rank\": \"Officer\",\r\n    \"firstName\": \"John\",\r\n    \"middleName\": \"Frankish\",\r\n    \"lastName\": \"Smith\",\r\n    \"email\": \"\",\r\n    \"streetAddress\": \"123 Main Street\",\r\n    \"city\": \"Jacksonville\",\r\n    \"state\": \"FL\",\r\n    \"zip\": \"32223-____\",\r\n    \"phone\": \"234-123-4532 x_____\",\r\n    \"altPhone\": \"890-234-2131 x12342\",\r\n    \"birthDate\": \"01/01/1968\",\r\n    \"gender\": \"Male\",\r\n    \"race\": \"White\",\r\n    \"height\": \"6'2\",\r\n    \"employmentDate\": \"07/06/2015\",\r\n    \"workAssignment1\": \"Narcotics\",\r\n    \"workAssignment2\": \"Community Relations\",\r\n    \"workHours\": \"0800-1800\",\r\n    \"division\": \"Patrol\",\r\n    \"unit\": \"Alpha\",\r\n    \"ssn\": \"213-41-2341\",\r\n    \"dln\": \"GA 987-A786\",\r\n    \"dlnexpirationDate\": \"07/24/2019\",\r\n    \"languageSkills\": \"Spanish, French\",\r\n    \"specialSkills\": \"DUI Instructor\",\r\n    \"photoUrl\": \"Shield/User/3/profile-3c6a5e0e-c7e4-490c-97e9-4118c7bfe2e4.jpg\",\r\n    \"chainOfCommand\": \"JohnJSmith@leftasystems.org\",\r\n    \"lawEnforcementStartDate\": \"07/01/1990\",\r\n    \"noRejectionEmail\": false,\r\n    \"status\": \"Complete\",\r\n    \"roleString\": \"\",\r\n    \"fieldStatus\": \"\",\r\n    \"className\": \"\",\r\n    \"cit\": true,\r\n    \"watch\": \"Day Watch\",\r\n    \"zone\": \"2\",\r\n    \"certificationDate\": \"12/16/2015\",\r\n    \"reCertificationDate\": \"11/05/2018\",\r\n    \"adLogin\": \"\",\r\n    \"endofTrainingDate\": \"\",\r\n    \"purgeStatus\": \"\",\r\n    \"dateofTraining\": \"\",\r\n    \"ftoProgramEndDate\": \"\",\r\n    \"probationaryPeriodStartDate\": \"\",\r\n    \"probationaryPeriodEndDate\": \"\",\r\n    \"supervisorEmail\": \"\",\r\n    \"comments\": \"\",\r\n    \"agencyId\": 1,\r\n    \"allAreas\": true,\r\n    \"postId\": \"\",\r\n    \"stateId\": \"\",\r\n    \"militaryService\": null,\r\n    \"militaryBranch\": \"\",\r\n    \"militaryServiceStartDate\": null,\r\n    \"militaryServiceEndDate\": null,\r\n    \"maritalStatus\": \"\",\r\n    \"jobClass\": \"\",\r\n    \"uniqueIdentifier\": \"\",\r\n    \"analyticsAdministrator\": false,\r\n    \"analyticsViewOnly\": false,\r\n    \"superAdmin\": false,\r\n    \"employeeSnapshot\": false,\r\n    \"deleted\": false,\r\n    \"userFullName\": \"Smith, John\",\r\n    \"leftaUserFullName\": \"Smith, John (3475)\",\r\n    \"metrUserFullNameddl\": \"Smith, John (3475)\",\r\n    \"leftaUserFullNameWithShiftAndZone\": \"Smith, John (3475)  - Day Watch  - 2\",\r\n    \"userAreas\": \"\",\r\n    \"include\": false,\r\n    \"dlnState\": \"\",\r\n    \"allSegments\": false,\r\n    \"weight\": \"\",\r\n    \"userDefinedFieldValues\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/user/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcdXNlclw=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 25 Mar 2022 12:38:04 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"userId\": 3,\n    \"userName\": \"jsmith@leftasystems.org\",\n    \"idnumber\": \"3475\",\n    \"rank\": \"Officer\",\n    \"firstName\": \"John\",\n    \"middleName\": \"Frankish\",\n    \"lastName\": \"Smith\",\n    \"email\": \"\",\n    \"streetAddress\": \"123 Main Street\",\n    \"city\": \"Jacksonville\",\n    \"state\": \"FL\",\n    \"zip\": \"32223-____\",\n    \"phone\": \"234-123-4532 x_____\",\n    \"altPhone\": \"890-234-2131 x12342\",\n    \"birthDate\": \"01/01/1968\",\n    \"gender\": \"Male\",\n    \"race\": \"White\",\n    \"height\": \"6'2\",\n    \"employmentDate\": \"07/06/2015\",\n    \"workAssignment1\": \"Narcotics\",\n    \"workAssignment2\": \"Community Relations\",\n    \"workHours\": \"0800-1800\",\n    \"division\": \"Patrol\",\n    \"unit\": \"Alpha\",\n    \"ssn\": \"213-41-2341\",\n    \"dln\": \"GA 987-A786\",\n    \"dlnexpirationDate\": \"07/24/2019\",\n    \"languageSkills\": \"Spanish, French\",\n    \"specialSkills\": \"DUI Instructor\",\n    \"photoUrl\": \"Shield/User/3/profile-3c6a5e0e-c7e4-490c-97e9-4118c7bfe2e4.jpg\",\n    \"chainOfCommand\": \"JohnJSmith@leftasystems.org\",\n    \"lawEnforcementStartDate\": \"07/01/1990\",\n    \"noRejectionEmail\": false,\n    \"status\": \"Complete\",\n    \"roleString\": \"\",\n    \"fieldStatus\": \"\",\n    \"className\": \"\",\n    \"cit\": true,\n    \"watch\": \"Day Watch\",\n    \"zone\": \"2\",\n    \"certificationDate\": \"12/16/2015\",\n    \"reCertificationDate\": \"11/05/2018\",\n    \"adLogin\": \"\",\n    \"endofTrainingDate\": \"\",\n    \"purgeStatus\": \"\",\n    \"dateofTraining\": \"\",\n    \"ftoProgramEndDate\": \"\",\n    \"probationaryPeriodStartDate\": \"\",\n    \"probationaryPeriodEndDate\": \"\",\n    \"supervisorEmail\": \"\",\n    \"comments\": \"\",\n    \"agencyId\": 1,\n    \"allAreas\": true,\n    \"postId\": \"\",\n    \"stateId\": \"\",\n    \"militaryService\": null,\n    \"militaryBranch\": \"\",\n    \"militaryServiceStartDate\": null,\n    \"militaryServiceEndDate\": null,\n    \"maritalStatus\": \"\",\n    \"jobClass\": \"\",\n    \"uniqueIdentifier\": \"\",\n    \"analyticsAdministrator\": false,\n    \"analyticsViewOnly\": false,\n    \"superAdmin\": false,\n    \"employeeSnapshot\": false,\n    \"deleted\": false,\n    \"userFullName\": \"Smith, John\",\n    \"leftaUserFullName\": \"Smith, John (3475)\",\n    \"metrUserFullNameddl\": \"Smith, John (3475)\",\n    \"leftaUserFullNameWithShiftAndZone\": \"Smith, John (3475)  - Day Watch  - 2\",\n    \"userAreas\": \"\",\n    \"include\": false,\n    \"dlnState\": \"\",\n    \"allSegments\": false,\n    \"weight\": \"\",\n    \"userDefinedFieldValues\": null\n}"},{"id":"f2dc07b4-1ba4-42d4-a4fc-be3be5d857d2","name":"User Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"userId\": 3,\r\n    \"userName\": \"jsmith@leftasystems.org\",\r\n    \"idnumber\": \"3475\",\r\n    \"rank\": \"Officer\",\r\n    \"firstName\": \"John\",\r\n    \"middleName\": \"Frankish\",\r\n    \"lastName\": \"Smith\",\r\n    \"email\": \"\",\r\n    \"streetAddress\": \"123 Main Street\",\r\n    \"city\": \"Jacksonville\",\r\n    \"state\": \"FL\",\r\n    \"zip\": \"32223-____\",\r\n    \"phone\": \"234-123-4532 x_____\",\r\n    \"altPhone\": \"890-234-2131 x12342\",\r\n    \"birthDate\": \"01/01/1968\",\r\n    \"gender\": \"Male\",\r\n    \"race\": \"White\",\r\n    \"height\": \"6'2\",\r\n    \"employmentDate\": \"07/06/2015\",\r\n    \"workAssignment1\": \"Narcotics\",\r\n    \"workAssignment2\": \"Community Relations\",\r\n    \"workHours\": \"0800-1800\",\r\n    \"division\": \"Patrol\",\r\n    \"unit\": \"Alpha\",\r\n    \"ssn\": \"213-41-2341\",\r\n    \"dln\": \"GA 987-A786\",\r\n    \"dlnexpirationDate\": \"07/24/2019\",\r\n    \"languageSkills\": \"Spanish, French\",\r\n    \"specialSkills\": \"DUI Instructor\",\r\n    \"photoUrl\": \"Shield/User/3/profile-3c6a5e0e-c7e4-490c-97e9-4118c7bfe2e4.jpg\",\r\n    \"chainOfCommand\": \"JohnJSmith@leftasystems.org\",\r\n    \"lawEnforcementStartDate\": \"07/01/1990\",\r\n    \"noRejectionEmail\": false,\r\n    \"status\": \"Complete\",\r\n    \"roleString\": \"\",\r\n    \"fieldStatus\": \"\",\r\n    \"className\": \"\",\r\n    \"cit\": true,\r\n    \"watch\": \"Day Watch\",\r\n    \"zone\": \"2\",\r\n    \"certificationDate\": \"12/16/2015\",\r\n    \"reCertificationDate\": \"11/05/2018\",\r\n    \"adLogin\": \"\",\r\n    \"endofTrainingDate\": \"\",\r\n    \"purgeStatus\": \"\",\r\n    \"dateofTraining\": \"\",\r\n    \"ftoProgramEndDate\": \"\",\r\n    \"probationaryPeriodStartDate\": \"\",\r\n    \"probationaryPeriodEndDate\": \"\",\r\n    \"supervisorEmail\": \"\",\r\n    \"comments\": \"\",\r\n    \"agencyId\": 1,\r\n    \"allAreas\": true,\r\n    \"postId\": \"\",\r\n    \"stateId\": \"\",\r\n    \"militaryService\": null,\r\n    \"militaryBranch\": \"\",\r\n    \"militaryServiceStartDate\": null,\r\n    \"militaryServiceEndDate\": null,\r\n    \"maritalStatus\": \"\",\r\n    \"jobClass\": \"\",\r\n    \"uniqueIdentifier\": \"\",\r\n    \"analyticsAdministrator\": false,\r\n    \"analyticsViewOnly\": false,\r\n    \"superAdmin\": false,\r\n    \"employeeSnapshot\": false,\r\n    \"deleted\": false,\r\n    \"userFullName\": \"Smith, John\",\r\n    \"leftaUserFullName\": \"Smith, John (3475)\",\r\n    \"metrUserFullNameddl\": \"Smith, John (3475)\",\r\n    \"leftaUserFullNameWithShiftAndZone\": \"Smith, John (3475)  - Day Watch  - 2\",\r\n    \"userAreas\": \"\",\r\n    \"include\": false,\r\n    \"dlnState\": \"\",\r\n    \"allSegments\": false,\r\n    \"weight\": \"\",\r\n    \"userDefinedFieldValues\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/user/"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcdXNlclw=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 25 Mar 2022 12:42:08 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"A User does not exist for the supplied Id!\"\n}"}],"_postman_id":"bbfeedae-3a66-480a-9c6d-e121c3709c84"}],"id":"381d1823-ec78-4794-be54-b0e5cb25319b","description":"<p>Through the LEFTA Systems Users API, you can interact with SHIELD’s application users to perform common user functions.</p>\n","_postman_id":"381d1823-ec78-4794-be54-b0e5cb25319b","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}}},{"name":"VDOC : Vehicle Damage","item":[{"name":"Get a List of Vehicle Damage Incidents","id":"0a636ed9-94f2-4aea-ac9e-4ff02d016978","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/vdoc?start_date=10-20-2012&end_date=03-15-2022","description":"<p>Get a list of vehicle damage incidents based of the supplied filter criteria. None of the child entities will be populated on search results.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","vdoc"],"host":["{{BaseUri}}"],"query":[{"description":{"content":"<p>Filter results by incidentDate to include only records after this date</p>\n","type":"text/plain"},"key":"start_date","value":"10-20-2012"},{"description":{"content":"<p>Filter results by incidentDate to include only records before this date.</p>\n","type":"text/plain"},"key":"end_date","value":"03-15-2022"}],"variable":[]}},"response":[{"id":"af81b4e4-035b-47a6-b572-7977996e3f7a","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/vdoc?start_date=10-20-2005&end_date=03-15-2022","host":["{{BaseUri}}"],"path":["api","vdoc"],"query":[{"key":"start_date","value":"10-20-2005","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2022","description":"Filter results to include only records before this date."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 14:52:48 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"incidentId\": 1,\n        \"creator\": \"Smith, Matt\",\n        \"reviewer\": \"\",\n        \"creatorId\": 7931,\n        \"status\": \"Completed\",\n        \"incidentCaseNumber\": \"12345.A18\",\n        \"relatedIncidentCase\": \"\",\n        \"incidentDate\": \"10/09/2019\",\n        \"incidentTime\": \"11:15:00\",\n        \"reportDate\": \"10/10/2019\",\n        \"reportTime\": \"11:44:00\",\n        \"incidentAddress\": \"42nd and Castelar\",\n        \"city\": \"Sunnyvale\",\n        \"state\": \"IA\",\n        \"area\": \"Zone 2\",\n        \"district\": \"East\",\n        \"sector\": \"Five Points\",\n        \"subsector\": \"Alpha\",\n        \"supervisorNotified\": \"Yes\",\n        \"supervisorName\": \"Sergeant McGovern\",\n        \"supervisorNotifiedTime\": \"11:25:00\",\n        \"supervisorArrivedTime\": \"00:00:00\",\n        \"insuranceAdjusterNotified\": \"No\",\n        \"insuranceAdjusterName\": \"\",\n        \"insuranceAdjusterNotifiedTime\": null,\n        \"insuranceAdjusterArrivedTime\": null,\n        \"evidenceTechnicianNotified\": \"No\",\n        \"evidenceTechnicianName\": \"\",\n        \"evidenceTechnicianNotifiedTime\": null,\n        \"evidenceTechnicianArrivedTime\": null,\n        \"causeDriver\": \"Animal crossing\",\n        \"causeRoad\": \"Potholes\",\n        \"causeWeather\": \"Fog\",\n        \"trafficControlWeather\": \"N/A\",\n        \"vehicleDefect\": \"Tire blowout\",\n        \"roadSystemId\": \"Private Road\",\n        \"weather\": \"Cloudy|||Fog/Smoke/Smog\",\n        \"lightingCondition\": \"DayLight\",\n        \"roadsurfaceCondition\": \"Wet\",\n        \"roadSurfaceType\": \"Gravel or Rock\",\n        \"roadWayCharacter\": \"N/A\",\n        \"trafficCharacter\": \"No Traffic|||Light\",\n        \"siteLocationWeather\": \"N/A\",\n        \"shoulderType\": \"Raised Curb\",\n        \"subsequentEvent\": \"Failure to yield\",\n        \"vehicleMovement\": \"Turning Left\",\n        \"pointOfImpact\": \"\",\n        \"incidentDocumentAttached\": \"\",\n        \"trackingNumber\": \"2019 - 1\",\n        \"trackingId\": 1,\n        \"trackingYear\": 2019,\n        \"subReportNumber\": null,\n        \"reportType\": \"\",\n        \"routing\": \"Command Staff|||Review Board\",\n        \"deleteComments\": \"\",\n        \"involvedDriver\": true,\n        \"involvedVictim\": false,\n        \"involvedWitness\": false,\n        \"involvedProperty\": true,\n        \"involvedNarrative\": true,\n        \"nonEditable\": false,\n        \"sealed\": false,\n        \"involvedSupervisorReview\": null,\n        \"incidentType\": \"\",\n        \"primaryReferenceId\": null,\n        \"drivers\": [],\n        \"narratives\": [],\n        \"properties\": [],\n        \"witnesses\": [],\n        \"victims\": [],\n        \"reviews\": [],\n        \"reviewFormValues\": [],\n        \"modifiedDate\": \"2019-11-02T12:37:00.261446\",\n        \"createdDate\": \"2019-07-08T11:44:34.6918902\"\n    },\n    {\n        \"incidentId\": 2,\n        \"creator\": \"Smith, Matt\",\n        \"reviewer\": \"\",\n        \"creatorId\": 50133,\n        \"status\": \"Completed\",\n        \"incidentCaseNumber\": \"12161957.B18\",\n        \"relatedIncidentCase\": \"\",\n        \"incidentDate\": \"11/02/2019\",\n        \"incidentTime\": \"23:50:00\",\n        \"reportDate\": \"11/02/2019\",\n        \"reportTime\": \"00:35:00\",\n        \"incidentAddress\": \"1510 Wall Street\",\n        \"city\": \"Far Point\",\n        \"state\": \"NE\",\n        \"area\": \"Zone 4\",\n        \"district\": \"North\",\n        \"sector\": \"Harlem\",\n        \"subsector\": \"Delta\",\n        \"supervisorNotified\": \"Yes\",\n        \"supervisorName\": \"Sergeant John Smith\",\n        \"supervisorNotifiedTime\": \"23:55:00\",\n        \"supervisorArrivedTime\": \"00:10:00\",\n        \"insuranceAdjusterNotified\": \"No\",\n        \"insuranceAdjusterName\": \"\",\n        \"insuranceAdjusterNotifiedTime\": null,\n        \"insuranceAdjusterArrivedTime\": null,\n        \"evidenceTechnicianNotified\": \"No\",\n        \"evidenceTechnicianName\": \"\",\n        \"evidenceTechnicianNotifiedTime\": null,\n        \"evidenceTechnicianArrivedTime\": null,\n        \"causeDriver\": \"Distracted driving|||Failure to stop at stop sign\",\n        \"causeRoad\": \"Potholes\",\n        \"causeWeather\": \"High winds\",\n        \"trafficControlWeather\": \"N/A\",\n        \"vehicleDefect\": \"Brake Failure\",\n        \"roadSystemId\": \"Public Road\",\n        \"weather\": \"Sleet/Hail\",\n        \"lightingCondition\": \"Other Lighting\",\n        \"roadsurfaceCondition\": \"Ice covered\",\n        \"roadSurfaceType\": \"Gravel or Rock\",\n        \"roadWayCharacter\": \"N/A\",\n        \"trafficCharacter\": \"Heavy\",\n        \"siteLocationWeather\": \"N/A\",\n        \"shoulderType\": \"Taper\",\n        \"subsequentEvent\": \"Ran Stop Sign|||Following Too Closely\",\n        \"vehicleMovement\": \"Turning Left|||Going Straight\",\n        \"pointOfImpact\": \"\",\n        \"incidentDocumentAttached\": \"\",\n        \"trackingNumber\": \"2019 - 2\",\n        \"trackingId\": 2,\n        \"trackingYear\": 2019,\n        \"subReportNumber\": null,\n        \"reportType\": \"\",\n        \"routing\": \"PIO|||Review Board\",\n        \"deleteComments\": \"\",\n        \"involvedDriver\": true,\n        \"involvedVictim\": true,\n        \"involvedWitness\": false,\n        \"involvedProperty\": true,\n        \"involvedNarrative\": true,\n        \"nonEditable\": false,\n        \"sealed\": false,\n        \"involvedSupervisorReview\": null,\n        \"incidentType\": \"\",\n        \"primaryReferenceId\": null,\n        \"drivers\": [],\n        \"narratives\": [],\n        \"properties\": [],\n        \"witnesses\": [],\n        \"victims\": [],\n        \"reviews\": [],\n        \"reviewFormValues\": [],\n        \"modifiedDate\": \"2019-11-03T12:12:48.3487456\",\n        \"createdDate\": \"2019-11-02T13:23:18.5266605\"\n    }\n]"},{"id":"3b8beeb6-bc86-4680-881b-ebcfb8e146e4","name":"Invalid End Date","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/vdoc?start_date=10-20-2005&end_date=03-15-2025","host":["{{BaseUri}}"],"path":["api","vdoc"],"query":[{"key":"start_date","value":"10-20-2005","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2025","description":"Filter results to include only records before this date."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 18:58:47 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"End date cannot be greater than the current date!\"\n}"},{"id":"988f7ee5-bca1-4a87-9337-c86c57b8cd65","name":"Invalid Start Date","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/vdoc?start_date=10-20-2001&end_date=03-15-2022","host":["{{BaseUri}}"],"path":["api","vdoc"],"query":[{"key":"start_date","value":"10-20-2001","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2022","description":"Filter results to include only records before this date."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 18:59:58 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"Start date cannot be more than 20 years prior to the current date!\"\n}"}],"_postman_id":"0a636ed9-94f2-4aea-ac9e-4ff02d016978"},{"name":"Get Vehicle Damage Incident","id":"63efff3e-ee94-4e70-8705-69d9beb2a0c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/vdoc/:incidentId","description":"<p>Gets a specific Incident with relationships based of the supplied Id. An error will be thrown if the supplied Id does not match any existing records. It is recommended you get the Id from the search API method.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","vdoc",":incidentId"],"host":["{{BaseUri}}"],"query":[],"variable":[{"description":{"content":"<p>The record Id of the desired Incident.</p>\n","type":"text/plain"},"type":"any","value":"1056","key":"incidentId"}]}},"response":[{"id":"3864a7fb-7662-43f6-bde7-305cb2dd282d","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/vdoc/:incidentId","host":["{{BaseUri}}"],"path":["api","vdoc",":incidentId"],"variable":[{"key":"incidentId","value":"1056","description":"The record Id of the desired Incident."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvY1wxMDU2?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Apr 2022 15:17:32 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"incidentId\": 1056,\n    \"creator\": \"\",\n    \"reviewer\": \"\",\n    \"creatorId\": 95474,\n    \"status\": \"Completed\",\n    \"incidentCaseNumber\": \"TestCase-001\",\n    \"relatedIncidentCase\": \"\",\n    \"incidentDate\": \"03/07/2022\",\n    \"incidentTime\": \"12:12:00\",\n    \"reportDate\": \"03/29/2022\",\n    \"reportTime\": \"11:30:00\",\n    \"incidentAddress\": \"1234 Main Street\",\n    \"city\": \"Jacksonville\",\n    \"state\": \"FL\",\n    \"area\": \"Zone 1\",\n    \"district\": \"North\",\n    \"sector\": \"Alpha\",\n    \"subsector\": \"Alpha - 2\",\n    \"supervisorNotified\": \"Yes\",\n    \"supervisorName\": \"Matt Smith\",\n    \"supervisorNotifiedTime\": \"12:12:00\",\n    \"supervisorArrivedTime\": \"13:12:00\",\n    \"insuranceAdjusterNotified\": \"Yes\",\n    \"insuranceAdjusterName\": \"David Tennant\",\n    \"insuranceAdjusterNotifiedTime\": \"12:12:00\",\n    \"insuranceAdjusterArrivedTime\": \"13:12:00\",\n    \"evidenceTechnicianNotified\": \"Yes\",\n    \"evidenceTechnicianName\": \"Peter Capaldi\",\n    \"evidenceTechnicianNotifiedTime\": \"12:12:00\",\n    \"evidenceTechnicianArrivedTime\": \"13:12:00\",\n    \"causeDriver\": \"Animal crossing\",\n    \"causeRoad\": \"Obstructions\",\n    \"causeWeather\": \"Fog\",\n    \"trafficControlWeather\": \"\",\n    \"vehicleDefect\": \"Brake failure\",\n    \"roadSystemId\": \"Freeway\",\n    \"weather\": \"Clear Sky\",\n    \"lightingCondition\": \"Dawn\",\n    \"roadsurfaceCondition\": \"Dry\",\n    \"roadSurfaceType\": \"Concrete\",\n    \"roadWayCharacter\": \"\",\n    \"trafficCharacter\": \"Light\",\n    \"siteLocationWeather\": \"\",\n    \"shoulderType\": \"Raised curb\",\n    \"subsequentEvent\": \"Speeding\",\n    \"vehicleMovement\": \"Going straight\",\n    \"pointOfImpact\": \"\",\n    \"incidentDocumentAttached\": \"No\",\n    \"trackingNumber\": \"2022 - 15\",\n    \"trackingId\": 15,\n    \"trackingYear\": 2022,\n    \"subReportNumber\": null,\n    \"reportType\": \"\",\n    \"routing\": \"Vehicle Fleet Coordinator\",\n    \"deleteComments\": \"\",\n    \"involvedDriver\": true,\n    \"involvedVictim\": true,\n    \"involvedWitness\": true,\n    \"involvedProperty\": true,\n    \"involvedNarrative\": true,\n    \"nonEditable\": false,\n    \"sealed\": false,\n    \"involvedSupervisorReview\": true,\n    \"incidentType\": \"\",\n    \"primaryReferenceId\": null,\n    \"drivers\": [\n        {\n            \"driverId\": 1043,\n            \"incidentId\": 1056,\n            \"isOfficer\": \"Yes\",\n            \"officerId\": \"0123\",\n            \"officerPrimary\": \"Yes\",\n            \"officerFirstName\": \"Walter\",\n            \"officerLastName\": \"Taylor\",\n            \"officerMiddleName\": \"\",\n            \"officerAge\": \"32\",\n            \"officerOnDuty\": \"No\",\n            \"officerPermanentAssignment\": \"South Sector\",\n            \"officerInUniform\": \"Yes\",\n            \"officerRace\": \"White\",\n            \"officerGender\": \"Male\",\n            \"officerDriverLicense\": \"FL123456\",\n            \"officerDriverLicenseExpirationDate\": \"02/01/2022\",\n            \"officerDriverLicenseState\": \"WA\",\n            \"officerYearsWithAgency\": \"12\",\n            \"officerTotalYearsInLawEnforcement\": \"12\",\n            \"officerEducation\": \"\",\n            \"operatorFirstName\": \"\",\n            \"operatorLastName\": \"\",\n            \"operatorMiddleName\": \"\",\n            \"operatorAddress\": \"\",\n            \"operatorCity\": \"\",\n            \"operatorState\": \"\",\n            \"operatorRace\": \"\",\n            \"operatorGender\": \"\",\n            \"operatorEmail\": \"officer@police.com\",\n            \"operatorPhone1\": \"111-111-1111 x1111_\",\n            \"operatorPhone2\": \"\",\n            \"operatorDob\": \"\",\n            \"operatorDriverLicense\": \"\",\n            \"operatorDriverLicenseExpirationDate\": \"\",\n            \"operatorDriverLicenseState\": \"\",\n            \"officerInjured\": \"Yes\",\n            \"officerInjuryType\": \"Blunt Trauma\",\n            \"officerInjurySeverity\": \"Possible\",\n            \"officerHowInjuryOccurred\": \"\",\n            \"officerMedicalTreatmentReceived\": \"Yes\",\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\n            \"officerTransported\": \"Yes\",\n            \"officerTransportedBy\": \"A Human\",\n            \"officerTransportedTo\": \"The Hospital\",\n            \"officerTransportedTime\": \"12:12:00\",\n            \"officerInjuryPhotos\": \"No\",\n            \"officerInjuryPhotosTakenBy\": \"\",\n            \"unitNumber\": \"6\",\n            \"markedVehicle\": \"Yes\",\n            \"vehicleType\": \"Car\",\n            \"vehicleMake\": \"Toyota\",\n            \"vehicleModel\": \"Camry\",\n            \"vehicleYear\": \"2015\",\n            \"vehicleTag\": \"FD12345\",\n            \"vehicleState\": \"VA\",\n            \"vehicleDamaged\": \"Yes\",\n            \"vehicleDamageType\": \"Moderate damage\",\n            \"vehicleDamageAmount\": \"$1,000>\",\n            \"actualDamage\": \"\",\n            \"vehicleTowed\": \"Yes\",\n            \"towingCompany\": \"ABC Towing\",\n            \"vehicleInsurance\": \"\",\n            \"policy\": \"\",\n            \"optionalField\": \"\",\n            \"damageLocation\": \"Driver rear door\",\n            \"nonEditable\": false,\n            \"vehicleOwner\": \"The owner of the vehicle.\",\n            \"woreSeatbelt\": \"\",\n            \"driverArrested\": \"Yes\",\n            \"driverArrestCharge\": \"28-1911 Failure to yield\",\n            \"driverArrestedForFelony\": \"\",\n            \"parkedVehicle\": false,\n            \"bodyWornCamera\": \"\",\n            \"activated\": \"\",\n            \"primaryReferenceId\": null,\n            \"driverPointOfContact\": [\n                {\n                    \"pointOfContactId\": 16,\n                    \"driverId\": 1043,\n                    \"pointType\": \"Palm (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2631192\",\n                    \"createdDate\": \"2022-03-29T13:19:28.602462\"\n                },\n                {\n                    \"pointOfContactId\": 17,\n                    \"driverId\": 1043,\n                    \"pointType\": \"Palm (left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2631207\",\n                    \"createdDate\": \"2022-03-29T13:19:28.612772\"\n                },\n                {\n                    \"pointOfContactId\": 18,\n                    \"driverId\": 1043,\n                    \"pointType\": \"Upper Arm (back/left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-30T13:05:09.263122\",\n                    \"createdDate\": \"2022-03-29T13:19:28.6128598\"\n                }\n            ],\n            \"vehiclePointOfContact\": [\n                {\n                    \"pointOfContactId\": 1083,\n                    \"incidentId\": 1056,\n                    \"driverId\": 1043,\n                    \"pointType\": \"Back Bumper (Left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false\n                },\n                {\n                    \"pointOfContactId\": 1084,\n                    \"incidentId\": 1056,\n                    \"driverId\": 1043,\n                    \"pointType\": \"Front  Door (Driver)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false\n                }\n            ],\n            \"passenger\": [\n                {\n                    \"passengerId\": 9,\n                    \"driverId\": 1043,\n                    \"isOfficer\": \"No\",\n                    \"officerId\": \"\",\n                    \"passengerFirstName\": \"Sara\",\n                    \"passengerMiddleName\": \"Jane\",\n                    \"passengerLastName\": \"Smith\",\n                    \"passengerAddress\": \"1234 Main Street\",\n                    \"passengerCity\": \"Jacksonville\",\n                    \"passengerState\": \"FL\",\n                    \"passengerDob\": \"03/01/1980\",\n                    \"passengerRace\": \"American Indian\",\n                    \"passengerGender\": \"Female\",\n                    \"passengerEmail\": \"sara.smith@gmail.com\",\n                    \"passengerPhone1\": \"111-111-1111 x111__\",\n                    \"passengerPhone2\": \"\",\n                    \"passengerInjured\": \"Yes\",\n                    \"passengerInjuryType\": \"Blunt Trauma\",\n                    \"passengerInjurySeverity\": \"Non-Incapacitating\",\n                    \"passengerHowInjuryOccurred\": \"\",\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\n                    \"passengerMedicalTreatmentReceivedBy\": \"A Doctor\",\n                    \"passengerTransported\": \"Yes\",\n                    \"passengerTransportedBy\": \"EMS\",\n                    \"passengerTransportedTo\": \"A Hospital\",\n                    \"passengerTransportedTime\": \"12:12:00\",\n                    \"passengerInjuryPhotos\": \"\",\n                    \"passengerInjuryPhotosTakenBy\": \"\",\n                    \"nonEditable\": false,\n                    \"woreSeatbelt\": \"\",\n                    \"passengerArrested\": \"Yes\",\n                    \"passengerArrestCharge\": \"815.06 - Offenses against computer users.\",\n                    \"passengerArrestedForFelony\": \"\",\n                    \"primaryReferenceId\": null,\n                    \"pointsOfContact\": [\n                        {\n                            \"pointOfContactId\": 2,\n                            \"passengerId\": 9,\n                            \"pointType\": \"Upper Chest\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false\n                        },\n                        {\n                            \"pointOfContactId\": 3,\n                            \"passengerId\": 9,\n                            \"pointType\": \"Palm (left)\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false\n                        },\n                        {\n                            \"pointOfContactId\": 4,\n                            \"passengerId\": 9,\n                            \"pointType\": \"Face\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false\n                        }\n                    ],\n                    \"chargeClassifications\": [\n                        {\n                            \"chargeClassifcationId\": 1,\n                            \"passengerId\": 9,\n                            \"charge\": \"815.06 - Offenses against computer users.\",\n                            \"chargeClasification1\": true,\n                            \"chargeClasification2\": false,\n                            \"chargeClasification3\": false,\n                            \"chargeClasification4\": false,\n                            \"chargeClasification5\": false,\n                            \"chargeClasification6\": \"Other\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-03-30T13:05:09.2631801\",\n                            \"createdDate\": \"2022-03-30T13:01:33.2673875\"\n                        }\n                    ],\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2631509\",\n                    \"createdDate\": \"2022-03-29T14:23:42.2058283\"\n                }\n            ],\n            \"driverChargeClassification\": [\n                {\n                    \"chargeClassificationId\": 1,\n                    \"driverId\": 1043,\n                    \"charge\": \"28-1911 Failure to yield\",\n                    \"chargeClasification1\": true,\n                    \"chargeClasification2\": false,\n                    \"chargeClasification3\": false,\n                    \"chargeClasification4\": false,\n                    \"chargeClasification5\": false,\n                    \"chargeClasification6\": \"\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2632211\",\n                    \"createdDate\": \"2022-03-30T12:34:32.970071\"\n                }\n            ],\n            \"modifiedDate\": \"2022-03-30T13:05:09.2631115\",\n            \"createdDate\": \"2022-03-29T13:11:15.1364035\"\n        }\n    ],\n    \"narratives\": [\n        {\n            \"narrativeId\": 1047,\n            \"incidentId\": 1056,\n            \"narrative\": \"Something of interest happened today.\",\n            \"nonEditable\": false,\n            \"modifiedDate\": \"2022-03-30T13:05:09.2637645\",\n            \"createdDate\": \"2022-03-29T11:30:01.9190982\"\n        }\n    ],\n    \"properties\": [\n        {\n            \"propertyId\": 1018,\n            \"incidentId\": 1056,\n            \"propertyType\": \"Clothing\",\n            \"propertyStatus\": \"\",\n            \"estimatedDamage\": \"<$100\",\n            \"actualDamage\": \"\",\n            \"ownerFirstName\": \"John\",\n            \"ownerMiddleName\": \"Jason\",\n            \"ownerLastName\": \"Smith\",\n            \"ownerAddress\": \"1234 Main Street\",\n            \"ownerCity\": \"Jacksonville\",\n            \"ownerState\": \"FL\",\n            \"ownerEmail\": \"john.smith@gmail.com\",\n            \"ownerPhone1\": \"111-111-1111 x111__\",\n            \"ownerPhone2\": \"222-222-2222 x222__\",\n            \"ownerRace\": \"Black\",\n            \"ownerGender\": \"Male\",\n            \"ownerDateOfBirth\": \"03/01/1980\",\n            \"nonEditable\": false,\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-03-30T13:05:09.2632482\",\n            \"createdDate\": \"2022-03-29T14:17:17.0272193\"\n        }\n    ],\n    \"witnesses\": [\n        {\n            \"witnessId\": 25,\n            \"incidentId\": 1056,\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Jason\",\n            \"address\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"email\": \"john.smith@gmail.com\",\n            \"phone1\": \"111-111-1111 x1111_\",\n            \"phone2\": \"\",\n            \"race\": \"White\",\n            \"gender\": \"Male\",\n            \"dateOfBirth\": \"03/01/1980\",\n            \"nonEditable\": false,\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-03-30T13:05:09.2637431\",\n            \"createdDate\": \"2022-03-29T14:12:54.0486612\"\n        }\n    ],\n    \"victims\": [\n        {\n            \"victimId\": 17,\n            \"incidentId\": 1056,\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Jason\",\n            \"victimAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"victimEmail\": \"john.smith@gmail.com\",\n            \"victimPhone1\": \"111-111-1111 x1111_\",\n            \"victimPhone2\": \"\",\n            \"race\": \"White\",\n            \"gender\": \"Male\",\n            \"victimDateOfBirth\": \"03/01/1975\",\n            \"victimInjured\": \"Yes\",\n            \"victimInjuryType\": \"Broken Bone\",\n            \"victimInjurySeverity\": \"Non-Incapacitating\",\n            \"victimHowInjuryToVictimOccurred\": \"\",\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\n            \"victimTransported\": \"Yes\",\n            \"victimTransportedBy\": \"The Ambulance\",\n            \"victimTransportedTo\": \"The Hospital\",\n            \"victimTransportedTime\": \"12:12:00\",\n            \"victimInjuryPhotos\": \"No\",\n            \"victimInjuryPhotosTakenBy\": \"\",\n            \"nonEditable\": false,\n            \"victimArrested\": \"Yes\",\n            \"victimArrestCharge\": \"28-211 Reckless driving\",\n            \"victimArrestedForFelony\": \"\",\n            \"primaryReferenceId\": null,\n            \"pointsOfContacts\": [\n                {\n                    \"victimPointOfContactId\": 2,\n                    \"victimId\": 17,\n                    \"pointType\": \"Palm (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2632938\",\n                    \"createdDate\": \"2022-03-29T13:51:25.4716938\"\n                },\n                {\n                    \"victimPointOfContactId\": 3,\n                    \"victimId\": 17,\n                    \"pointType\": \"Stomach\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2632954\",\n                    \"createdDate\": \"2022-03-29T13:51:25.4847558\"\n                },\n                {\n                    \"victimPointOfContactId\": 4,\n                    \"victimId\": 17,\n                    \"pointType\": \"Glutes\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2632967\",\n                    \"createdDate\": \"2022-03-29T13:51:25.4848916\"\n                }\n            ],\n            \"chargeClassifications\": [\n                {\n                    \"victimChargeClassificationId\": 1,\n                    \"victimId\": 17,\n                    \"charge\": \"28-211 Reckless driving\",\n                    \"chargeClasification1\": false,\n                    \"chargeClasification2\": true,\n                    \"chargeClasification3\": false,\n                    \"chargeClasification4\": false,\n                    \"chargeClasification5\": false,\n                    \"chargeClasification6\": \"Example of Other\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2636702\",\n                    \"createdDate\": \"2022-03-30T13:04:58.1616813\"\n                }\n            ],\n            \"modifiedDate\": \"2022-03-30T13:05:09.2632875\",\n            \"createdDate\": \"2022-03-29T13:42:58.5931084\"\n        }\n    ],\n    \"reviews\": [\n        {\n            \"reviewId\": 85,\n            \"incientId\": 1056,\n            \"userId\": 95474,\n            \"action\": \"Approve\",\n            \"message\": \"\",\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T07:35:39.535699\",\n            \"reviewGroupId\": 0,\n            \"modifiedDate\": \"2022-04-01T07:35:39.535699\",\n            \"createdDate\": \"2022-04-01T07:35:39.5355644\"\n        },\n        {\n            \"reviewId\": 86,\n            \"incientId\": 1056,\n            \"userId\": 95474,\n            \"action\": \"Sent\",\n            \"message\": \"\",\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T07:35:39.5468175\",\n            \"reviewGroupId\": 0,\n            \"modifiedDate\": \"2022-04-01T07:35:39.5468175\",\n            \"createdDate\": \"2022-04-01T07:35:39.5468166\"\n        },\n        {\n            \"reviewId\": 87,\n            \"incientId\": 1056,\n            \"userId\": 95474,\n            \"action\": \"Approve\",\n            \"message\": \"\",\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T07:40:02.9902495\",\n            \"reviewGroupId\": 0,\n            \"modifiedDate\": \"2022-04-01T07:40:02.9902495\",\n            \"createdDate\": \"2022-04-01T07:40:02.9902491\"\n        },\n        {\n            \"reviewId\": 88,\n            \"incientId\": 1056,\n            \"userId\": 50171,\n            \"action\": \"Sent\",\n            \"message\": \"\",\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T07:40:02.9904082\",\n            \"reviewGroupId\": 0,\n            \"modifiedDate\": \"2022-04-01T07:40:02.9904082\",\n            \"createdDate\": \"2022-04-01T07:40:02.9904078\"\n        },\n        {\n            \"reviewId\": 89,\n            \"incientId\": 1056,\n            \"userId\": 95474,\n            \"action\": \"Recall\",\n            \"message\": \"\",\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T07:43:58.9458218\",\n            \"reviewGroupId\": 0,\n            \"modifiedDate\": \"2022-04-01T07:43:58.9458218\",\n            \"createdDate\": \"2022-04-01T07:43:58.945821\"\n        },\n        {\n            \"reviewId\": 90,\n            \"incientId\": 1056,\n            \"userId\": 50171,\n            \"action\": \"Sent\",\n            \"message\": \"\",\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T07:43:58.9458248\",\n            \"reviewGroupId\": 0,\n            \"modifiedDate\": \"2022-04-01T07:43:58.9458248\",\n            \"createdDate\": \"2022-04-01T07:43:58.9458244\"\n        },\n        {\n            \"reviewId\": 91,\n            \"incientId\": 1056,\n            \"userId\": 95474,\n            \"action\": \"Recall\",\n            \"message\": \"\",\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T07:44:45.5340271\",\n            \"reviewGroupId\": 0,\n            \"modifiedDate\": \"2022-04-01T07:44:45.5340271\",\n            \"createdDate\": \"2022-04-01T07:44:45.5340268\"\n        },\n        {\n            \"reviewId\": 92,\n            \"incientId\": 1056,\n            \"userId\": 95474,\n            \"action\": \"Sent\",\n            \"message\": \"\",\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T07:44:45.5340287\",\n            \"reviewGroupId\": 0,\n            \"modifiedDate\": \"2022-04-01T07:44:45.5340287\",\n            \"createdDate\": \"2022-04-01T07:44:45.5340285\"\n        },\n        {\n            \"reviewId\": 93,\n            \"incientId\": 1056,\n            \"userId\": 95474,\n            \"action\": \"Approve\",\n            \"message\": \"\",\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T07:46:36.7967668\",\n            \"reviewGroupId\": 0,\n            \"modifiedDate\": \"2022-04-01T07:46:36.7967668\",\n            \"createdDate\": \"2022-04-01T07:46:36.7966607\"\n        },\n        {\n            \"reviewId\": 94,\n            \"incientId\": 1056,\n            \"userId\": 95475,\n            \"action\": \"Sent\",\n            \"message\": \"\",\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T07:46:36.8317207\",\n            \"reviewGroupId\": 0,\n            \"modifiedDate\": \"2022-04-01T07:46:36.8317207\",\n            \"createdDate\": \"2022-04-01T07:46:36.8317198\"\n        },\n        {\n            \"reviewId\": 95,\n            \"incientId\": 1056,\n            \"userId\": 95475,\n            \"action\": \"Approve\",\n            \"message\": \"Report complete.  Approved\",\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T07:52:42.48309\",\n            \"reviewGroupId\": 0,\n            \"modifiedDate\": \"2022-04-01T07:52:42.48309\",\n            \"createdDate\": \"2022-04-01T07:52:42.4830898\"\n        }\n    ],\n    \"reviewFormValues\": [\n        {\n            \"reviewFormValueId\": 2,\n            \"title\": \"Title\",\n            \"type\": \"Type\",\n            \"value\": \"Value\",\n            \"ordinal\": 1,\n            \"indent\": 0,\n            \"helpSeg\": \"\",\n            \"formValue\": \"\",\n            \"inReportId\": 1056,\n            \"isChecked\": false,\n            \"modifiedDate\": \"2022-04-01T08:33:35.1370686\",\n            \"createdDate\": \"2022-04-01T08:33:35.1370686\"\n        }\n    ],\n    \"modifiedDate\": \"2022-03-30T13:05:09.2638016\",\n    \"createdDate\": \"2022-03-29T11:30:01.9153145\"\n}"},{"id":"d9619c3f-bf47-4cb1-97cc-425a5c0c7dde","name":"Incident Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/vdoc/:incidentId","host":["{{BaseUri}}"],"path":["api","vdoc",":incidentId"],"variable":[{"key":"incidentId","value":"-1","description":"The record Id of the desired Incident."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"Text","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcdmRvY1w1Mg==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 22 Feb 2022 18:09:08 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Instance not found for the supplied id!\"\n}"}],"_postman_id":"63efff3e-ee94-4e70-8705-69d9beb2a0c8"},{"name":"Create Vehicle Damage Incident","id":"e6711daf-0a88-45a8-a58e-06012712626a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 95474,\r\n    \"status\": \"Editing\",\r\n    \"incidentCaseNumber\": \"TestCase-004\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"03/07/2022\",\r\n    \"incidentTime\": \"12:12:00\",\r\n    \"reportDate\": \"03/29/2022\",\r\n    \"reportTime\": \"11:30:00\",\r\n    \"incidentAddress\": \"1234 Main Street\",\r\n    \"city\": \"Jacksonville\",\r\n    \"state\": \"FL\",\r\n    \"area\": \"Zone 1\",\r\n    \"district\": \"North\",\r\n    \"sector\": \"Alpha\",\r\n    \"subsector\": \"Alpha - 2\",\r\n    \"supervisorNotified\": \"Yes\",\r\n    \"supervisorName\": \"Matt Smith\",\r\n    \"supervisorNotifiedTime\": \"12:12:00\",\r\n    \"supervisorArrivedTime\": \"13:12:00\",\r\n    \"insuranceAdjusterNotified\": \"Yes\",\r\n    \"insuranceAdjusterName\": \"David Tennant\",\r\n    \"insuranceAdjusterNotifiedTime\": \"12:12:00\",\r\n    \"insuranceAdjusterArrivedTime\": \"13:12:00\",\r\n    \"evidenceTechnicianNotified\": \"Yes\",\r\n    \"evidenceTechnicianName\": \"Peter Capaldi\",\r\n    \"evidenceTechnicianNotifiedTime\": \"12:12:00\",\r\n    \"evidenceTechnicianArrivedTime\": \"13:12:00\",\r\n    \"causeDriver\": \"Animal crossing\",\r\n    \"causeRoad\": \"Obstructions\",\r\n    \"causeWeather\": \"Fog\",\r\n    \"trafficControlWeather\": \"\",\r\n    \"vehicleDefect\": \"Brake failure\",\r\n    \"roadSystemId\": \"Freeway\",\r\n    \"weather\": \"Clear Sky\",\r\n    \"lightingCondition\": \"Dawn\",\r\n    \"roadsurfaceCondition\": \"Dry\",\r\n    \"roadSurfaceType\": \"Concrete\",\r\n    \"roadWayCharacter\": \"\",\r\n    \"trafficCharacter\": \"Light\",\r\n    \"siteLocationWeather\": \"\",\r\n    \"shoulderType\": \"Raised curb\",\r\n    \"subsequentEvent\": \"Speeding\",\r\n    \"vehicleMovement\": \"Going straight\",\r\n    \"pointOfImpact\": \"\",\r\n    \"incidentDocumentAttached\": \"No\",\r\n    \"trackingNumber\": \"2022 - 15\",\r\n    \"trackingId\": 15,\r\n    \"trackingYear\": 2022,\r\n    \"subReportNumber\": null,\r\n    \"reportType\": \"\",\r\n    \"routing\": \"Vehicle Fleet Coordinator\",\r\n    \"deleteComments\": \"\",\r\n    \"involvedDriver\": true,\r\n    \"involvedVictim\": true,\r\n    \"involvedWitness\": true,\r\n    \"involvedProperty\": true,\r\n    \"involvedNarrative\": true,\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": true,\r\n    \"incidentType\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"drivers\": [\r\n        {\r\n            \"isOfficer\": \"Yes\",\r\n            \"officerId\": \"0123\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerFirstName\": \"Walter\",\r\n            \"officerLastName\": \"Taylor\",\r\n            \"officerMiddleName\": \"\",\r\n            \"officerAge\": \"32\",\r\n            \"officerOnDuty\": \"No\",\r\n            \"officerPermanentAssignment\": \"South Sector\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"officerRace\": \"White\",\r\n            \"officerGender\": \"Male\",\r\n            \"officerDriverLicense\": \"FL123456\",\r\n            \"officerDriverLicenseExpirationDate\": \"02/01/2022\",\r\n            \"officerDriverLicenseState\": \"WA\",\r\n            \"officerYearsWithAgency\": \"12\",\r\n            \"officerTotalYearsInLawEnforcement\": \"12\",\r\n            \"officerEducation\": \"\",\r\n            \"operatorFirstName\": \"\",\r\n            \"operatorLastName\": \"\",\r\n            \"operatorMiddleName\": \"\",\r\n            \"operatorAddress\": \"\",\r\n            \"operatorCity\": \"\",\r\n            \"operatorState\": \"\",\r\n            \"operatorRace\": \"\",\r\n            \"operatorGender\": \"\",\r\n            \"operatorEmail\": \"officer@police.com\",\r\n            \"operatorPhone1\": \"111-111-1111 x1111_\",\r\n            \"operatorPhone2\": \"\",\r\n            \"operatorDob\": \"\",\r\n            \"operatorDriverLicense\": \"\",\r\n            \"operatorDriverLicenseExpirationDate\": \"\",\r\n            \"operatorDriverLicenseState\": \"\",\r\n            \"officerInjured\": \"Yes\",\r\n            \"officerInjuryType\": \"Blunt Trauma\",\r\n            \"officerInjurySeverity\": \"Possible\",\r\n            \"officerHowInjuryOccurred\": \"\",\r\n            \"officerMedicalTreatmentReceived\": \"Yes\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\r\n            \"officerTransported\": \"Yes\",\r\n            \"officerTransportedBy\": \"A Human\",\r\n            \"officerTransportedTo\": \"The Hospital\",\r\n            \"officerTransportedTime\": \"12:12:00\",\r\n            \"officerInjuryPhotos\": \"No\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"unitNumber\": \"6\",\r\n            \"markedVehicle\": \"Yes\",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"Toyota\",\r\n            \"vehicleModel\": \"Camry\",\r\n            \"vehicleYear\": \"2015\",\r\n            \"vehicleTag\": \"FD12345\",\r\n            \"vehicleState\": \"VA\",\r\n            \"vehicleDamaged\": \"Yes\",\r\n            \"vehicleDamageType\": \"Moderate damage\",\r\n            \"vehicleDamageAmount\": \"$1,000>\",\r\n            \"actualDamage\": \"\",\r\n            \"vehicleTowed\": \"Yes\",\r\n            \"towingCompany\": \"ABC Towing\",\r\n            \"vehicleInsurance\": \"\",\r\n            \"policy\": \"\",\r\n            \"optionalField\": \"\",\r\n            \"damageLocation\": \"Driver rear door\",\r\n            \"nonEditable\": false,\r\n            \"vehicleOwner\": \"The owner of the vehicle.\",\r\n            \"woreSeatbelt\": \"\",\r\n            \"driverArrested\": \"Yes\",\r\n            \"driverArrestCharge\": \"28-1911 Failure to yield\",\r\n            \"driverArrestedForFelony\": \"\",\r\n            \"parkedVehicle\": false,\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"driverPointOfContact\": [\r\n                {\r\n                    \"pointType\": \"Palm (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2631192\",\r\n                    \"createdDate\": \"2022-03-29T13:19:28.602462\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Palm (left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2631207\",\r\n                    \"createdDate\": \"2022-03-29T13:19:28.612772\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Upper Arm (back/left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T13:05:09.263122\",\r\n                    \"createdDate\": \"2022-03-29T13:19:28.6128598\"\r\n                }\r\n            ],\r\n            \"vehiclePointOfContact\": [\r\n                {\r\n                    \"pointType\": \"Back Bumper (Left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false\r\n                },\r\n                {\r\n                    \"pointType\": \"Front  Door (Driver)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false\r\n                }\r\n            ],\r\n            \"passenger\": [\r\n                {\r\n                    \"isOfficer\": \"No\",\r\n                    \"officerId\": \"\",\r\n                    \"passengerFirstName\": \"Sara\",\r\n                    \"passengerMiddleName\": \"Jane\",\r\n                    \"passengerLastName\": \"Smith\",\r\n                    \"passengerAddress\": \"1234 Main Street\",\r\n                    \"passengerCity\": \"Jacksonville\",\r\n                    \"passengerState\": \"FL\",\r\n                    \"passengerDob\": \"03/01/1980\",\r\n                    \"passengerRace\": \"American Indian\",\r\n                    \"passengerGender\": \"Female\",\r\n                    \"passengerEmail\": \"sara.smith@gmail.com\",\r\n                    \"passengerPhone1\": \"111-111-1111 x111__\",\r\n                    \"passengerPhone2\": \"\",\r\n                    \"passengerInjured\": \"Yes\",\r\n                    \"passengerInjuryType\": \"Blunt Trauma\",\r\n                    \"passengerInjurySeverity\": \"Non-Incapacitating\",\r\n                    \"passengerHowInjuryOccurred\": \"\",\r\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\r\n                    \"passengerMedicalTreatmentReceivedBy\": \"A Doctor\",\r\n                    \"passengerTransported\": \"Yes\",\r\n                    \"passengerTransportedBy\": \"EMS\",\r\n                    \"passengerTransportedTo\": \"A Hospital\",\r\n                    \"passengerTransportedTime\": \"12:12:00\",\r\n                    \"passengerInjuryPhotos\": \"\",\r\n                    \"passengerInjuryPhotosTakenBy\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"woreSeatbelt\": \"\",\r\n                    \"passengerArrested\": \"Yes\",\r\n                    \"passengerArrestCharge\": \"815.06 - Offenses against computer users.\",\r\n                    \"passengerArrestedForFelony\": \"\",\r\n                    \"primaryReferenceId\": null,\r\n                    \"pointsOfContact\": [\r\n                        {\r\n                            \"pointType\": \"Upper Chest\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false\r\n                        },\r\n                        {\r\n                            \"pointType\": \"Palm (left)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false\r\n                        },\r\n                        {\r\n                            \"pointType\": \"Face\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false\r\n                        }\r\n                    ],\r\n                    \"chargeClassifications\": [\r\n                        {\r\n                            \"charge\": \"815.06 - Offenses against computer users.\",\r\n                            \"chargeClasification1\": true,\r\n                            \"chargeClasification2\": false,\r\n                            \"chargeClasification3\": false,\r\n                            \"chargeClasification4\": false,\r\n                            \"chargeClasification5\": false,\r\n                            \"chargeClasification6\": \"Other\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T13:05:09.2631801\",\r\n                            \"createdDate\": \"2022-03-30T13:01:33.2673875\"\r\n                        }\r\n                    ],\r\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2631509\",\r\n                    \"createdDate\": \"2022-03-29T14:23:42.2058283\"\r\n                }\r\n            ],\r\n            \"driverChargeClassification\": [\r\n                {\r\n                    \"charge\": \"28-1911 Failure to yield\",\r\n                    \"chargeClasification1\": true,\r\n                    \"chargeClasification2\": false,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2632211\",\r\n                    \"createdDate\": \"2022-03-30T12:34:32.970071\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-30T13:05:09.2631115\",\r\n            \"createdDate\": \"2022-03-29T13:11:15.1364035\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrative\": \"Something of interest happened today.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-03-30T13:05:09.2637645\",\r\n            \"createdDate\": \"2022-03-29T11:30:01.9190982\"\r\n        }\r\n    ],\r\n    \"properties\": [\r\n        {\r\n            \"propertyType\": \"Clothing\",\r\n            \"propertyStatus\": \"\",\r\n            \"estimatedDamage\": \"<$100\",\r\n            \"actualDamage\": \"\",\r\n            \"ownerFirstName\": \"John\",\r\n            \"ownerMiddleName\": \"Jason\",\r\n            \"ownerLastName\": \"Smith\",\r\n            \"ownerAddress\": \"1234 Main Street\",\r\n            \"ownerCity\": \"Jacksonville\",\r\n            \"ownerState\": \"FL\",\r\n            \"ownerEmail\": \"john.smith@gmail.com\",\r\n            \"ownerPhone1\": \"111-111-1111 x111__\",\r\n            \"ownerPhone2\": \"222-222-2222 x222__\",\r\n            \"ownerRace\": \"Black\",\r\n            \"ownerGender\": \"Male\",\r\n            \"ownerDateOfBirth\": \"03/01/1980\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-30T13:05:09.2632482\",\r\n            \"createdDate\": \"2022-03-29T14:17:17.0272193\"\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jason\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"email\": \"john.smith@gmail.com\",\r\n            \"phone1\": \"111-111-1111 x1111_\",\r\n            \"phone2\": \"\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-30T13:05:09.2637431\",\r\n            \"createdDate\": \"2022-03-29T14:12:54.0486612\"\r\n        }\r\n    ],\r\n    \"victims\": [\r\n        {\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jason\",\r\n            \"victimAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"victimEmail\": \"john.smith@gmail.com\",\r\n            \"victimPhone1\": \"111-111-1111 x1111_\",\r\n            \"victimPhone2\": \"\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"victimDateOfBirth\": \"03/01/1975\",\r\n            \"victimInjured\": \"Yes\",\r\n            \"victimInjuryType\": \"Broken Bone\",\r\n            \"victimInjurySeverity\": \"Non-Incapacitating\",\r\n            \"victimHowInjuryToVictimOccurred\": \"\",\r\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\r\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\r\n            \"victimTransported\": \"Yes\",\r\n            \"victimTransportedBy\": \"The Ambulance\",\r\n            \"victimTransportedTo\": \"The Hospital\",\r\n            \"victimTransportedTime\": \"12:12:00\",\r\n            \"victimInjuryPhotos\": \"No\",\r\n            \"victimInjuryPhotosTakenBy\": \"\",\r\n            \"nonEditable\": false,\r\n            \"victimArrested\": \"Yes\",\r\n            \"victimArrestCharge\": \"28-211 Reckless driving\",\r\n            \"victimArrestedForFelony\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"pointsOfContacts\": [\r\n                {\r\n                    \"pointType\": \"Palm (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2632938\",\r\n                    \"createdDate\": \"2022-03-29T13:51:25.4716938\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Stomach\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2632954\",\r\n                    \"createdDate\": \"2022-03-29T13:51:25.4847558\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Glutes\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2632967\",\r\n                    \"createdDate\": \"2022-03-29T13:51:25.4848916\"\r\n                }\r\n            ],\r\n            \"chargeClassifications\": [\r\n                {\r\n                    \"charge\": \"28-211 Reckless driving\",\r\n                    \"chargeClasification1\": false,\r\n                    \"chargeClasification2\": true,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"Example of Other\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2636702\",\r\n                    \"createdDate\": \"2022-03-30T13:04:58.1616813\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-30T13:05:09.2632875\",\r\n            \"createdDate\": \"2022-03-29T13:42:58.5931084\"\r\n        }\r\n    ],\r\n    \"reviews\": [\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:35:39.535699\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:35:39.535699\",\r\n            \"createdDate\": \"2022-04-01T07:35:39.5355644\"\r\n        },\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:35:39.5468175\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:35:39.5468175\",\r\n            \"createdDate\": \"2022-04-01T07:35:39.5468166\"\r\n        },\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:40:02.9902495\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:40:02.9902495\",\r\n            \"createdDate\": \"2022-04-01T07:40:02.9902491\"\r\n        },\r\n        {\r\n            \"userId\": 50171,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:40:02.9904082\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:40:02.9904082\",\r\n            \"createdDate\": \"2022-04-01T07:40:02.9904078\"\r\n        },\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Recall\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:43:58.9458218\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:43:58.9458218\",\r\n            \"createdDate\": \"2022-04-01T07:43:58.945821\"\r\n        },\r\n        {\r\n            \"userId\": 50171,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:43:58.9458248\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:43:58.9458248\",\r\n            \"createdDate\": \"2022-04-01T07:43:58.9458244\"\r\n        },\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Recall\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:44:45.5340271\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:44:45.5340271\",\r\n            \"createdDate\": \"2022-04-01T07:44:45.5340268\"\r\n        },\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:44:45.5340287\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:44:45.5340287\",\r\n            \"createdDate\": \"2022-04-01T07:44:45.5340285\"\r\n        },\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:46:36.7967668\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:46:36.7967668\",\r\n            \"createdDate\": \"2022-04-01T07:46:36.7966607\"\r\n        },\r\n        {\r\n            \"userId\": 95475,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:46:36.8317207\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:46:36.8317207\",\r\n            \"createdDate\": \"2022-04-01T07:46:36.8317198\"\r\n        },\r\n        {\r\n            \"userId\": 95475,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"Report complete.  Approved\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:52:42.48309\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:52:42.48309\",\r\n            \"createdDate\": \"2022-04-01T07:52:42.4830898\"\r\n        }\r\n    ],\r\n    \"reviewFormValues\": [\r\n        {\r\n            \"title\": \"Title\",\r\n            \"type\": \"Type\",\r\n            \"value\": \"Value\",\r\n            \"ordinal\": 1,\r\n            \"indent\": 0,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"inReportId\": 1056,\r\n            \"isChecked\": false,\r\n            \"modifiedDate\": \"2022-04-01T08:33:35.1370686\",\r\n            \"createdDate\": \"2022-04-01T08:33:35.1370686\"\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-03-30T13:05:09.2638016\",\r\n    \"createdDate\": \"2022-03-29T11:30:01.9153145\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/vdoc","description":"<p>Create a new incident of vehicle damage. An error will be thrown if the supplied Case Number already exists in the system. You must ensure that each case number is unique.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","vdoc"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"43b72155-f607-411c-8cca-0a4e66815cbb","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 95474,\r\n    \"status\": \"Editing\",\r\n    \"incidentCaseNumber\": \"TestCase-004\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"03/07/2022\",\r\n    \"incidentTime\": \"12:12:00\",\r\n    \"reportDate\": \"03/29/2022\",\r\n    \"reportTime\": \"11:30:00\",\r\n    \"incidentAddress\": \"1234 Main Street\",\r\n    \"city\": \"Jacksonville\",\r\n    \"state\": \"FL\",\r\n    \"area\": \"Zone 1\",\r\n    \"district\": \"North\",\r\n    \"sector\": \"Alpha\",\r\n    \"subsector\": \"Alpha - 2\",\r\n    \"supervisorNotified\": \"Yes\",\r\n    \"supervisorName\": \"Matt Smith\",\r\n    \"supervisorNotifiedTime\": \"12:12:00\",\r\n    \"supervisorArrivedTime\": \"13:12:00\",\r\n    \"insuranceAdjusterNotified\": \"Yes\",\r\n    \"insuranceAdjusterName\": \"David Tennant\",\r\n    \"insuranceAdjusterNotifiedTime\": \"12:12:00\",\r\n    \"insuranceAdjusterArrivedTime\": \"13:12:00\",\r\n    \"evidenceTechnicianNotified\": \"Yes\",\r\n    \"evidenceTechnicianName\": \"Peter Capaldi\",\r\n    \"evidenceTechnicianNotifiedTime\": \"12:12:00\",\r\n    \"evidenceTechnicianArrivedTime\": \"13:12:00\",\r\n    \"causeDriver\": \"Animal crossing\",\r\n    \"causeRoad\": \"Obstructions\",\r\n    \"causeWeather\": \"Fog\",\r\n    \"trafficControlWeather\": \"\",\r\n    \"vehicleDefect\": \"Brake failure\",\r\n    \"roadSystemId\": \"Freeway\",\r\n    \"weather\": \"Clear Sky\",\r\n    \"lightingCondition\": \"Dawn\",\r\n    \"roadsurfaceCondition\": \"Dry\",\r\n    \"roadSurfaceType\": \"Concrete\",\r\n    \"roadWayCharacter\": \"\",\r\n    \"trafficCharacter\": \"Light\",\r\n    \"siteLocationWeather\": \"\",\r\n    \"shoulderType\": \"Raised curb\",\r\n    \"subsequentEvent\": \"Speeding\",\r\n    \"vehicleMovement\": \"Going straight\",\r\n    \"pointOfImpact\": \"\",\r\n    \"incidentDocumentAttached\": \"No\",\r\n    \"trackingNumber\": \"2022 - 15\",\r\n    \"trackingId\": 15,\r\n    \"trackingYear\": 2022,\r\n    \"subReportNumber\": null,\r\n    \"reportType\": \"\",\r\n    \"routing\": \"Vehicle Fleet Coordinator\",\r\n    \"deleteComments\": \"\",\r\n    \"involvedDriver\": true,\r\n    \"involvedVictim\": true,\r\n    \"involvedWitness\": true,\r\n    \"involvedProperty\": true,\r\n    \"involvedNarrative\": true,\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": true,\r\n    \"incidentType\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"drivers\": [\r\n        {\r\n            \"isOfficer\": \"Yes\",\r\n            \"officerId\": \"0123\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerFirstName\": \"Walter\",\r\n            \"officerLastName\": \"Taylor\",\r\n            \"officerMiddleName\": \"\",\r\n            \"officerAge\": \"32\",\r\n            \"officerOnDuty\": \"No\",\r\n            \"officerPermanentAssignment\": \"South Sector\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"officerRace\": \"White\",\r\n            \"officerGender\": \"Male\",\r\n            \"officerDriverLicense\": \"FL123456\",\r\n            \"officerDriverLicenseExpirationDate\": \"02/01/2022\",\r\n            \"officerDriverLicenseState\": \"WA\",\r\n            \"officerYearsWithAgency\": \"12\",\r\n            \"officerTotalYearsInLawEnforcement\": \"12\",\r\n            \"officerEducation\": \"\",\r\n            \"operatorFirstName\": \"\",\r\n            \"operatorLastName\": \"\",\r\n            \"operatorMiddleName\": \"\",\r\n            \"operatorAddress\": \"\",\r\n            \"operatorCity\": \"\",\r\n            \"operatorState\": \"\",\r\n            \"operatorRace\": \"\",\r\n            \"operatorGender\": \"\",\r\n            \"operatorEmail\": \"officer@police.com\",\r\n            \"operatorPhone1\": \"111-111-1111 x1111_\",\r\n            \"operatorPhone2\": \"\",\r\n            \"operatorDob\": \"\",\r\n            \"operatorDriverLicense\": \"\",\r\n            \"operatorDriverLicenseExpirationDate\": \"\",\r\n            \"operatorDriverLicenseState\": \"\",\r\n            \"officerInjured\": \"Yes\",\r\n            \"officerInjuryType\": \"Blunt Trauma\",\r\n            \"officerInjurySeverity\": \"Possible\",\r\n            \"officerHowInjuryOccurred\": \"\",\r\n            \"officerMedicalTreatmentReceived\": \"Yes\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\r\n            \"officerTransported\": \"Yes\",\r\n            \"officerTransportedBy\": \"A Human\",\r\n            \"officerTransportedTo\": \"The Hospital\",\r\n            \"officerTransportedTime\": \"12:12:00\",\r\n            \"officerInjuryPhotos\": \"No\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"unitNumber\": \"6\",\r\n            \"markedVehicle\": \"Yes\",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"Toyota\",\r\n            \"vehicleModel\": \"Camry\",\r\n            \"vehicleYear\": \"2015\",\r\n            \"vehicleTag\": \"FD12345\",\r\n            \"vehicleState\": \"VA\",\r\n            \"vehicleDamaged\": \"Yes\",\r\n            \"vehicleDamageType\": \"Moderate damage\",\r\n            \"vehicleDamageAmount\": \"$1,000>\",\r\n            \"actualDamage\": \"\",\r\n            \"vehicleTowed\": \"Yes\",\r\n            \"towingCompany\": \"ABC Towing\",\r\n            \"vehicleInsurance\": \"\",\r\n            \"policy\": \"\",\r\n            \"optionalField\": \"\",\r\n            \"damageLocation\": \"Driver rear door\",\r\n            \"nonEditable\": false,\r\n            \"vehicleOwner\": \"The owner of the vehicle.\",\r\n            \"woreSeatbelt\": \"\",\r\n            \"driverArrested\": \"Yes\",\r\n            \"driverArrestCharge\": \"28-1911 Failure to yield\",\r\n            \"driverArrestedForFelony\": \"\",\r\n            \"parkedVehicle\": false,\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"driverPointOfContact\": [\r\n                {\r\n                    \"pointType\": \"Palm (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2631192\",\r\n                    \"createdDate\": \"2022-03-29T13:19:28.602462\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Palm (left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2631207\",\r\n                    \"createdDate\": \"2022-03-29T13:19:28.612772\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Upper Arm (back/left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T13:05:09.263122\",\r\n                    \"createdDate\": \"2022-03-29T13:19:28.6128598\"\r\n                }\r\n            ],\r\n            \"vehiclePointOfContact\": [\r\n                {\r\n                    \"pointType\": \"Back Bumper (Left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false\r\n                },\r\n                {\r\n                    \"pointType\": \"Front  Door (Driver)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false\r\n                }\r\n            ],\r\n            \"passenger\": [\r\n                {\r\n                    \"isOfficer\": \"No\",\r\n                    \"officerId\": \"\",\r\n                    \"passengerFirstName\": \"Sara\",\r\n                    \"passengerMiddleName\": \"Jane\",\r\n                    \"passengerLastName\": \"Smith\",\r\n                    \"passengerAddress\": \"1234 Main Street\",\r\n                    \"passengerCity\": \"Jacksonville\",\r\n                    \"passengerState\": \"FL\",\r\n                    \"passengerDob\": \"03/01/1980\",\r\n                    \"passengerRace\": \"American Indian\",\r\n                    \"passengerGender\": \"Female\",\r\n                    \"passengerEmail\": \"sara.smith@gmail.com\",\r\n                    \"passengerPhone1\": \"111-111-1111 x111__\",\r\n                    \"passengerPhone2\": \"\",\r\n                    \"passengerInjured\": \"Yes\",\r\n                    \"passengerInjuryType\": \"Blunt Trauma\",\r\n                    \"passengerInjurySeverity\": \"Non-Incapacitating\",\r\n                    \"passengerHowInjuryOccurred\": \"\",\r\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\r\n                    \"passengerMedicalTreatmentReceivedBy\": \"A Doctor\",\r\n                    \"passengerTransported\": \"Yes\",\r\n                    \"passengerTransportedBy\": \"EMS\",\r\n                    \"passengerTransportedTo\": \"A Hospital\",\r\n                    \"passengerTransportedTime\": \"12:12:00\",\r\n                    \"passengerInjuryPhotos\": \"\",\r\n                    \"passengerInjuryPhotosTakenBy\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"woreSeatbelt\": \"\",\r\n                    \"passengerArrested\": \"Yes\",\r\n                    \"passengerArrestCharge\": \"815.06 - Offenses against computer users.\",\r\n                    \"passengerArrestedForFelony\": \"\",\r\n                    \"primaryReferenceId\": null,\r\n                    \"pointsOfContact\": [\r\n                        {\r\n                            \"pointType\": \"Upper Chest\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false\r\n                        },\r\n                        {\r\n                            \"pointType\": \"Palm (left)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false\r\n                        },\r\n                        {\r\n                            \"pointType\": \"Face\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false\r\n                        }\r\n                    ],\r\n                    \"chargeClassifications\": [\r\n                        {\r\n                            \"charge\": \"815.06 - Offenses against computer users.\",\r\n                            \"chargeClasification1\": true,\r\n                            \"chargeClasification2\": false,\r\n                            \"chargeClasification3\": false,\r\n                            \"chargeClasification4\": false,\r\n                            \"chargeClasification5\": false,\r\n                            \"chargeClasification6\": \"Other\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T13:05:09.2631801\",\r\n                            \"createdDate\": \"2022-03-30T13:01:33.2673875\"\r\n                        }\r\n                    ],\r\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2631509\",\r\n                    \"createdDate\": \"2022-03-29T14:23:42.2058283\"\r\n                }\r\n            ],\r\n            \"driverChargeClassification\": [\r\n                {\r\n                    \"charge\": \"28-1911 Failure to yield\",\r\n                    \"chargeClasification1\": true,\r\n                    \"chargeClasification2\": false,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2632211\",\r\n                    \"createdDate\": \"2022-03-30T12:34:32.970071\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-30T13:05:09.2631115\",\r\n            \"createdDate\": \"2022-03-29T13:11:15.1364035\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrative\": \"Something of interest happened today.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-03-30T13:05:09.2637645\",\r\n            \"createdDate\": \"2022-03-29T11:30:01.9190982\"\r\n        }\r\n    ],\r\n    \"properties\": [\r\n        {\r\n            \"propertyType\": \"Clothing\",\r\n            \"propertyStatus\": \"\",\r\n            \"estimatedDamage\": \"<$100\",\r\n            \"actualDamage\": \"\",\r\n            \"ownerFirstName\": \"John\",\r\n            \"ownerMiddleName\": \"Jason\",\r\n            \"ownerLastName\": \"Smith\",\r\n            \"ownerAddress\": \"1234 Main Street\",\r\n            \"ownerCity\": \"Jacksonville\",\r\n            \"ownerState\": \"FL\",\r\n            \"ownerEmail\": \"john.smith@gmail.com\",\r\n            \"ownerPhone1\": \"111-111-1111 x111__\",\r\n            \"ownerPhone2\": \"222-222-2222 x222__\",\r\n            \"ownerRace\": \"Black\",\r\n            \"ownerGender\": \"Male\",\r\n            \"ownerDateOfBirth\": \"03/01/1980\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-30T13:05:09.2632482\",\r\n            \"createdDate\": \"2022-03-29T14:17:17.0272193\"\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jason\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"email\": \"john.smith@gmail.com\",\r\n            \"phone1\": \"111-111-1111 x1111_\",\r\n            \"phone2\": \"\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-30T13:05:09.2637431\",\r\n            \"createdDate\": \"2022-03-29T14:12:54.0486612\"\r\n        }\r\n    ],\r\n    \"victims\": [\r\n        {\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jason\",\r\n            \"victimAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"victimEmail\": \"john.smith@gmail.com\",\r\n            \"victimPhone1\": \"111-111-1111 x1111_\",\r\n            \"victimPhone2\": \"\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"victimDateOfBirth\": \"03/01/1975\",\r\n            \"victimInjured\": \"Yes\",\r\n            \"victimInjuryType\": \"Broken Bone\",\r\n            \"victimInjurySeverity\": \"Non-Incapacitating\",\r\n            \"victimHowInjuryToVictimOccurred\": \"\",\r\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\r\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\r\n            \"victimTransported\": \"Yes\",\r\n            \"victimTransportedBy\": \"The Ambulance\",\r\n            \"victimTransportedTo\": \"The Hospital\",\r\n            \"victimTransportedTime\": \"12:12:00\",\r\n            \"victimInjuryPhotos\": \"No\",\r\n            \"victimInjuryPhotosTakenBy\": \"\",\r\n            \"nonEditable\": false,\r\n            \"victimArrested\": \"Yes\",\r\n            \"victimArrestCharge\": \"28-211 Reckless driving\",\r\n            \"victimArrestedForFelony\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"pointsOfContacts\": [\r\n                {\r\n                    \"pointType\": \"Palm (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2632938\",\r\n                    \"createdDate\": \"2022-03-29T13:51:25.4716938\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Stomach\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2632954\",\r\n                    \"createdDate\": \"2022-03-29T13:51:25.4847558\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Glutes\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2632967\",\r\n                    \"createdDate\": \"2022-03-29T13:51:25.4848916\"\r\n                }\r\n            ],\r\n            \"chargeClassifications\": [\r\n                {\r\n                    \"charge\": \"28-211 Reckless driving\",\r\n                    \"chargeClasification1\": false,\r\n                    \"chargeClasification2\": true,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"Example of Other\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T13:05:09.2636702\",\r\n                    \"createdDate\": \"2022-03-30T13:04:58.1616813\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-30T13:05:09.2632875\",\r\n            \"createdDate\": \"2022-03-29T13:42:58.5931084\"\r\n        }\r\n    ],\r\n    \"reviews\": [\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:35:39.535699\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:35:39.535699\",\r\n            \"createdDate\": \"2022-04-01T07:35:39.5355644\"\r\n        },\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:35:39.5468175\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:35:39.5468175\",\r\n            \"createdDate\": \"2022-04-01T07:35:39.5468166\"\r\n        },\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:40:02.9902495\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:40:02.9902495\",\r\n            \"createdDate\": \"2022-04-01T07:40:02.9902491\"\r\n        },\r\n        {\r\n            \"userId\": 50171,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:40:02.9904082\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:40:02.9904082\",\r\n            \"createdDate\": \"2022-04-01T07:40:02.9904078\"\r\n        },\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Recall\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:43:58.9458218\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:43:58.9458218\",\r\n            \"createdDate\": \"2022-04-01T07:43:58.945821\"\r\n        },\r\n        {\r\n            \"userId\": 50171,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:43:58.9458248\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:43:58.9458248\",\r\n            \"createdDate\": \"2022-04-01T07:43:58.9458244\"\r\n        },\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Recall\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:44:45.5340271\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:44:45.5340271\",\r\n            \"createdDate\": \"2022-04-01T07:44:45.5340268\"\r\n        },\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:44:45.5340287\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:44:45.5340287\",\r\n            \"createdDate\": \"2022-04-01T07:44:45.5340285\"\r\n        },\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:46:36.7967668\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:46:36.7967668\",\r\n            \"createdDate\": \"2022-04-01T07:46:36.7966607\"\r\n        },\r\n        {\r\n            \"userId\": 95475,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:46:36.8317207\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:46:36.8317207\",\r\n            \"createdDate\": \"2022-04-01T07:46:36.8317198\"\r\n        },\r\n        {\r\n            \"userId\": 95475,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"Report complete.  Approved\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T07:52:42.48309\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T07:52:42.48309\",\r\n            \"createdDate\": \"2022-04-01T07:52:42.4830898\"\r\n        }\r\n    ],\r\n    \"reviewFormValues\": [\r\n        {\r\n            \"title\": \"Title\",\r\n            \"type\": \"Type\",\r\n            \"value\": \"Value\",\r\n            \"ordinal\": 1,\r\n            \"indent\": 0,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"inReportId\": 1056,\r\n            \"isChecked\": false,\r\n            \"modifiedDate\": \"2022-04-01T08:33:35.1370686\",\r\n            \"createdDate\": \"2022-04-01T08:33:35.1370686\"\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-03-30T13:05:09.2638016\",\r\n    \"createdDate\": \"2022-03-29T11:30:01.9153145\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/vdoc"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Apr 2022 16:37:20 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"incidentId\": 1059,\n    \"creator\": \"\",\n    \"reviewer\": \"\",\n    \"creatorId\": 8,\n    \"status\": \"Editing\",\n    \"incidentCaseNumber\": \"TestCase-004\",\n    \"relatedIncidentCase\": \"\",\n    \"incidentDate\": \"03/07/2022\",\n    \"incidentTime\": \"12:12:00\",\n    \"reportDate\": \"03/29/2022\",\n    \"reportTime\": \"11:30:00\",\n    \"incidentAddress\": \"1234 Main Street\",\n    \"city\": \"Jacksonville\",\n    \"state\": \"FL\",\n    \"area\": \"Zone 1\",\n    \"district\": \"North\",\n    \"sector\": \"Alpha\",\n    \"subsector\": \"Alpha - 2\",\n    \"supervisorNotified\": \"Yes\",\n    \"supervisorName\": \"Matt Smith\",\n    \"supervisorNotifiedTime\": \"12:12:00\",\n    \"supervisorArrivedTime\": \"13:12:00\",\n    \"insuranceAdjusterNotified\": \"Yes\",\n    \"insuranceAdjusterName\": \"David Tennant\",\n    \"insuranceAdjusterNotifiedTime\": \"12:12:00\",\n    \"insuranceAdjusterArrivedTime\": \"13:12:00\",\n    \"evidenceTechnicianNotified\": \"Yes\",\n    \"evidenceTechnicianName\": \"Peter Capaldi\",\n    \"evidenceTechnicianNotifiedTime\": \"12:12:00\",\n    \"evidenceTechnicianArrivedTime\": \"13:12:00\",\n    \"causeDriver\": \"Animal crossing\",\n    \"causeRoad\": \"Obstructions\",\n    \"causeWeather\": \"Fog\",\n    \"trafficControlWeather\": \"\",\n    \"vehicleDefect\": \"Brake failure\",\n    \"roadSystemId\": \"Freeway\",\n    \"weather\": \"Clear Sky\",\n    \"lightingCondition\": \"Dawn\",\n    \"roadsurfaceCondition\": \"Dry\",\n    \"roadSurfaceType\": \"Concrete\",\n    \"roadWayCharacter\": \"\",\n    \"trafficCharacter\": \"Light\",\n    \"siteLocationWeather\": \"\",\n    \"shoulderType\": \"Raised curb\",\n    \"subsequentEvent\": \"Speeding\",\n    \"vehicleMovement\": \"Going straight\",\n    \"pointOfImpact\": \"\",\n    \"incidentDocumentAttached\": \"No\",\n    \"trackingNumber\": \"2022 - 18\",\n    \"trackingId\": 18,\n    \"trackingYear\": 2022,\n    \"subReportNumber\": null,\n    \"reportType\": \"\",\n    \"routing\": \"Vehicle Fleet Coordinator\",\n    \"deleteComments\": \"\",\n    \"involvedDriver\": true,\n    \"involvedVictim\": true,\n    \"involvedWitness\": true,\n    \"involvedProperty\": true,\n    \"involvedNarrative\": true,\n    \"nonEditable\": false,\n    \"sealed\": false,\n    \"involvedSupervisorReview\": true,\n    \"incidentType\": \"\",\n    \"primaryReferenceId\": null,\n    \"drivers\": [\n        {\n            \"driverId\": 1046,\n            \"incidentId\": 1059,\n            \"isOfficer\": \"Yes\",\n            \"officerId\": \"0123\",\n            \"officerPrimary\": \"Yes\",\n            \"officerFirstName\": \"Walter\",\n            \"officerLastName\": \"Taylor\",\n            \"officerMiddleName\": \"\",\n            \"officerAge\": \"32\",\n            \"officerOnDuty\": \"No\",\n            \"officerPermanentAssignment\": \"South Sector\",\n            \"officerInUniform\": \"Yes\",\n            \"officerRace\": \"White\",\n            \"officerGender\": \"Male\",\n            \"officerDriverLicense\": \"FL123456\",\n            \"officerDriverLicenseExpirationDate\": \"02/01/2022\",\n            \"officerDriverLicenseState\": \"WA\",\n            \"officerYearsWithAgency\": \"12\",\n            \"officerTotalYearsInLawEnforcement\": \"12\",\n            \"officerEducation\": \"\",\n            \"operatorFirstName\": \"\",\n            \"operatorLastName\": \"\",\n            \"operatorMiddleName\": \"\",\n            \"operatorAddress\": \"\",\n            \"operatorCity\": \"\",\n            \"operatorState\": \"\",\n            \"operatorRace\": \"\",\n            \"operatorGender\": \"\",\n            \"operatorEmail\": \"officer@police.com\",\n            \"operatorPhone1\": \"111-111-1111 x1111_\",\n            \"operatorPhone2\": \"\",\n            \"operatorDob\": \"\",\n            \"operatorDriverLicense\": \"\",\n            \"operatorDriverLicenseExpirationDate\": \"\",\n            \"operatorDriverLicenseState\": \"\",\n            \"officerInjured\": \"Yes\",\n            \"officerInjuryType\": \"Blunt Trauma\",\n            \"officerInjurySeverity\": \"Possible\",\n            \"officerHowInjuryOccurred\": \"\",\n            \"officerMedicalTreatmentReceived\": \"Yes\",\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\n            \"officerTransported\": \"Yes\",\n            \"officerTransportedBy\": \"A Human\",\n            \"officerTransportedTo\": \"The Hospital\",\n            \"officerTransportedTime\": \"12:12:00\",\n            \"officerInjuryPhotos\": \"No\",\n            \"officerInjuryPhotosTakenBy\": \"\",\n            \"unitNumber\": \"6\",\n            \"markedVehicle\": \"Yes\",\n            \"vehicleType\": \"Car\",\n            \"vehicleMake\": \"Toyota\",\n            \"vehicleModel\": \"Camry\",\n            \"vehicleYear\": \"2015\",\n            \"vehicleTag\": \"FD12345\",\n            \"vehicleState\": \"VA\",\n            \"vehicleDamaged\": \"Yes\",\n            \"vehicleDamageType\": \"Moderate damage\",\n            \"vehicleDamageAmount\": \"$1,000>\",\n            \"actualDamage\": \"\",\n            \"vehicleTowed\": \"Yes\",\n            \"towingCompany\": \"ABC Towing\",\n            \"vehicleInsurance\": \"\",\n            \"policy\": \"\",\n            \"optionalField\": \"\",\n            \"damageLocation\": \"Driver rear door\",\n            \"nonEditable\": false,\n            \"vehicleOwner\": \"The owner of the vehicle.\",\n            \"woreSeatbelt\": \"\",\n            \"driverArrested\": \"Yes\",\n            \"driverArrestCharge\": \"28-1911 Failure to yield\",\n            \"driverArrestedForFelony\": \"\",\n            \"parkedVehicle\": false,\n            \"bodyWornCamera\": \"\",\n            \"activated\": \"\",\n            \"primaryReferenceId\": null,\n            \"driverPointOfContact\": [\n                {\n                    \"pointOfContactId\": 22,\n                    \"driverId\": 1046,\n                    \"pointType\": \"Palm (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7173645\",\n                    \"createdDate\": \"2022-04-01T12:37:20.7173642\"\n                },\n                {\n                    \"pointOfContactId\": 23,\n                    \"driverId\": 1046,\n                    \"pointType\": \"Palm (left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7173658\",\n                    \"createdDate\": \"2022-04-01T12:37:20.7173656\"\n                },\n                {\n                    \"pointOfContactId\": 24,\n                    \"driverId\": 1046,\n                    \"pointType\": \"Upper Arm (back/left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7173667\",\n                    \"createdDate\": \"2022-04-01T12:37:20.7173665\"\n                }\n            ],\n            \"vehiclePointOfContact\": [\n                {\n                    \"pointOfContactId\": 1087,\n                    \"incidentId\": 0,\n                    \"driverId\": 1046,\n                    \"pointType\": \"Back Bumper (Left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false\n                },\n                {\n                    \"pointOfContactId\": 1088,\n                    \"incidentId\": 0,\n                    \"driverId\": 1046,\n                    \"pointType\": \"Front  Door (Driver)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false\n                }\n            ],\n            \"passenger\": [\n                {\n                    \"passengerId\": 12,\n                    \"driverId\": 1046,\n                    \"isOfficer\": \"No\",\n                    \"officerId\": \"\",\n                    \"passengerFirstName\": \"Sara\",\n                    \"passengerMiddleName\": \"Jane\",\n                    \"passengerLastName\": \"Smith\",\n                    \"passengerAddress\": \"1234 Main Street\",\n                    \"passengerCity\": \"Jacksonville\",\n                    \"passengerState\": \"FL\",\n                    \"passengerDob\": \"03/01/1980\",\n                    \"passengerRace\": \"American Indian\",\n                    \"passengerGender\": \"Female\",\n                    \"passengerEmail\": \"sara.smith@gmail.com\",\n                    \"passengerPhone1\": \"111-111-1111 x111__\",\n                    \"passengerPhone2\": \"\",\n                    \"passengerInjured\": \"Yes\",\n                    \"passengerInjuryType\": \"Blunt Trauma\",\n                    \"passengerInjurySeverity\": \"Non-Incapacitating\",\n                    \"passengerHowInjuryOccurred\": \"\",\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\n                    \"passengerMedicalTreatmentReceivedBy\": \"A Doctor\",\n                    \"passengerTransported\": \"Yes\",\n                    \"passengerTransportedBy\": \"EMS\",\n                    \"passengerTransportedTo\": \"A Hospital\",\n                    \"passengerTransportedTime\": \"12:12:00\",\n                    \"passengerInjuryPhotos\": \"\",\n                    \"passengerInjuryPhotosTakenBy\": \"\",\n                    \"nonEditable\": false,\n                    \"woreSeatbelt\": \"\",\n                    \"passengerArrested\": \"Yes\",\n                    \"passengerArrestCharge\": \"815.06 - Offenses against computer users.\",\n                    \"passengerArrestedForFelony\": \"\",\n                    \"primaryReferenceId\": null,\n                    \"pointsOfContact\": [\n                        {\n                            \"pointOfContactId\": 8,\n                            \"passengerId\": 12,\n                            \"pointType\": \"Upper Chest\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false\n                        },\n                        {\n                            \"pointOfContactId\": 9,\n                            \"passengerId\": 12,\n                            \"pointType\": \"Palm (left)\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false\n                        },\n                        {\n                            \"pointOfContactId\": 10,\n                            \"passengerId\": 12,\n                            \"pointType\": \"Face\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false\n                        }\n                    ],\n                    \"chargeClassifications\": [\n                        {\n                            \"chargeClassifcationId\": 3,\n                            \"passengerId\": 12,\n                            \"charge\": \"815.06 - Offenses against computer users.\",\n                            \"chargeClasification1\": true,\n                            \"chargeClasification2\": false,\n                            \"chargeClasification3\": false,\n                            \"chargeClasification4\": false,\n                            \"chargeClasification5\": false,\n                            \"chargeClasification6\": \"Other\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T12:37:20.7174032\",\n                            \"createdDate\": \"2022-04-01T12:37:20.717403\"\n                        }\n                    ],\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7173951\",\n                    \"createdDate\": \"2022-04-01T12:37:20.7173949\"\n                }\n            ],\n            \"driverChargeClassification\": [\n                {\n                    \"chargeClassificationId\": 3,\n                    \"driverId\": 1046,\n                    \"charge\": \"28-1911 Failure to yield\",\n                    \"chargeClasification1\": true,\n                    \"chargeClasification2\": false,\n                    \"chargeClasification3\": false,\n                    \"chargeClasification4\": false,\n                    \"chargeClasification5\": false,\n                    \"chargeClasification6\": \"\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7173745\",\n                    \"createdDate\": \"2022-04-01T12:37:20.7173743\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T12:37:20.7173591\",\n            \"createdDate\": \"2022-04-01T12:37:20.7173588\"\n        }\n    ],\n    \"narratives\": [\n        {\n            \"narrativeId\": 1050,\n            \"incidentId\": 1059,\n            \"narrative\": \"Something of interest happened today.\",\n            \"nonEditable\": false,\n            \"modifiedDate\": \"2022-04-01T12:37:20.7174829\",\n            \"createdDate\": \"2022-04-01T12:37:20.7174826\"\n        }\n    ],\n    \"properties\": [\n        {\n            \"propertyId\": 1020,\n            \"incidentId\": 1059,\n            \"propertyType\": \"Clothing\",\n            \"propertyStatus\": \"\",\n            \"estimatedDamage\": \"<$100\",\n            \"actualDamage\": \"\",\n            \"ownerFirstName\": \"John\",\n            \"ownerMiddleName\": \"Jason\",\n            \"ownerLastName\": \"Smith\",\n            \"ownerAddress\": \"1234 Main Street\",\n            \"ownerCity\": \"Jacksonville\",\n            \"ownerState\": \"FL\",\n            \"ownerEmail\": \"john.smith@gmail.com\",\n            \"ownerPhone1\": \"111-111-1111 x111__\",\n            \"ownerPhone2\": \"222-222-2222 x222__\",\n            \"ownerRace\": \"Black\",\n            \"ownerGender\": \"Male\",\n            \"ownerDateOfBirth\": \"03/01/1980\",\n            \"nonEditable\": false,\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T12:37:20.7174198\",\n            \"createdDate\": \"2022-04-01T12:37:20.7174196\"\n        }\n    ],\n    \"witnesses\": [\n        {\n            \"witnessId\": 27,\n            \"incidentId\": 1059,\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Jason\",\n            \"address\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"email\": \"john.smith@gmail.com\",\n            \"phone1\": \"111-111-1111 x1111_\",\n            \"phone2\": \"\",\n            \"race\": \"White\",\n            \"gender\": \"Male\",\n            \"dateOfBirth\": \"03/01/1980\",\n            \"nonEditable\": false,\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T12:37:20.7174697\",\n            \"createdDate\": \"2022-04-01T12:37:20.7174694\"\n        }\n    ],\n    \"victims\": [\n        {\n            \"victimId\": 21,\n            \"incidentId\": 1059,\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Jason\",\n            \"victimAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"victimEmail\": \"john.smith@gmail.com\",\n            \"victimPhone1\": \"111-111-1111 x1111_\",\n            \"victimPhone2\": \"\",\n            \"race\": \"White\",\n            \"gender\": \"Male\",\n            \"victimDateOfBirth\": \"03/01/1975\",\n            \"victimInjured\": \"Yes\",\n            \"victimInjuryType\": \"Broken Bone\",\n            \"victimInjurySeverity\": \"Non-Incapacitating\",\n            \"victimHowInjuryToVictimOccurred\": \"\",\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\n            \"victimTransported\": \"Yes\",\n            \"victimTransportedBy\": \"The Ambulance\",\n            \"victimTransportedTo\": \"The Hospital\",\n            \"victimTransportedTime\": \"12:12:00\",\n            \"victimInjuryPhotos\": \"No\",\n            \"victimInjuryPhotosTakenBy\": \"\",\n            \"nonEditable\": false,\n            \"victimArrested\": \"Yes\",\n            \"victimArrestCharge\": \"28-211 Reckless driving\",\n            \"victimArrestedForFelony\": \"\",\n            \"primaryReferenceId\": null,\n            \"pointsOfContacts\": [\n                {\n                    \"victimPointOfContactId\": 8,\n                    \"victimId\": 21,\n                    \"pointType\": \"Palm (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7174469\",\n                    \"createdDate\": \"2022-04-01T12:37:20.7174432\"\n                },\n                {\n                    \"victimPointOfContactId\": 9,\n                    \"victimId\": 21,\n                    \"pointType\": \"Stomach\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7174482\",\n                    \"createdDate\": \"2022-04-01T12:37:20.717448\"\n                },\n                {\n                    \"victimPointOfContactId\": 10,\n                    \"victimId\": 21,\n                    \"pointType\": \"Glutes\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7174492\",\n                    \"createdDate\": \"2022-04-01T12:37:20.717449\"\n                }\n            ],\n            \"chargeClassifications\": [\n                {\n                    \"victimChargeClassificationId\": 3,\n                    \"victimId\": 21,\n                    \"charge\": \"28-211 Reckless driving\",\n                    \"chargeClasification1\": false,\n                    \"chargeClasification2\": true,\n                    \"chargeClasification3\": false,\n                    \"chargeClasification4\": false,\n                    \"chargeClasification5\": false,\n                    \"chargeClasification6\": \"Example of Other\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7174518\",\n                    \"createdDate\": \"2022-04-01T12:37:20.7174515\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T12:37:20.7174406\",\n            \"createdDate\": \"2022-04-01T12:37:20.7174403\"\n        }\n    ],\n    \"reviews\": [],\n    \"reviewFormValues\": [\n        {\n            \"reviewFormValueId\": 4,\n            \"title\": \"Title\",\n            \"type\": \"Type\",\n            \"value\": \"Value\",\n            \"ordinal\": 1,\n            \"indent\": 0,\n            \"helpSeg\": \"\",\n            \"formValue\": \"\",\n            \"inReportId\": 1059,\n            \"isChecked\": false,\n            \"modifiedDate\": \"2022-04-01T12:37:20.7173057\",\n            \"createdDate\": \"2022-04-01T12:37:20.7173054\"\n        }\n    ],\n    \"modifiedDate\": \"2022-04-01T12:37:20.7172657\",\n    \"createdDate\": \"2022-04-01T12:37:20.7172653\"\n}"},{"id":"2d4a48e7-2f8b-4225-86e5-f2b640156184","name":"Case Number Already Exists","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"Editing\",\r\n    \"incidentCaseNumber\": \"MyCaseNumber-001\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"02/14/2022\",\r\n    \"incidentTime\": null,\r\n    \"reportDate\": \"02/09/2022\",\r\n    \"reportTime\": \"12:22:00\",\r\n    \"incidentAddress\": \"2735 Lydia Street\",\r\n    \"city\": \"Jacksonville\",\r\n    \"state\": \"FL\",\r\n    \"area\": \"\",\r\n    \"district\": \"\",\r\n    \"sector\": \"\",\r\n    \"subsector\": \"\",\r\n    \"supervisorNotified\": \"No\",\r\n    \"supervisorName\": \"\",\r\n    \"supervisorNotifiedTime\": null,\r\n    \"supervisorArrivedTime\": null,\r\n    \"insuranceAdjusterNotified\": \"\",\r\n    \"insuranceAdjusterName\": \"\",\r\n    \"insuranceAdjusterNotifiedTime\": null,\r\n    \"insuranceAdjusterArrivedTime\": null,\r\n    \"evidenceTechnicianNotified\": \"\",\r\n    \"evidenceTechnicianName\": \"\",\r\n    \"evidenceTechnicianNotifiedTime\": null,\r\n    \"evidenceTechnicianArrivedTime\": null,\r\n    \"causeDriver\": \"Failure to stop at stop sign\",\r\n    \"causeRoad\": \"\",\r\n    \"causeWeather\": \"High winds\",\r\n    \"trafficControlWeather\": \"\",\r\n    \"vehicleDefect\": \"\",\r\n    \"roadSystemId\": \"\",\r\n    \"weather\": \"\",\r\n    \"lightingCondition\": \"\",\r\n    \"roadsurfaceCondition\": \"Other\",\r\n    \"roadSurfaceType\": \"\",\r\n    \"roadWayCharacter\": \"\",\r\n    \"trafficCharacter\": \"\",\r\n    \"siteLocationWeather\": \"\",\r\n    \"shoulderType\": \"\",\r\n    \"subsequentEvent\": \"\",\r\n    \"vehicleMovement\": \"\",\r\n    \"pointOfImpact\": \"\",\r\n    \"incidentDocumentAttached\": \"Yes\",\r\n    \"trackingNumber\": \"2022 - 2\",\r\n    \"trackingId\": 2,\r\n    \"trackingYear\": 2022,\r\n    \"subReportNumber\": null,\r\n    \"reportType\": \"\",\r\n    \"routing\": \"\",\r\n    \"deleteComments\": \"\",\r\n    \"involvedDriver\": true,\r\n    \"involvedVictim\": true,\r\n    \"involvedWitness\": true,\r\n    \"involvedProperty\": false,\r\n    \"involvedNarrative\": true,\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": true,\r\n    \"incidentType\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"drivers\": [\r\n        {\r\n            \"isOfficer\": \"Yes\",\r\n            \"officerId\": \"0005\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerFirstName\": \"Bradley\",\r\n            \"officerLastName\": \"Bronson\",\r\n            \"officerMiddleName\": \"\",\r\n            \"officerAge\": \"\",\r\n            \"officerOnDuty\": \"\",\r\n            \"officerPermanentAssignment\": \"\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"officerRace\": \"Other\",\r\n            \"officerGender\": \"Male\",\r\n            \"officerDriverLicense\": \"jkljkljjk\",\r\n            \"officerDriverLicenseExpirationDate\": \"\",\r\n            \"officerDriverLicenseState\": \"\",\r\n            \"officerYearsWithAgency\": \"\",\r\n            \"officerTotalYearsInLawEnforcement\": \"\",\r\n            \"officerEducation\": \"\",\r\n            \"operatorFirstName\": \"\",\r\n            \"operatorLastName\": \"\",\r\n            \"operatorMiddleName\": \"\",\r\n            \"operatorAddress\": \"\",\r\n            \"operatorCity\": \"\",\r\n            \"operatorState\": \"\",\r\n            \"operatorRace\": \"\",\r\n            \"operatorGender\": \"\",\r\n            \"operatorEmail\": \"\",\r\n            \"operatorPhone1\": \"\",\r\n            \"operatorPhone2\": \"\",\r\n            \"operatorDob\": \"\",\r\n            \"operatorDriverLicense\": \"\",\r\n            \"operatorDriverLicenseExpirationDate\": \"\",\r\n            \"operatorDriverLicenseState\": \"\",\r\n            \"officerInjured\": \"Yes\",\r\n            \"officerInjuryType\": \"\",\r\n            \"officerInjurySeverity\": \"\",\r\n            \"officerHowInjuryOccurred\": \"\",\r\n            \"officerMedicalTreatmentReceived\": \"\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"\",\r\n            \"officerTransported\": \"\",\r\n            \"officerTransportedBy\": \"\",\r\n            \"officerTransportedTo\": \"\",\r\n            \"officerTransportedTime\": null,\r\n            \"officerInjuryPhotos\": \"\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"unitNumber\": \"\",\r\n            \"markedVehicle\": \"\",\r\n            \"vehicleType\": \"\",\r\n            \"vehicleMake\": \"\",\r\n            \"vehicleModel\": \"\",\r\n            \"vehicleYear\": \"\",\r\n            \"vehicleTag\": \"\",\r\n            \"vehicleState\": \"\",\r\n            \"vehicleDamaged\": \"\",\r\n            \"vehicleDamageType\": \"\",\r\n            \"vehicleDamageAmount\": \"\",\r\n            \"actualDamage\": \"\",\r\n            \"vehicleTowed\": \"\",\r\n            \"towingCompany\": \"\",\r\n            \"vehicleInsurance\": \"\",\r\n            \"policy\": \"\",\r\n            \"optionalField\": \"\",\r\n            \"damageLocation\": \"\",\r\n            \"nonEditable\": false,\r\n            \"vehicleOwner\": \"\",\r\n            \"woreSeatbelt\": \"\",\r\n            \"driverArrested\": \"\",\r\n            \"driverArrestCharge\": \"\",\r\n            \"driverArrestedForFelony\": \"\",\r\n            \"parkedVehicle\": false,\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"driverPointOfContact\": [],\r\n            \"vehiclePointOfContact\": [],\r\n            \"passenger\": [],\r\n            \"driverChargeClassification\": [],\r\n            \"modifiedDate\": \"2022-02-15T16:02:53.3689853\",\r\n            \"createdDate\": \"2022-02-15T16:02:53.3689851\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrative\": \"This is some narrative I tell you.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-02-15T16:02:53.3690407\",\r\n            \"createdDate\": \"2022-02-15T16:02:53.3690405\"\r\n        }\r\n    ],\r\n    \"properties\": [],\r\n    \"witnesses\": [\r\n        {\r\n            \"firstName\": \"Durand\",\r\n            \"lastName\": \"Peterson\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"2735 Lydia Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"email\": \"peterson.durand@gmail.com\",\r\n            \"phone1\": \"9042381874\",\r\n            \"phone2\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"dateOfBirth\": \"\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-02-15T16:02:53.3690207\",\r\n            \"createdDate\": \"2022-02-15T16:02:53.3690205\"\r\n        },\r\n        {\r\n            \"firstName\": \"Carolyn\",\r\n            \"lastName\": \"Peterson\",\r\n            \"middleName\": \"K\",\r\n            \"address\": \"2789 SAINT JOHNS AVE\",\r\n            \"city\": \"JACKSONVILLE\",\r\n            \"state\": \"FL\",\r\n            \"email\": \"\",\r\n            \"phone1\": \"\",\r\n            \"phone2\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"dateOfBirth\": \"\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-02-15T16:02:53.3690302\",\r\n            \"createdDate\": \"2022-02-15T16:02:53.36903\"\r\n        }\r\n    ],\r\n    \"victims\": [\r\n        {\r\n            \"firstName\": \"Durand\",\r\n            \"lastName\": \"Peterson\",\r\n            \"middleName\": \"\",\r\n            \"victimAddress\": \"2735 Lydia Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"victimEmail\": \"peterson.durand@gmail.com\",\r\n            \"victimPhone1\": \"9042381874\",\r\n            \"victimPhone2\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"victimDateOfBirth\": \"\",\r\n            \"victimInjured\": \"\",\r\n            \"victimInjuryType\": \"\",\r\n            \"victimInjurySeverity\": \"\",\r\n            \"victimHowInjuryToVictimOccurred\": \"\",\r\n            \"victimMedicalTreatmentOfVictim\": \"\",\r\n            \"victimMedicalTreatmentOfVictimBy\": \"\",\r\n            \"victimTransported\": \"\",\r\n            \"victimTransportedBy\": \"\",\r\n            \"victimTransportedTo\": \"\",\r\n            \"victimTransportedTime\": null,\r\n            \"victimInjuryPhotos\": \"\",\r\n            \"victimInjuryPhotosTakenBy\": \"\",\r\n            \"nonEditable\": false,\r\n            \"victimArrested\": \"\",\r\n            \"victimArrestCharge\": \"\",\r\n            \"victimArrestedForFelony\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"pointsOfContacts\": [],\r\n            \"chargeClassifications\": [],\r\n            \"modifiedDate\": \"2022-02-15T16:02:53.3690058\",\r\n            \"createdDate\": \"2022-02-15T16:02:53.3690055\"\r\n        }\r\n    ],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [],\r\n    \"modifiedDate\": \"2022-02-15T16:02:53.3689391\",\r\n    \"createdDate\": \"2022-02-15T16:02:53.3689388\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/vdoc"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 19:18:00 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"Supplied Incident Case Number already exists!\"\n}"}],"_postman_id":"e6711daf-0a88-45a8-a58e-06012712626a"},{"name":"Update Vehicle Damage Incident","id":"69c9219f-a180-47af-a690-37c67d373b04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": 1059,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"Editing\",\r\n    \"incidentCaseNumber\": \"TestCase-004\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"03/07/2022\",\r\n    \"incidentTime\": \"12:12:00\",\r\n    \"reportDate\": \"03/29/2022\",\r\n    \"reportTime\": \"11:30:00\",\r\n    \"incidentAddress\": \"1234 Main Street\",\r\n    \"city\": \"Jacksonville\",\r\n    \"state\": \"FL\",\r\n    \"area\": \"Zone 1\",\r\n    \"district\": \"North\",\r\n    \"sector\": \"Alpha\",\r\n    \"subsector\": \"Alpha - 2\",\r\n    \"supervisorNotified\": \"Yes\",\r\n    \"supervisorName\": \"Matt Smith\",\r\n    \"supervisorNotifiedTime\": \"12:12:00\",\r\n    \"supervisorArrivedTime\": \"13:12:00\",\r\n    \"insuranceAdjusterNotified\": \"Yes\",\r\n    \"insuranceAdjusterName\": \"David Tennant\",\r\n    \"insuranceAdjusterNotifiedTime\": \"12:12:00\",\r\n    \"insuranceAdjusterArrivedTime\": \"13:12:00\",\r\n    \"evidenceTechnicianNotified\": \"Yes\",\r\n    \"evidenceTechnicianName\": \"Peter Capaldi\",\r\n    \"evidenceTechnicianNotifiedTime\": \"12:12:00\",\r\n    \"evidenceTechnicianArrivedTime\": \"13:12:00\",\r\n    \"causeDriver\": \"Animal crossing\",\r\n    \"causeRoad\": \"Obstructions\",\r\n    \"causeWeather\": \"Fog\",\r\n    \"trafficControlWeather\": \"\",\r\n    \"vehicleDefect\": \"Brake failure\",\r\n    \"roadSystemId\": \"Freeway\",\r\n    \"weather\": \"Clear Sky\",\r\n    \"lightingCondition\": \"Dawn\",\r\n    \"roadsurfaceCondition\": \"Dry\",\r\n    \"roadSurfaceType\": \"Concrete\",\r\n    \"roadWayCharacter\": \"\",\r\n    \"trafficCharacter\": \"Light\",\r\n    \"siteLocationWeather\": \"\",\r\n    \"shoulderType\": \"Raised curb\",\r\n    \"subsequentEvent\": \"Speeding\",\r\n    \"vehicleMovement\": \"Going straight\",\r\n    \"pointOfImpact\": \"\",\r\n    \"incidentDocumentAttached\": \"No\",\r\n    \"trackingNumber\": \"2022 - 18\",\r\n    \"trackingId\": 18,\r\n    \"trackingYear\": 2022,\r\n    \"subReportNumber\": null,\r\n    \"reportType\": \"\",\r\n    \"routing\": \"Vehicle Fleet Coordinator\",\r\n    \"deleteComments\": \"\",\r\n    \"involvedDriver\": true,\r\n    \"involvedVictim\": true,\r\n    \"involvedWitness\": true,\r\n    \"involvedProperty\": true,\r\n    \"involvedNarrative\": true,\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": true,\r\n    \"incidentType\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"drivers\": [\r\n        {\r\n            \"driverId\": 1046,\r\n            \"incidentId\": 1059,\r\n            \"isOfficer\": \"Yes\",\r\n            \"officerId\": \"0123\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerFirstName\": \"Walter\",\r\n            \"officerLastName\": \"Taylor\",\r\n            \"officerMiddleName\": \"\",\r\n            \"officerAge\": \"32\",\r\n            \"officerOnDuty\": \"No\",\r\n            \"officerPermanentAssignment\": \"South Sector\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"officerRace\": \"White\",\r\n            \"officerGender\": \"Male\",\r\n            \"officerDriverLicense\": \"FL123456\",\r\n            \"officerDriverLicenseExpirationDate\": \"02/01/2022\",\r\n            \"officerDriverLicenseState\": \"WA\",\r\n            \"officerYearsWithAgency\": \"12\",\r\n            \"officerTotalYearsInLawEnforcement\": \"12\",\r\n            \"officerEducation\": \"\",\r\n            \"operatorFirstName\": \"\",\r\n            \"operatorLastName\": \"\",\r\n            \"operatorMiddleName\": \"\",\r\n            \"operatorAddress\": \"\",\r\n            \"operatorCity\": \"\",\r\n            \"operatorState\": \"\",\r\n            \"operatorRace\": \"\",\r\n            \"operatorGender\": \"\",\r\n            \"operatorEmail\": \"officer@police.com\",\r\n            \"operatorPhone1\": \"111-111-1111 x1111_\",\r\n            \"operatorPhone2\": \"\",\r\n            \"operatorDob\": \"\",\r\n            \"operatorDriverLicense\": \"\",\r\n            \"operatorDriverLicenseExpirationDate\": \"\",\r\n            \"operatorDriverLicenseState\": \"\",\r\n            \"officerInjured\": \"Yes\",\r\n            \"officerInjuryType\": \"Blunt Trauma\",\r\n            \"officerInjurySeverity\": \"Possible\",\r\n            \"officerHowInjuryOccurred\": \"\",\r\n            \"officerMedicalTreatmentReceived\": \"Yes\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\r\n            \"officerTransported\": \"Yes\",\r\n            \"officerTransportedBy\": \"A Human\",\r\n            \"officerTransportedTo\": \"The Hospital\",\r\n            \"officerTransportedTime\": \"12:12:00\",\r\n            \"officerInjuryPhotos\": \"No\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"unitNumber\": \"6\",\r\n            \"markedVehicle\": \"Yes\",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"Toyota\",\r\n            \"vehicleModel\": \"Camry\",\r\n            \"vehicleYear\": \"2015\",\r\n            \"vehicleTag\": \"FD12345\",\r\n            \"vehicleState\": \"VA\",\r\n            \"vehicleDamaged\": \"Yes\",\r\n            \"vehicleDamageType\": \"Moderate damage\",\r\n            \"vehicleDamageAmount\": \"$1,000>\",\r\n            \"actualDamage\": \"\",\r\n            \"vehicleTowed\": \"Yes\",\r\n            \"towingCompany\": \"ABC Towing\",\r\n            \"vehicleInsurance\": \"\",\r\n            \"policy\": \"\",\r\n            \"optionalField\": \"\",\r\n            \"damageLocation\": \"Driver rear door\",\r\n            \"nonEditable\": false,\r\n            \"vehicleOwner\": \"The owner of the vehicle.\",\r\n            \"woreSeatbelt\": \"\",\r\n            \"driverArrested\": \"Yes\",\r\n            \"driverArrestCharge\": \"28-1911 Failure to yield\",\r\n            \"driverArrestedForFelony\": \"\",\r\n            \"parkedVehicle\": false,\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"driverPointOfContact\": [\r\n                {\r\n                    \"pointOfContactId\": 22,\r\n                    \"driverId\": 1046,\r\n                    \"pointType\": \"Palm (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7173645\",\r\n                    \"createdDate\": \"2022-04-01T12:37:20.7173642\"\r\n                },\r\n                {\r\n                    \"pointOfContactId\": 23,\r\n                    \"driverId\": 1046,\r\n                    \"pointType\": \"Palm (left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7173658\",\r\n                    \"createdDate\": \"2022-04-01T12:37:20.7173656\"\r\n                },\r\n                {\r\n                    \"pointOfContactId\": 24,\r\n                    \"driverId\": 1046,\r\n                    \"pointType\": \"Upper Arm (back/left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7173667\",\r\n                    \"createdDate\": \"2022-04-01T12:37:20.7173665\"\r\n                }\r\n            ],\r\n            \"vehiclePointOfContact\": [\r\n                {\r\n                    \"pointOfContactId\": 1087,\r\n                    \"incidentId\": 0,\r\n                    \"driverId\": 1046,\r\n                    \"pointType\": \"Back Bumper (Left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false\r\n                },\r\n                {\r\n                    \"pointOfContactId\": 1088,\r\n                    \"incidentId\": 0,\r\n                    \"driverId\": 1046,\r\n                    \"pointType\": \"Front  Door (Driver)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false\r\n                }\r\n            ],\r\n            \"passenger\": [\r\n                {\r\n                    \"passengerId\": 12,\r\n                    \"driverId\": 1046,\r\n                    \"isOfficer\": \"No\",\r\n                    \"officerId\": \"\",\r\n                    \"passengerFirstName\": \"Sara\",\r\n                    \"passengerMiddleName\": \"Jane\",\r\n                    \"passengerLastName\": \"Smith\",\r\n                    \"passengerAddress\": \"1234 Main Street\",\r\n                    \"passengerCity\": \"Jacksonville\",\r\n                    \"passengerState\": \"FL\",\r\n                    \"passengerDob\": \"03/01/1980\",\r\n                    \"passengerRace\": \"American Indian\",\r\n                    \"passengerGender\": \"Female\",\r\n                    \"passengerEmail\": \"sara.smith@gmail.com\",\r\n                    \"passengerPhone1\": \"111-111-1111 x111__\",\r\n                    \"passengerPhone2\": \"\",\r\n                    \"passengerInjured\": \"Yes\",\r\n                    \"passengerInjuryType\": \"Blunt Trauma\",\r\n                    \"passengerInjurySeverity\": \"Non-Incapacitating\",\r\n                    \"passengerHowInjuryOccurred\": \"\",\r\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\r\n                    \"passengerMedicalTreatmentReceivedBy\": \"A Doctor\",\r\n                    \"passengerTransported\": \"Yes\",\r\n                    \"passengerTransportedBy\": \"EMS\",\r\n                    \"passengerTransportedTo\": \"A Hospital\",\r\n                    \"passengerTransportedTime\": \"12:12:00\",\r\n                    \"passengerInjuryPhotos\": \"\",\r\n                    \"passengerInjuryPhotosTakenBy\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"woreSeatbelt\": \"\",\r\n                    \"passengerArrested\": \"Yes\",\r\n                    \"passengerArrestCharge\": \"815.06 - Offenses against computer users.\",\r\n                    \"passengerArrestedForFelony\": \"\",\r\n                    \"primaryReferenceId\": null,\r\n                    \"pointsOfContact\": [\r\n                        {\r\n                            \"pointOfContactId\": 8,\r\n                            \"passengerId\": 12,\r\n                            \"pointType\": \"Upper Chest\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false\r\n                        },\r\n                        {\r\n                            \"pointOfContactId\": 9,\r\n                            \"passengerId\": 12,\r\n                            \"pointType\": \"Palm (left)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false\r\n                        },\r\n                        {\r\n                            \"pointOfContactId\": 10,\r\n                            \"passengerId\": 12,\r\n                            \"pointType\": \"Face\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false\r\n                        }\r\n                    ],\r\n                    \"chargeClassifications\": [\r\n                        {\r\n                            \"chargeClassifcationId\": 3,\r\n                            \"passengerId\": 12,\r\n                            \"charge\": \"815.06 - Offenses against computer users.\",\r\n                            \"chargeClasification1\": true,\r\n                            \"chargeClasification2\": false,\r\n                            \"chargeClasification3\": false,\r\n                            \"chargeClasification4\": false,\r\n                            \"chargeClasification5\": false,\r\n                            \"chargeClasification6\": \"Other\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T12:37:20.7174032\",\r\n                            \"createdDate\": \"2022-04-01T12:37:20.717403\"\r\n                        }\r\n                    ],\r\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7173951\",\r\n                    \"createdDate\": \"2022-04-01T12:37:20.7173949\"\r\n                }\r\n            ],\r\n            \"driverChargeClassification\": [\r\n                {\r\n                    \"chargeClassificationId\": 3,\r\n                    \"driverId\": 1046,\r\n                    \"charge\": \"28-1911 Failure to yield\",\r\n                    \"chargeClasification1\": true,\r\n                    \"chargeClasification2\": false,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7173745\",\r\n                    \"createdDate\": \"2022-04-01T12:37:20.7173743\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T12:37:20.7173591\",\r\n            \"createdDate\": \"2022-04-01T12:37:20.7173588\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 1050,\r\n            \"incidentId\": 1059,\r\n            \"narrative\": \"Something of interest happened today.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-04-01T12:37:20.7174829\",\r\n            \"createdDate\": \"2022-04-01T12:37:20.7174826\"\r\n        }\r\n    ],\r\n    \"properties\": [\r\n        {\r\n            \"propertyId\": 1020,\r\n            \"incidentId\": 1059,\r\n            \"propertyType\": \"Clothing\",\r\n            \"propertyStatus\": \"\",\r\n            \"estimatedDamage\": \"<$100\",\r\n            \"actualDamage\": \"\",\r\n            \"ownerFirstName\": \"John\",\r\n            \"ownerMiddleName\": \"Jason\",\r\n            \"ownerLastName\": \"Smith\",\r\n            \"ownerAddress\": \"1234 Main Street\",\r\n            \"ownerCity\": \"Jacksonville\",\r\n            \"ownerState\": \"FL\",\r\n            \"ownerEmail\": \"john.smith@gmail.com\",\r\n            \"ownerPhone1\": \"111-111-1111 x111__\",\r\n            \"ownerPhone2\": \"222-222-2222 x222__\",\r\n            \"ownerRace\": \"Black\",\r\n            \"ownerGender\": \"Male\",\r\n            \"ownerDateOfBirth\": \"03/01/1980\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T12:37:20.7174198\",\r\n            \"createdDate\": \"2022-04-01T12:37:20.7174196\"\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 27,\r\n            \"incidentId\": 1059,\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jason\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"email\": \"john.smith@gmail.com\",\r\n            \"phone1\": \"111-111-1111 x1111_\",\r\n            \"phone2\": \"\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T12:37:20.7174697\",\r\n            \"createdDate\": \"2022-04-01T12:37:20.7174694\"\r\n        }\r\n    ],\r\n    \"victims\": [\r\n        {\r\n            \"victimId\": 21,\r\n            \"incidentId\": 1059,\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jason\",\r\n            \"victimAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"victimEmail\": \"john.smith@gmail.com\",\r\n            \"victimPhone1\": \"111-111-1111 x1111_\",\r\n            \"victimPhone2\": \"\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"victimDateOfBirth\": \"03/01/1975\",\r\n            \"victimInjured\": \"Yes\",\r\n            \"victimInjuryType\": \"Broken Bone\",\r\n            \"victimInjurySeverity\": \"Non-Incapacitating\",\r\n            \"victimHowInjuryToVictimOccurred\": \"\",\r\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\r\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\r\n            \"victimTransported\": \"Yes\",\r\n            \"victimTransportedBy\": \"The Ambulance\",\r\n            \"victimTransportedTo\": \"The Hospital\",\r\n            \"victimTransportedTime\": \"12:12:00\",\r\n            \"victimInjuryPhotos\": \"No\",\r\n            \"victimInjuryPhotosTakenBy\": \"\",\r\n            \"nonEditable\": false,\r\n            \"victimArrested\": \"Yes\",\r\n            \"victimArrestCharge\": \"28-211 Reckless driving\",\r\n            \"victimArrestedForFelony\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"pointsOfContacts\": [\r\n                {\r\n                    \"victimPointOfContactId\": 8,\r\n                    \"victimId\": 21,\r\n                    \"pointType\": \"Palm (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7174469\",\r\n                    \"createdDate\": \"2022-04-01T12:37:20.7174432\"\r\n                },\r\n                {\r\n                    \"victimPointOfContactId\": 9,\r\n                    \"victimId\": 21,\r\n                    \"pointType\": \"Stomach\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7174482\",\r\n                    \"createdDate\": \"2022-04-01T12:37:20.717448\"\r\n                },\r\n                {\r\n                    \"victimPointOfContactId\": 10,\r\n                    \"victimId\": 21,\r\n                    \"pointType\": \"Glutes\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7174492\",\r\n                    \"createdDate\": \"2022-04-01T12:37:20.717449\"\r\n                }\r\n            ],\r\n            \"chargeClassifications\": [\r\n                {\r\n                    \"victimChargeClassificationId\": 3,\r\n                    \"victimId\": 21,\r\n                    \"charge\": \"28-211 Reckless driving\",\r\n                    \"chargeClasification1\": false,\r\n                    \"chargeClasification2\": true,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"Example of Other\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7174518\",\r\n                    \"createdDate\": \"2022-04-01T12:37:20.7174515\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T12:37:20.7174406\",\r\n            \"createdDate\": \"2022-04-01T12:37:20.7174403\"\r\n        }\r\n    ],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [\r\n        {\r\n            \"reviewFormValueId\": 4,\r\n            \"title\": \"Title\",\r\n            \"type\": \"Type\",\r\n            \"value\": \"Value\",\r\n            \"ordinal\": 1,\r\n            \"indent\": 0,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"inReportId\": 1059,\r\n            \"isChecked\": false,\r\n            \"modifiedDate\": \"2022-04-01T12:37:20.7173057\",\r\n            \"createdDate\": \"2022-04-01T12:37:20.7173054\"\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-04-01T12:37:20.7172657\",\r\n    \"createdDate\": \"2022-04-01T12:37:20.7172653\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/vdoc","description":"<p>Update an existing incident of vehicle damage. An error will be thrown if an Incident with the supplied Incident Id cannot be found within the system. You must ensure that the Incident Id exists.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","vdoc"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"50182c2e-10c6-42c1-8f54-b68299aad9de","name":"Success","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": 1059,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"Editing\",\r\n    \"incidentCaseNumber\": \"TestCase-004\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"03/07/2022\",\r\n    \"incidentTime\": \"12:12:00\",\r\n    \"reportDate\": \"03/29/2022\",\r\n    \"reportTime\": \"11:30:00\",\r\n    \"incidentAddress\": \"1234 Main Street\",\r\n    \"city\": \"Jacksonville\",\r\n    \"state\": \"FL\",\r\n    \"area\": \"Zone 1\",\r\n    \"district\": \"North\",\r\n    \"sector\": \"Alpha\",\r\n    \"subsector\": \"Alpha - 2\",\r\n    \"supervisorNotified\": \"Yes\",\r\n    \"supervisorName\": \"Matt Smith\",\r\n    \"supervisorNotifiedTime\": \"12:12:00\",\r\n    \"supervisorArrivedTime\": \"13:12:00\",\r\n    \"insuranceAdjusterNotified\": \"Yes\",\r\n    \"insuranceAdjusterName\": \"David Tennant\",\r\n    \"insuranceAdjusterNotifiedTime\": \"12:12:00\",\r\n    \"insuranceAdjusterArrivedTime\": \"13:12:00\",\r\n    \"evidenceTechnicianNotified\": \"Yes\",\r\n    \"evidenceTechnicianName\": \"Peter Capaldi\",\r\n    \"evidenceTechnicianNotifiedTime\": \"12:12:00\",\r\n    \"evidenceTechnicianArrivedTime\": \"13:12:00\",\r\n    \"causeDriver\": \"Animal crossing\",\r\n    \"causeRoad\": \"Obstructions\",\r\n    \"causeWeather\": \"Fog\",\r\n    \"trafficControlWeather\": \"\",\r\n    \"vehicleDefect\": \"Brake failure\",\r\n    \"roadSystemId\": \"Freeway\",\r\n    \"weather\": \"Clear Sky\",\r\n    \"lightingCondition\": \"Dawn\",\r\n    \"roadsurfaceCondition\": \"Dry\",\r\n    \"roadSurfaceType\": \"Concrete\",\r\n    \"roadWayCharacter\": \"\",\r\n    \"trafficCharacter\": \"Light\",\r\n    \"siteLocationWeather\": \"\",\r\n    \"shoulderType\": \"Raised curb\",\r\n    \"subsequentEvent\": \"Speeding\",\r\n    \"vehicleMovement\": \"Going straight\",\r\n    \"pointOfImpact\": \"\",\r\n    \"incidentDocumentAttached\": \"No\",\r\n    \"trackingNumber\": \"2022 - 18\",\r\n    \"trackingId\": 18,\r\n    \"trackingYear\": 2022,\r\n    \"subReportNumber\": null,\r\n    \"reportType\": \"\",\r\n    \"routing\": \"Vehicle Fleet Coordinator\",\r\n    \"deleteComments\": \"\",\r\n    \"involvedDriver\": true,\r\n    \"involvedVictim\": true,\r\n    \"involvedWitness\": true,\r\n    \"involvedProperty\": true,\r\n    \"involvedNarrative\": true,\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": true,\r\n    \"incidentType\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"drivers\": [\r\n        {\r\n            \"driverId\": 1046,\r\n            \"incidentId\": 1059,\r\n            \"isOfficer\": \"Yes\",\r\n            \"officerId\": \"0123\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerFirstName\": \"Walter\",\r\n            \"officerLastName\": \"Taylor\",\r\n            \"officerMiddleName\": \"\",\r\n            \"officerAge\": \"32\",\r\n            \"officerOnDuty\": \"No\",\r\n            \"officerPermanentAssignment\": \"South Sector\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"officerRace\": \"White\",\r\n            \"officerGender\": \"Male\",\r\n            \"officerDriverLicense\": \"FL123456\",\r\n            \"officerDriverLicenseExpirationDate\": \"02/01/2022\",\r\n            \"officerDriverLicenseState\": \"WA\",\r\n            \"officerYearsWithAgency\": \"12\",\r\n            \"officerTotalYearsInLawEnforcement\": \"12\",\r\n            \"officerEducation\": \"\",\r\n            \"operatorFirstName\": \"\",\r\n            \"operatorLastName\": \"\",\r\n            \"operatorMiddleName\": \"\",\r\n            \"operatorAddress\": \"\",\r\n            \"operatorCity\": \"\",\r\n            \"operatorState\": \"\",\r\n            \"operatorRace\": \"\",\r\n            \"operatorGender\": \"\",\r\n            \"operatorEmail\": \"officer@police.com\",\r\n            \"operatorPhone1\": \"111-111-1111 x1111_\",\r\n            \"operatorPhone2\": \"\",\r\n            \"operatorDob\": \"\",\r\n            \"operatorDriverLicense\": \"\",\r\n            \"operatorDriverLicenseExpirationDate\": \"\",\r\n            \"operatorDriverLicenseState\": \"\",\r\n            \"officerInjured\": \"Yes\",\r\n            \"officerInjuryType\": \"Blunt Trauma\",\r\n            \"officerInjurySeverity\": \"Possible\",\r\n            \"officerHowInjuryOccurred\": \"\",\r\n            \"officerMedicalTreatmentReceived\": \"Yes\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\r\n            \"officerTransported\": \"Yes\",\r\n            \"officerTransportedBy\": \"A Human\",\r\n            \"officerTransportedTo\": \"The Hospital\",\r\n            \"officerTransportedTime\": \"12:12:00\",\r\n            \"officerInjuryPhotos\": \"No\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"unitNumber\": \"6\",\r\n            \"markedVehicle\": \"Yes\",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"Toyota\",\r\n            \"vehicleModel\": \"Camry\",\r\n            \"vehicleYear\": \"2015\",\r\n            \"vehicleTag\": \"FD12345\",\r\n            \"vehicleState\": \"VA\",\r\n            \"vehicleDamaged\": \"Yes\",\r\n            \"vehicleDamageType\": \"Moderate damage\",\r\n            \"vehicleDamageAmount\": \"$1,000>\",\r\n            \"actualDamage\": \"\",\r\n            \"vehicleTowed\": \"Yes\",\r\n            \"towingCompany\": \"ABC Towing\",\r\n            \"vehicleInsurance\": \"\",\r\n            \"policy\": \"\",\r\n            \"optionalField\": \"\",\r\n            \"damageLocation\": \"Driver rear door\",\r\n            \"nonEditable\": false,\r\n            \"vehicleOwner\": \"The owner of the vehicle.\",\r\n            \"woreSeatbelt\": \"\",\r\n            \"driverArrested\": \"Yes\",\r\n            \"driverArrestCharge\": \"28-1911 Failure to yield\",\r\n            \"driverArrestedForFelony\": \"\",\r\n            \"parkedVehicle\": false,\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"driverPointOfContact\": [\r\n                {\r\n                    \"pointOfContactId\": 22,\r\n                    \"driverId\": 1046,\r\n                    \"pointType\": \"Palm (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7173645\",\r\n                    \"createdDate\": \"2022-04-01T12:37:20.7173642\"\r\n                },\r\n                {\r\n                    \"pointOfContactId\": 23,\r\n                    \"driverId\": 1046,\r\n                    \"pointType\": \"Palm (left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7173658\",\r\n                    \"createdDate\": \"2022-04-01T12:37:20.7173656\"\r\n                },\r\n                {\r\n                    \"pointOfContactId\": 24,\r\n                    \"driverId\": 1046,\r\n                    \"pointType\": \"Upper Arm (back/left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7173667\",\r\n                    \"createdDate\": \"2022-04-01T12:37:20.7173665\"\r\n                }\r\n            ],\r\n            \"vehiclePointOfContact\": [\r\n                {\r\n                    \"pointOfContactId\": 1087,\r\n                    \"incidentId\": 0,\r\n                    \"driverId\": 1046,\r\n                    \"pointType\": \"Back Bumper (Left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false\r\n                },\r\n                {\r\n                    \"pointOfContactId\": 1088,\r\n                    \"incidentId\": 0,\r\n                    \"driverId\": 1046,\r\n                    \"pointType\": \"Front  Door (Driver)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false\r\n                }\r\n            ],\r\n            \"passenger\": [\r\n                {\r\n                    \"passengerId\": 12,\r\n                    \"driverId\": 1046,\r\n                    \"isOfficer\": \"No\",\r\n                    \"officerId\": \"\",\r\n                    \"passengerFirstName\": \"Sara\",\r\n                    \"passengerMiddleName\": \"Jane\",\r\n                    \"passengerLastName\": \"Smith\",\r\n                    \"passengerAddress\": \"1234 Main Street\",\r\n                    \"passengerCity\": \"Jacksonville\",\r\n                    \"passengerState\": \"FL\",\r\n                    \"passengerDob\": \"03/01/1980\",\r\n                    \"passengerRace\": \"American Indian\",\r\n                    \"passengerGender\": \"Female\",\r\n                    \"passengerEmail\": \"sara.smith@gmail.com\",\r\n                    \"passengerPhone1\": \"111-111-1111 x111__\",\r\n                    \"passengerPhone2\": \"\",\r\n                    \"passengerInjured\": \"Yes\",\r\n                    \"passengerInjuryType\": \"Blunt Trauma\",\r\n                    \"passengerInjurySeverity\": \"Non-Incapacitating\",\r\n                    \"passengerHowInjuryOccurred\": \"\",\r\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\r\n                    \"passengerMedicalTreatmentReceivedBy\": \"A Doctor\",\r\n                    \"passengerTransported\": \"Yes\",\r\n                    \"passengerTransportedBy\": \"EMS\",\r\n                    \"passengerTransportedTo\": \"A Hospital\",\r\n                    \"passengerTransportedTime\": \"12:12:00\",\r\n                    \"passengerInjuryPhotos\": \"\",\r\n                    \"passengerInjuryPhotosTakenBy\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"woreSeatbelt\": \"\",\r\n                    \"passengerArrested\": \"Yes\",\r\n                    \"passengerArrestCharge\": \"815.06 - Offenses against computer users.\",\r\n                    \"passengerArrestedForFelony\": \"\",\r\n                    \"primaryReferenceId\": null,\r\n                    \"pointsOfContact\": [\r\n                        {\r\n                            \"pointOfContactId\": 8,\r\n                            \"passengerId\": 12,\r\n                            \"pointType\": \"Upper Chest\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false\r\n                        },\r\n                        {\r\n                            \"pointOfContactId\": 9,\r\n                            \"passengerId\": 12,\r\n                            \"pointType\": \"Palm (left)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false\r\n                        },\r\n                        {\r\n                            \"pointOfContactId\": 10,\r\n                            \"passengerId\": 12,\r\n                            \"pointType\": \"Face\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false\r\n                        }\r\n                    ],\r\n                    \"chargeClassifications\": [\r\n                        {\r\n                            \"chargeClassifcationId\": 3,\r\n                            \"passengerId\": 12,\r\n                            \"charge\": \"815.06 - Offenses against computer users.\",\r\n                            \"chargeClasification1\": true,\r\n                            \"chargeClasification2\": false,\r\n                            \"chargeClasification3\": false,\r\n                            \"chargeClasification4\": false,\r\n                            \"chargeClasification5\": false,\r\n                            \"chargeClasification6\": \"Other\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T12:37:20.7174032\",\r\n                            \"createdDate\": \"2022-04-01T12:37:20.717403\"\r\n                        }\r\n                    ],\r\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7173951\",\r\n                    \"createdDate\": \"2022-04-01T12:37:20.7173949\"\r\n                }\r\n            ],\r\n            \"driverChargeClassification\": [\r\n                {\r\n                    \"chargeClassificationId\": 3,\r\n                    \"driverId\": 1046,\r\n                    \"charge\": \"28-1911 Failure to yield\",\r\n                    \"chargeClasification1\": true,\r\n                    \"chargeClasification2\": false,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7173745\",\r\n                    \"createdDate\": \"2022-04-01T12:37:20.7173743\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T12:37:20.7173591\",\r\n            \"createdDate\": \"2022-04-01T12:37:20.7173588\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 1050,\r\n            \"incidentId\": 1059,\r\n            \"narrative\": \"Something of interest happened today.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-04-01T12:37:20.7174829\",\r\n            \"createdDate\": \"2022-04-01T12:37:20.7174826\"\r\n        }\r\n    ],\r\n    \"properties\": [\r\n        {\r\n            \"propertyId\": 1020,\r\n            \"incidentId\": 1059,\r\n            \"propertyType\": \"Clothing\",\r\n            \"propertyStatus\": \"\",\r\n            \"estimatedDamage\": \"<$100\",\r\n            \"actualDamage\": \"\",\r\n            \"ownerFirstName\": \"John\",\r\n            \"ownerMiddleName\": \"Jason\",\r\n            \"ownerLastName\": \"Smith\",\r\n            \"ownerAddress\": \"1234 Main Street\",\r\n            \"ownerCity\": \"Jacksonville\",\r\n            \"ownerState\": \"FL\",\r\n            \"ownerEmail\": \"john.smith@gmail.com\",\r\n            \"ownerPhone1\": \"111-111-1111 x111__\",\r\n            \"ownerPhone2\": \"222-222-2222 x222__\",\r\n            \"ownerRace\": \"Black\",\r\n            \"ownerGender\": \"Male\",\r\n            \"ownerDateOfBirth\": \"03/01/1980\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T12:37:20.7174198\",\r\n            \"createdDate\": \"2022-04-01T12:37:20.7174196\"\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 27,\r\n            \"incidentId\": 1059,\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jason\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"email\": \"john.smith@gmail.com\",\r\n            \"phone1\": \"111-111-1111 x1111_\",\r\n            \"phone2\": \"\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T12:37:20.7174697\",\r\n            \"createdDate\": \"2022-04-01T12:37:20.7174694\"\r\n        }\r\n    ],\r\n    \"victims\": [\r\n        {\r\n            \"victimId\": 21,\r\n            \"incidentId\": 1059,\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jason\",\r\n            \"victimAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"victimEmail\": \"john.smith@gmail.com\",\r\n            \"victimPhone1\": \"111-111-1111 x1111_\",\r\n            \"victimPhone2\": \"\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"victimDateOfBirth\": \"03/01/1975\",\r\n            \"victimInjured\": \"Yes\",\r\n            \"victimInjuryType\": \"Broken Bone\",\r\n            \"victimInjurySeverity\": \"Non-Incapacitating\",\r\n            \"victimHowInjuryToVictimOccurred\": \"\",\r\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\r\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\r\n            \"victimTransported\": \"Yes\",\r\n            \"victimTransportedBy\": \"The Ambulance\",\r\n            \"victimTransportedTo\": \"The Hospital\",\r\n            \"victimTransportedTime\": \"12:12:00\",\r\n            \"victimInjuryPhotos\": \"No\",\r\n            \"victimInjuryPhotosTakenBy\": \"\",\r\n            \"nonEditable\": false,\r\n            \"victimArrested\": \"Yes\",\r\n            \"victimArrestCharge\": \"28-211 Reckless driving\",\r\n            \"victimArrestedForFelony\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"pointsOfContacts\": [\r\n                {\r\n                    \"victimPointOfContactId\": 8,\r\n                    \"victimId\": 21,\r\n                    \"pointType\": \"Palm (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7174469\",\r\n                    \"createdDate\": \"2022-04-01T12:37:20.7174432\"\r\n                },\r\n                {\r\n                    \"victimPointOfContactId\": 9,\r\n                    \"victimId\": 21,\r\n                    \"pointType\": \"Stomach\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7174482\",\r\n                    \"createdDate\": \"2022-04-01T12:37:20.717448\"\r\n                },\r\n                {\r\n                    \"victimPointOfContactId\": 10,\r\n                    \"victimId\": 21,\r\n                    \"pointType\": \"Glutes\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7174492\",\r\n                    \"createdDate\": \"2022-04-01T12:37:20.717449\"\r\n                }\r\n            ],\r\n            \"chargeClassifications\": [\r\n                {\r\n                    \"victimChargeClassificationId\": 3,\r\n                    \"victimId\": 21,\r\n                    \"charge\": \"28-211 Reckless driving\",\r\n                    \"chargeClasification1\": false,\r\n                    \"chargeClasification2\": true,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"Example of Other\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T12:37:20.7174518\",\r\n                    \"createdDate\": \"2022-04-01T12:37:20.7174515\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T12:37:20.7174406\",\r\n            \"createdDate\": \"2022-04-01T12:37:20.7174403\"\r\n        }\r\n    ],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [\r\n        {\r\n            \"reviewFormValueId\": 4,\r\n            \"title\": \"Title\",\r\n            \"type\": \"Type\",\r\n            \"value\": \"Value\",\r\n            \"ordinal\": 1,\r\n            \"indent\": 0,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"inReportId\": 1059,\r\n            \"isChecked\": false,\r\n            \"modifiedDate\": \"2022-04-01T12:37:20.7173057\",\r\n            \"createdDate\": \"2022-04-01T12:37:20.7173054\"\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-04-01T12:37:20.7172657\",\r\n    \"createdDate\": \"2022-04-01T12:37:20.7172653\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/vdoc"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Apr 2022 16:38:47 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"incidentId\": 1059,\n    \"creator\": \"\",\n    \"reviewer\": \"\",\n    \"creatorId\": 8,\n    \"status\": \"Editing\",\n    \"incidentCaseNumber\": \"TestCase-004\",\n    \"relatedIncidentCase\": \"\",\n    \"incidentDate\": \"03/07/2022\",\n    \"incidentTime\": \"12:12:00\",\n    \"reportDate\": \"03/29/2022\",\n    \"reportTime\": \"11:30:00\",\n    \"incidentAddress\": \"1234 Main Street\",\n    \"city\": \"Jacksonville\",\n    \"state\": \"FL\",\n    \"area\": \"Zone 1\",\n    \"district\": \"North\",\n    \"sector\": \"Alpha\",\n    \"subsector\": \"Alpha - 2\",\n    \"supervisorNotified\": \"Yes\",\n    \"supervisorName\": \"Matt Smith\",\n    \"supervisorNotifiedTime\": \"12:12:00\",\n    \"supervisorArrivedTime\": \"13:12:00\",\n    \"insuranceAdjusterNotified\": \"Yes\",\n    \"insuranceAdjusterName\": \"David Tennant\",\n    \"insuranceAdjusterNotifiedTime\": \"12:12:00\",\n    \"insuranceAdjusterArrivedTime\": \"13:12:00\",\n    \"evidenceTechnicianNotified\": \"Yes\",\n    \"evidenceTechnicianName\": \"Peter Capaldi\",\n    \"evidenceTechnicianNotifiedTime\": \"12:12:00\",\n    \"evidenceTechnicianArrivedTime\": \"13:12:00\",\n    \"causeDriver\": \"Animal crossing\",\n    \"causeRoad\": \"Obstructions\",\n    \"causeWeather\": \"Fog\",\n    \"trafficControlWeather\": \"\",\n    \"vehicleDefect\": \"Brake failure\",\n    \"roadSystemId\": \"Freeway\",\n    \"weather\": \"Clear Sky\",\n    \"lightingCondition\": \"Dawn\",\n    \"roadsurfaceCondition\": \"Dry\",\n    \"roadSurfaceType\": \"Concrete\",\n    \"roadWayCharacter\": \"\",\n    \"trafficCharacter\": \"Light\",\n    \"siteLocationWeather\": \"\",\n    \"shoulderType\": \"Raised curb\",\n    \"subsequentEvent\": \"Speeding\",\n    \"vehicleMovement\": \"Going straight\",\n    \"pointOfImpact\": \"\",\n    \"incidentDocumentAttached\": \"No\",\n    \"trackingNumber\": \"2022 - 18\",\n    \"trackingId\": 18,\n    \"trackingYear\": 2022,\n    \"subReportNumber\": null,\n    \"reportType\": \"\",\n    \"routing\": \"Vehicle Fleet Coordinator\",\n    \"deleteComments\": \"\",\n    \"involvedDriver\": true,\n    \"involvedVictim\": true,\n    \"involvedWitness\": true,\n    \"involvedProperty\": true,\n    \"involvedNarrative\": true,\n    \"nonEditable\": false,\n    \"sealed\": false,\n    \"involvedSupervisorReview\": true,\n    \"incidentType\": \"\",\n    \"primaryReferenceId\": null,\n    \"drivers\": [\n        {\n            \"driverId\": 1046,\n            \"incidentId\": 1059,\n            \"isOfficer\": \"Yes\",\n            \"officerId\": \"0123\",\n            \"officerPrimary\": \"Yes\",\n            \"officerFirstName\": \"Walter\",\n            \"officerLastName\": \"Taylor\",\n            \"officerMiddleName\": \"\",\n            \"officerAge\": \"32\",\n            \"officerOnDuty\": \"No\",\n            \"officerPermanentAssignment\": \"South Sector\",\n            \"officerInUniform\": \"Yes\",\n            \"officerRace\": \"White\",\n            \"officerGender\": \"Male\",\n            \"officerDriverLicense\": \"FL123456\",\n            \"officerDriverLicenseExpirationDate\": \"02/01/2022\",\n            \"officerDriverLicenseState\": \"WA\",\n            \"officerYearsWithAgency\": \"12\",\n            \"officerTotalYearsInLawEnforcement\": \"12\",\n            \"officerEducation\": \"\",\n            \"operatorFirstName\": \"\",\n            \"operatorLastName\": \"\",\n            \"operatorMiddleName\": \"\",\n            \"operatorAddress\": \"\",\n            \"operatorCity\": \"\",\n            \"operatorState\": \"\",\n            \"operatorRace\": \"\",\n            \"operatorGender\": \"\",\n            \"operatorEmail\": \"officer@police.com\",\n            \"operatorPhone1\": \"111-111-1111 x1111_\",\n            \"operatorPhone2\": \"\",\n            \"operatorDob\": \"\",\n            \"operatorDriverLicense\": \"\",\n            \"operatorDriverLicenseExpirationDate\": \"\",\n            \"operatorDriverLicenseState\": \"\",\n            \"officerInjured\": \"Yes\",\n            \"officerInjuryType\": \"Blunt Trauma\",\n            \"officerInjurySeverity\": \"Possible\",\n            \"officerHowInjuryOccurred\": \"\",\n            \"officerMedicalTreatmentReceived\": \"Yes\",\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\n            \"officerTransported\": \"Yes\",\n            \"officerTransportedBy\": \"A Human\",\n            \"officerTransportedTo\": \"The Hospital\",\n            \"officerTransportedTime\": \"12:12:00\",\n            \"officerInjuryPhotos\": \"No\",\n            \"officerInjuryPhotosTakenBy\": \"\",\n            \"unitNumber\": \"6\",\n            \"markedVehicle\": \"Yes\",\n            \"vehicleType\": \"Car\",\n            \"vehicleMake\": \"Toyota\",\n            \"vehicleModel\": \"Camry\",\n            \"vehicleYear\": \"2015\",\n            \"vehicleTag\": \"FD12345\",\n            \"vehicleState\": \"VA\",\n            \"vehicleDamaged\": \"Yes\",\n            \"vehicleDamageType\": \"Moderate damage\",\n            \"vehicleDamageAmount\": \"$1,000>\",\n            \"actualDamage\": \"\",\n            \"vehicleTowed\": \"Yes\",\n            \"towingCompany\": \"ABC Towing\",\n            \"vehicleInsurance\": \"\",\n            \"policy\": \"\",\n            \"optionalField\": \"\",\n            \"damageLocation\": \"Driver rear door\",\n            \"nonEditable\": false,\n            \"vehicleOwner\": \"The owner of the vehicle.\",\n            \"woreSeatbelt\": \"\",\n            \"driverArrested\": \"Yes\",\n            \"driverArrestCharge\": \"28-1911 Failure to yield\",\n            \"driverArrestedForFelony\": \"\",\n            \"parkedVehicle\": false,\n            \"bodyWornCamera\": \"\",\n            \"activated\": \"\",\n            \"primaryReferenceId\": null,\n            \"driverPointOfContact\": [\n                {\n                    \"pointOfContactId\": 22,\n                    \"driverId\": 1046,\n                    \"pointType\": \"Palm (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T12:38:47.4330479\",\n                    \"createdDate\": \"2022-04-01T12:37:20.7173642\"\n                },\n                {\n                    \"pointOfContactId\": 23,\n                    \"driverId\": 1046,\n                    \"pointType\": \"Palm (left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T12:38:47.4330508\",\n                    \"createdDate\": \"2022-04-01T12:37:20.7173656\"\n                },\n                {\n                    \"pointOfContactId\": 24,\n                    \"driverId\": 1046,\n                    \"pointType\": \"Upper Arm (back/left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T12:38:47.4330515\",\n                    \"createdDate\": \"2022-04-01T12:37:20.7173665\"\n                }\n            ],\n            \"vehiclePointOfContact\": [\n                {\n                    \"pointOfContactId\": 1087,\n                    \"incidentId\": 0,\n                    \"driverId\": 1046,\n                    \"pointType\": \"Back Bumper (Left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false\n                },\n                {\n                    \"pointOfContactId\": 1088,\n                    \"incidentId\": 0,\n                    \"driverId\": 1046,\n                    \"pointType\": \"Front  Door (Driver)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false\n                }\n            ],\n            \"passenger\": [\n                {\n                    \"passengerId\": 12,\n                    \"driverId\": 1046,\n                    \"isOfficer\": \"No\",\n                    \"officerId\": \"\",\n                    \"passengerFirstName\": \"Sara\",\n                    \"passengerMiddleName\": \"Jane\",\n                    \"passengerLastName\": \"Smith\",\n                    \"passengerAddress\": \"1234 Main Street\",\n                    \"passengerCity\": \"Jacksonville\",\n                    \"passengerState\": \"FL\",\n                    \"passengerDob\": \"03/01/1980\",\n                    \"passengerRace\": \"American Indian\",\n                    \"passengerGender\": \"Female\",\n                    \"passengerEmail\": \"sara.smith@gmail.com\",\n                    \"passengerPhone1\": \"111-111-1111 x111__\",\n                    \"passengerPhone2\": \"\",\n                    \"passengerInjured\": \"Yes\",\n                    \"passengerInjuryType\": \"Blunt Trauma\",\n                    \"passengerInjurySeverity\": \"Non-Incapacitating\",\n                    \"passengerHowInjuryOccurred\": \"\",\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\n                    \"passengerMedicalTreatmentReceivedBy\": \"A Doctor\",\n                    \"passengerTransported\": \"Yes\",\n                    \"passengerTransportedBy\": \"EMS\",\n                    \"passengerTransportedTo\": \"A Hospital\",\n                    \"passengerTransportedTime\": \"12:12:00\",\n                    \"passengerInjuryPhotos\": \"\",\n                    \"passengerInjuryPhotosTakenBy\": \"\",\n                    \"nonEditable\": false,\n                    \"woreSeatbelt\": \"\",\n                    \"passengerArrested\": \"Yes\",\n                    \"passengerArrestCharge\": \"815.06 - Offenses against computer users.\",\n                    \"passengerArrestedForFelony\": \"\",\n                    \"primaryReferenceId\": null,\n                    \"pointsOfContact\": [\n                        {\n                            \"pointOfContactId\": 8,\n                            \"passengerId\": 12,\n                            \"pointType\": \"Upper Chest\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false\n                        },\n                        {\n                            \"pointOfContactId\": 9,\n                            \"passengerId\": 12,\n                            \"pointType\": \"Palm (left)\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false\n                        },\n                        {\n                            \"pointOfContactId\": 10,\n                            \"passengerId\": 12,\n                            \"pointType\": \"Face\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false\n                        }\n                    ],\n                    \"chargeClassifications\": [\n                        {\n                            \"chargeClassifcationId\": 3,\n                            \"passengerId\": 12,\n                            \"charge\": \"815.06 - Offenses against computer users.\",\n                            \"chargeClasification1\": true,\n                            \"chargeClasification2\": false,\n                            \"chargeClasification3\": false,\n                            \"chargeClasification4\": false,\n                            \"chargeClasification5\": false,\n                            \"chargeClasification6\": \"Other\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T12:38:47.4364853\",\n                            \"createdDate\": \"2022-04-01T12:37:20.717403\"\n                        }\n                    ],\n                    \"modifiedDate\": \"2022-04-01T12:38:47.4345779\",\n                    \"createdDate\": \"2022-04-01T12:37:20.7173949\"\n                }\n            ],\n            \"driverChargeClassification\": [\n                {\n                    \"chargeClassificationId\": 3,\n                    \"driverId\": 1046,\n                    \"charge\": \"28-1911 Failure to yield\",\n                    \"chargeClasification1\": true,\n                    \"chargeClasification2\": false,\n                    \"chargeClasification3\": false,\n                    \"chargeClasification4\": false,\n                    \"chargeClasification5\": false,\n                    \"chargeClasification6\": \"\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T12:38:47.4389181\",\n                    \"createdDate\": \"2022-04-01T12:37:20.7173743\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T12:38:47.4321426\",\n            \"createdDate\": \"2022-04-01T12:37:20.7173588\"\n        }\n    ],\n    \"narratives\": [\n        {\n            \"narrativeId\": 1050,\n            \"incidentId\": 1059,\n            \"narrative\": \"Something of interest happened today.\",\n            \"nonEditable\": false,\n            \"modifiedDate\": \"2022-04-01T12:38:47.4443795\",\n            \"createdDate\": \"2022-04-01T12:37:20.7174826\"\n        }\n    ],\n    \"properties\": [\n        {\n            \"propertyId\": 1020,\n            \"incidentId\": 1059,\n            \"propertyType\": \"Clothing\",\n            \"propertyStatus\": \"\",\n            \"estimatedDamage\": \"<$100\",\n            \"actualDamage\": \"\",\n            \"ownerFirstName\": \"John\",\n            \"ownerMiddleName\": \"Jason\",\n            \"ownerLastName\": \"Smith\",\n            \"ownerAddress\": \"1234 Main Street\",\n            \"ownerCity\": \"Jacksonville\",\n            \"ownerState\": \"FL\",\n            \"ownerEmail\": \"john.smith@gmail.com\",\n            \"ownerPhone1\": \"111-111-1111 x111__\",\n            \"ownerPhone2\": \"222-222-2222 x222__\",\n            \"ownerRace\": \"Black\",\n            \"ownerGender\": \"Male\",\n            \"ownerDateOfBirth\": \"03/01/1980\",\n            \"nonEditable\": false,\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T12:38:47.4398343\",\n            \"createdDate\": \"2022-04-01T12:37:20.7174196\"\n        }\n    ],\n    \"witnesses\": [\n        {\n            \"witnessId\": 27,\n            \"incidentId\": 1059,\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Jason\",\n            \"address\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"email\": \"john.smith@gmail.com\",\n            \"phone1\": \"111-111-1111 x1111_\",\n            \"phone2\": \"\",\n            \"race\": \"White\",\n            \"gender\": \"Male\",\n            \"dateOfBirth\": \"03/01/1980\",\n            \"nonEditable\": false,\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T12:38:47.4437026\",\n            \"createdDate\": \"2022-04-01T12:37:20.7174694\"\n        }\n    ],\n    \"victims\": [\n        {\n            \"victimId\": 21,\n            \"incidentId\": 1059,\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Jason\",\n            \"victimAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"victimEmail\": \"john.smith@gmail.com\",\n            \"victimPhone1\": \"111-111-1111 x1111_\",\n            \"victimPhone2\": \"\",\n            \"race\": \"White\",\n            \"gender\": \"Male\",\n            \"victimDateOfBirth\": \"03/01/1975\",\n            \"victimInjured\": \"Yes\",\n            \"victimInjuryType\": \"Broken Bone\",\n            \"victimInjurySeverity\": \"Non-Incapacitating\",\n            \"victimHowInjuryToVictimOccurred\": \"\",\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\n            \"victimTransported\": \"Yes\",\n            \"victimTransportedBy\": \"The Ambulance\",\n            \"victimTransportedTo\": \"The Hospital\",\n            \"victimTransportedTime\": \"12:12:00\",\n            \"victimInjuryPhotos\": \"No\",\n            \"victimInjuryPhotosTakenBy\": \"\",\n            \"nonEditable\": false,\n            \"victimArrested\": \"Yes\",\n            \"victimArrestCharge\": \"28-211 Reckless driving\",\n            \"victimArrestedForFelony\": \"\",\n            \"primaryReferenceId\": null,\n            \"pointsOfContacts\": [\n                {\n                    \"victimPointOfContactId\": 8,\n                    \"victimId\": 21,\n                    \"pointType\": \"Palm (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T12:38:47.4416606\",\n                    \"createdDate\": \"2022-04-01T12:37:20.7174432\"\n                },\n                {\n                    \"victimPointOfContactId\": 9,\n                    \"victimId\": 21,\n                    \"pointType\": \"Stomach\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T12:38:47.4416636\",\n                    \"createdDate\": \"2022-04-01T12:37:20.717448\"\n                },\n                {\n                    \"victimPointOfContactId\": 10,\n                    \"victimId\": 21,\n                    \"pointType\": \"Glutes\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T12:38:47.4416645\",\n                    \"createdDate\": \"2022-04-01T12:37:20.717449\"\n                }\n            ],\n            \"chargeClassifications\": [\n                {\n                    \"victimChargeClassificationId\": 3,\n                    \"victimId\": 21,\n                    \"charge\": \"28-211 Reckless driving\",\n                    \"chargeClasification1\": false,\n                    \"chargeClasification2\": true,\n                    \"chargeClasification3\": false,\n                    \"chargeClasification4\": false,\n                    \"chargeClasification5\": false,\n                    \"chargeClasification6\": \"Example of Other\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T12:38:47.4426911\",\n                    \"createdDate\": \"2022-04-01T12:37:20.7174515\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T12:38:47.4409787\",\n            \"createdDate\": \"2022-04-01T12:37:20.7174403\"\n        }\n    ],\n    \"reviews\": [],\n    \"reviewFormValues\": [],\n    \"modifiedDate\": \"2022-04-01T12:38:47.4445234\",\n    \"createdDate\": \"2022-04-01T12:37:20.7172653\"\n}"},{"id":"b6c56c7d-9a8c-4d70-b6c2-d13967d8c43f","name":"Case Number Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": 50,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"Editing\",\r\n    \"incidentCaseNumber\": \"MyCaseNumber-000\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"02/14/2022\",\r\n    \"incidentTime\": null,\r\n    \"reportDate\": \"02/09/2022\",\r\n    \"reportTime\": \"12:22:00\",\r\n    \"incidentAddress\": \"2735 Lydia Drive\",\r\n    \"city\": \"Jacksonville\",\r\n    \"state\": \"FL\",\r\n    \"area\": \"\",\r\n    \"district\": \"\",\r\n    \"sector\": \"\",\r\n    \"subsector\": \"\",\r\n    \"supervisorNotified\": \"No\",\r\n    \"supervisorName\": \"\",\r\n    \"supervisorNotifiedTime\": null,\r\n    \"supervisorArrivedTime\": null,\r\n    \"insuranceAdjusterNotified\": \"\",\r\n    \"insuranceAdjusterName\": \"\",\r\n    \"insuranceAdjusterNotifiedTime\": null,\r\n    \"insuranceAdjusterArrivedTime\": null,\r\n    \"evidenceTechnicianNotified\": \"\",\r\n    \"evidenceTechnicianName\": \"\",\r\n    \"evidenceTechnicianNotifiedTime\": null,\r\n    \"evidenceTechnicianArrivedTime\": null,\r\n    \"causeDriver\": \"Failure to stop at stop sign\",\r\n    \"causeRoad\": \"\",\r\n    \"causeWeather\": \"High winds\",\r\n    \"trafficControlWeather\": \"\",\r\n    \"vehicleDefect\": \"\",\r\n    \"roadSystemId\": \"\",\r\n    \"weather\": \"\",\r\n    \"lightingCondition\": \"\",\r\n    \"roadsurfaceCondition\": \"Other\",\r\n    \"roadSurfaceType\": \"\",\r\n    \"roadWayCharacter\": \"\",\r\n    \"trafficCharacter\": \"\",\r\n    \"siteLocationWeather\": \"\",\r\n    \"shoulderType\": \"\",\r\n    \"subsequentEvent\": \"\",\r\n    \"vehicleMovement\": \"\",\r\n    \"pointOfImpact\": \"\",\r\n    \"incidentDocumentAttached\": \"Yes\",\r\n    \"trackingNumber\": \"2022 - 8\",\r\n    \"trackingId\": 8,\r\n    \"trackingYear\": 2022,\r\n    \"subReportNumber\": null,\r\n    \"reportType\": \"\",\r\n    \"routing\": \"\",\r\n    \"deleteComments\": \"\",\r\n    \"involvedDriver\": true,\r\n    \"involvedVictim\": true,\r\n    \"involvedWitness\": true,\r\n    \"involvedProperty\": false,\r\n    \"involvedNarrative\": true,\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": true,\r\n    \"incidentType\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"drivers\": [\r\n        {\r\n            \"driverId\": 1042,\r\n            \"incidentId\": 50,\r\n            \"isOfficer\": \"Yes\",\r\n            \"officerId\": \"0005\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerFirstName\": \"Bradley\",\r\n            \"officerLastName\": \"Bronson\",\r\n            \"officerMiddleName\": \"\",\r\n            \"officerAge\": \"\",\r\n            \"officerOnDuty\": \"\",\r\n            \"officerPermanentAssignment\": \"\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"officerRace\": \"Other\",\r\n            \"officerGender\": \"Male\",\r\n            \"officerDriverLicense\": \"jkljkljjk\",\r\n            \"officerDriverLicenseExpirationDate\": \"\",\r\n            \"officerDriverLicenseState\": \"\",\r\n            \"officerYearsWithAgency\": \"\",\r\n            \"officerTotalYearsInLawEnforcement\": \"\",\r\n            \"officerEducation\": \"\",\r\n            \"operatorFirstName\": \"\",\r\n            \"operatorLastName\": \"\",\r\n            \"operatorMiddleName\": \"\",\r\n            \"operatorAddress\": \"\",\r\n            \"operatorCity\": \"\",\r\n            \"operatorState\": \"\",\r\n            \"operatorRace\": \"\",\r\n            \"operatorGender\": \"\",\r\n            \"operatorEmail\": \"\",\r\n            \"operatorPhone1\": \"\",\r\n            \"operatorPhone2\": \"\",\r\n            \"operatorDob\": \"\",\r\n            \"operatorDriverLicense\": \"\",\r\n            \"operatorDriverLicenseExpirationDate\": \"\",\r\n            \"operatorDriverLicenseState\": \"\",\r\n            \"officerInjured\": \"Yes\",\r\n            \"officerInjuryType\": \"\",\r\n            \"officerInjurySeverity\": \"\",\r\n            \"officerHowInjuryOccurred\": \"\",\r\n            \"officerMedicalTreatmentReceived\": \"\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"\",\r\n            \"officerTransported\": \"\",\r\n            \"officerTransportedBy\": \"\",\r\n            \"officerTransportedTo\": \"\",\r\n            \"officerTransportedTime\": null,\r\n            \"officerInjuryPhotos\": \"\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"unitNumber\": \"\",\r\n            \"markedVehicle\": \"\",\r\n            \"vehicleType\": \"\",\r\n            \"vehicleMake\": \"\",\r\n            \"vehicleModel\": \"\",\r\n            \"vehicleYear\": \"\",\r\n            \"vehicleTag\": \"\",\r\n            \"vehicleState\": \"\",\r\n            \"vehicleDamaged\": \"\",\r\n            \"vehicleDamageType\": \"\",\r\n            \"vehicleDamageAmount\": \"\",\r\n            \"actualDamage\": \"\",\r\n            \"vehicleTowed\": \"\",\r\n            \"towingCompany\": \"\",\r\n            \"vehicleInsurance\": \"\",\r\n            \"policy\": \"\",\r\n            \"optionalField\": \"\",\r\n            \"damageLocation\": \"\",\r\n            \"nonEditable\": false,\r\n            \"vehicleOwner\": \"\",\r\n            \"woreSeatbelt\": \"\",\r\n            \"driverArrested\": \"\",\r\n            \"driverArrestCharge\": \"\",\r\n            \"driverArrestedForFelony\": \"\",\r\n            \"parkedVehicle\": false,\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"driverPointOfContact\": [],\r\n            \"vehiclePointOfContact\": [],\r\n            \"passenger\": [],\r\n            \"driverChargeClassification\": [],\r\n            \"modifiedDate\": \"2022-03-18T15:16:52.1332536\",\r\n            \"createdDate\": \"2022-03-18T15:16:52.1332268\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 1045,\r\n            \"incidentId\": 50,\r\n            \"narrative\": \"This is some narrative I tell you.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-03-18T15:16:52.1578722\",\r\n            \"createdDate\": \"2022-03-18T15:16:52.1578369\"\r\n        }\r\n    ],\r\n    \"properties\": [],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 23,\r\n            \"incidentId\": 50,\r\n            \"firstName\": \"Durand\",\r\n            \"lastName\": \"Peterson\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"2735 Lydia Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"email\": \"peterson.durand@gmail.com\",\r\n            \"phone1\": \"9042381874\",\r\n            \"phone2\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"dateOfBirth\": \"\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-18T15:16:52.1544962\",\r\n            \"createdDate\": \"2022-03-18T15:16:52.1544722\"\r\n        },\r\n        {\r\n            \"witnessId\": 24,\r\n            \"incidentId\": 50,\r\n            \"firstName\": \"Carolyn\",\r\n            \"lastName\": \"Peterson\",\r\n            \"middleName\": \"K\",\r\n            \"address\": \"2789 SAINT JOHNS AVE\",\r\n            \"city\": \"JACKSONVILLE\",\r\n            \"state\": \"FL\",\r\n            \"email\": \"\",\r\n            \"phone1\": \"\",\r\n            \"phone2\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"dateOfBirth\": \"\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-18T15:16:52.1545253\",\r\n            \"createdDate\": \"2022-03-18T15:16:52.1545251\"\r\n        }\r\n    ],\r\n    \"victims\": [\r\n        {\r\n            \"victimId\": 16,\r\n            \"incidentId\": 50,\r\n            \"firstName\": \"Durand\",\r\n            \"lastName\": \"Peterson\",\r\n            \"middleName\": \"\",\r\n            \"victimAddress\": \"2735 Lydia Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"victimEmail\": \"peterson.durand@gmail.com\",\r\n            \"victimPhone1\": \"9042381874\",\r\n            \"victimPhone2\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"victimDateOfBirth\": \"\",\r\n            \"victimInjured\": \"\",\r\n            \"victimInjuryType\": \"\",\r\n            \"victimInjurySeverity\": \"\",\r\n            \"victimHowInjuryToVictimOccurred\": \"\",\r\n            \"victimMedicalTreatmentOfVictim\": \"\",\r\n            \"victimMedicalTreatmentOfVictimBy\": \"\",\r\n            \"victimTransported\": \"\",\r\n            \"victimTransportedBy\": \"\",\r\n            \"victimTransportedTo\": \"\",\r\n            \"victimTransportedTime\": null,\r\n            \"victimInjuryPhotos\": \"\",\r\n            \"victimInjuryPhotosTakenBy\": \"\",\r\n            \"nonEditable\": false,\r\n            \"victimArrested\": \"\",\r\n            \"victimArrestCharge\": \"\",\r\n            \"victimArrestedForFelony\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"pointsOfContacts\": [],\r\n            \"chargeClassifications\": [],\r\n            \"modifiedDate\": \"2022-03-18T15:16:52.1450651\",\r\n            \"createdDate\": \"2022-03-18T15:16:52.1450315\"\r\n        }\r\n    ],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [],\r\n    \"modifiedDate\": \"2022-03-18T15:16:52.111138\",\r\n    \"createdDate\": \"2022-03-18T15:16:52.1110907\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/vdoc"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 19:23:58 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Supplied Incident Case Number doesn't exists!\"\n}"},{"id":"e01ea5c0-f689-4586-9c80-c4b5dcae8626","name":"Incident Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": 150,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"Editing\",\r\n    \"incidentCaseNumber\": \"MyCaseNumber-001\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"02/14/2022\",\r\n    \"incidentTime\": null,\r\n    \"reportDate\": \"02/09/2022\",\r\n    \"reportTime\": \"12:22:00\",\r\n    \"incidentAddress\": \"2735 Lydia Drive\",\r\n    \"city\": \"Jacksonville\",\r\n    \"state\": \"FL\",\r\n    \"area\": \"\",\r\n    \"district\": \"\",\r\n    \"sector\": \"\",\r\n    \"subsector\": \"\",\r\n    \"supervisorNotified\": \"No\",\r\n    \"supervisorName\": \"\",\r\n    \"supervisorNotifiedTime\": null,\r\n    \"supervisorArrivedTime\": null,\r\n    \"insuranceAdjusterNotified\": \"\",\r\n    \"insuranceAdjusterName\": \"\",\r\n    \"insuranceAdjusterNotifiedTime\": null,\r\n    \"insuranceAdjusterArrivedTime\": null,\r\n    \"evidenceTechnicianNotified\": \"\",\r\n    \"evidenceTechnicianName\": \"\",\r\n    \"evidenceTechnicianNotifiedTime\": null,\r\n    \"evidenceTechnicianArrivedTime\": null,\r\n    \"causeDriver\": \"Failure to stop at stop sign\",\r\n    \"causeRoad\": \"\",\r\n    \"causeWeather\": \"High winds\",\r\n    \"trafficControlWeather\": \"\",\r\n    \"vehicleDefect\": \"\",\r\n    \"roadSystemId\": \"\",\r\n    \"weather\": \"\",\r\n    \"lightingCondition\": \"\",\r\n    \"roadsurfaceCondition\": \"Other\",\r\n    \"roadSurfaceType\": \"\",\r\n    \"roadWayCharacter\": \"\",\r\n    \"trafficCharacter\": \"\",\r\n    \"siteLocationWeather\": \"\",\r\n    \"shoulderType\": \"\",\r\n    \"subsequentEvent\": \"\",\r\n    \"vehicleMovement\": \"\",\r\n    \"pointOfImpact\": \"\",\r\n    \"incidentDocumentAttached\": \"Yes\",\r\n    \"trackingNumber\": \"2022 - 8\",\r\n    \"trackingId\": 8,\r\n    \"trackingYear\": 2022,\r\n    \"subReportNumber\": null,\r\n    \"reportType\": \"\",\r\n    \"routing\": \"\",\r\n    \"deleteComments\": \"\",\r\n    \"involvedDriver\": true,\r\n    \"involvedVictim\": true,\r\n    \"involvedWitness\": true,\r\n    \"involvedProperty\": false,\r\n    \"involvedNarrative\": true,\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": true,\r\n    \"incidentType\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"drivers\": [\r\n        {\r\n            \"driverId\": 1042,\r\n            \"incidentId\": 50,\r\n            \"isOfficer\": \"Yes\",\r\n            \"officerId\": \"0005\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerFirstName\": \"Bradley\",\r\n            \"officerLastName\": \"Bronson\",\r\n            \"officerMiddleName\": \"\",\r\n            \"officerAge\": \"\",\r\n            \"officerOnDuty\": \"\",\r\n            \"officerPermanentAssignment\": \"\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"officerRace\": \"Other\",\r\n            \"officerGender\": \"Male\",\r\n            \"officerDriverLicense\": \"jkljkljjk\",\r\n            \"officerDriverLicenseExpirationDate\": \"\",\r\n            \"officerDriverLicenseState\": \"\",\r\n            \"officerYearsWithAgency\": \"\",\r\n            \"officerTotalYearsInLawEnforcement\": \"\",\r\n            \"officerEducation\": \"\",\r\n            \"operatorFirstName\": \"\",\r\n            \"operatorLastName\": \"\",\r\n            \"operatorMiddleName\": \"\",\r\n            \"operatorAddress\": \"\",\r\n            \"operatorCity\": \"\",\r\n            \"operatorState\": \"\",\r\n            \"operatorRace\": \"\",\r\n            \"operatorGender\": \"\",\r\n            \"operatorEmail\": \"\",\r\n            \"operatorPhone1\": \"\",\r\n            \"operatorPhone2\": \"\",\r\n            \"operatorDob\": \"\",\r\n            \"operatorDriverLicense\": \"\",\r\n            \"operatorDriverLicenseExpirationDate\": \"\",\r\n            \"operatorDriverLicenseState\": \"\",\r\n            \"officerInjured\": \"Yes\",\r\n            \"officerInjuryType\": \"\",\r\n            \"officerInjurySeverity\": \"\",\r\n            \"officerHowInjuryOccurred\": \"\",\r\n            \"officerMedicalTreatmentReceived\": \"\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"\",\r\n            \"officerTransported\": \"\",\r\n            \"officerTransportedBy\": \"\",\r\n            \"officerTransportedTo\": \"\",\r\n            \"officerTransportedTime\": null,\r\n            \"officerInjuryPhotos\": \"\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"unitNumber\": \"\",\r\n            \"markedVehicle\": \"\",\r\n            \"vehicleType\": \"\",\r\n            \"vehicleMake\": \"\",\r\n            \"vehicleModel\": \"\",\r\n            \"vehicleYear\": \"\",\r\n            \"vehicleTag\": \"\",\r\n            \"vehicleState\": \"\",\r\n            \"vehicleDamaged\": \"\",\r\n            \"vehicleDamageType\": \"\",\r\n            \"vehicleDamageAmount\": \"\",\r\n            \"actualDamage\": \"\",\r\n            \"vehicleTowed\": \"\",\r\n            \"towingCompany\": \"\",\r\n            \"vehicleInsurance\": \"\",\r\n            \"policy\": \"\",\r\n            \"optionalField\": \"\",\r\n            \"damageLocation\": \"\",\r\n            \"nonEditable\": false,\r\n            \"vehicleOwner\": \"\",\r\n            \"woreSeatbelt\": \"\",\r\n            \"driverArrested\": \"\",\r\n            \"driverArrestCharge\": \"\",\r\n            \"driverArrestedForFelony\": \"\",\r\n            \"parkedVehicle\": false,\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"driverPointOfContact\": [],\r\n            \"vehiclePointOfContact\": [],\r\n            \"passenger\": [],\r\n            \"driverChargeClassification\": [],\r\n            \"modifiedDate\": \"2022-03-18T15:16:52.1332536\",\r\n            \"createdDate\": \"2022-03-18T15:16:52.1332268\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 1045,\r\n            \"incidentId\": 50,\r\n            \"narrative\": \"This is some narrative I tell you.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-03-18T15:16:52.1578722\",\r\n            \"createdDate\": \"2022-03-18T15:16:52.1578369\"\r\n        }\r\n    ],\r\n    \"properties\": [],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 23,\r\n            \"incidentId\": 50,\r\n            \"firstName\": \"Durand\",\r\n            \"lastName\": \"Peterson\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"2735 Lydia Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"email\": \"peterson.durand@gmail.com\",\r\n            \"phone1\": \"9042381874\",\r\n            \"phone2\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"dateOfBirth\": \"\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-18T15:16:52.1544962\",\r\n            \"createdDate\": \"2022-03-18T15:16:52.1544722\"\r\n        },\r\n        {\r\n            \"witnessId\": 24,\r\n            \"incidentId\": 50,\r\n            \"firstName\": \"Carolyn\",\r\n            \"lastName\": \"Peterson\",\r\n            \"middleName\": \"K\",\r\n            \"address\": \"2789 SAINT JOHNS AVE\",\r\n            \"city\": \"JACKSONVILLE\",\r\n            \"state\": \"FL\",\r\n            \"email\": \"\",\r\n            \"phone1\": \"\",\r\n            \"phone2\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"dateOfBirth\": \"\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-18T15:16:52.1545253\",\r\n            \"createdDate\": \"2022-03-18T15:16:52.1545251\"\r\n        }\r\n    ],\r\n    \"victims\": [\r\n        {\r\n            \"victimId\": 16,\r\n            \"incidentId\": 50,\r\n            \"firstName\": \"Durand\",\r\n            \"lastName\": \"Peterson\",\r\n            \"middleName\": \"\",\r\n            \"victimAddress\": \"2735 Lydia Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"victimEmail\": \"peterson.durand@gmail.com\",\r\n            \"victimPhone1\": \"9042381874\",\r\n            \"victimPhone2\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"victimDateOfBirth\": \"\",\r\n            \"victimInjured\": \"\",\r\n            \"victimInjuryType\": \"\",\r\n            \"victimInjurySeverity\": \"\",\r\n            \"victimHowInjuryToVictimOccurred\": \"\",\r\n            \"victimMedicalTreatmentOfVictim\": \"\",\r\n            \"victimMedicalTreatmentOfVictimBy\": \"\",\r\n            \"victimTransported\": \"\",\r\n            \"victimTransportedBy\": \"\",\r\n            \"victimTransportedTo\": \"\",\r\n            \"victimTransportedTime\": null,\r\n            \"victimInjuryPhotos\": \"\",\r\n            \"victimInjuryPhotosTakenBy\": \"\",\r\n            \"nonEditable\": false,\r\n            \"victimArrested\": \"\",\r\n            \"victimArrestCharge\": \"\",\r\n            \"victimArrestedForFelony\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"pointsOfContacts\": [],\r\n            \"chargeClassifications\": [],\r\n            \"modifiedDate\": \"2022-03-18T15:16:52.1450651\",\r\n            \"createdDate\": \"2022-03-18T15:16:52.1450315\"\r\n        }\r\n    ],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [],\r\n    \"modifiedDate\": \"2022-03-18T15:16:52.111138\",\r\n    \"createdDate\": \"2022-03-18T15:16:52.1110907\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/vdoc"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 19:24:53 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Instance not found for the supplied id!\"\n}"},{"id":"5f6e6b8f-98c3-40e7-a51f-401df8e398b2","name":"Record Locked","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": 2,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"Editing\",\r\n    \"incidentCaseNumber\": \"MyCaseNumber-001\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"02/14/2022\",\r\n    \"incidentTime\": null,\r\n    \"reportDate\": \"02/09/2022\",\r\n    \"reportTime\": \"12:22:00\",\r\n    \"incidentAddress\": \"2735 Lydia Drive\",\r\n    \"city\": \"Jacksonville\",\r\n    \"state\": \"FL\",\r\n    \"area\": \"\",\r\n    \"district\": \"\",\r\n    \"sector\": \"\",\r\n    \"subsector\": \"\",\r\n    \"supervisorNotified\": \"No\",\r\n    \"supervisorName\": \"\",\r\n    \"supervisorNotifiedTime\": null,\r\n    \"supervisorArrivedTime\": null,\r\n    \"insuranceAdjusterNotified\": \"\",\r\n    \"insuranceAdjusterName\": \"\",\r\n    \"insuranceAdjusterNotifiedTime\": null,\r\n    \"insuranceAdjusterArrivedTime\": null,\r\n    \"evidenceTechnicianNotified\": \"\",\r\n    \"evidenceTechnicianName\": \"\",\r\n    \"evidenceTechnicianNotifiedTime\": null,\r\n    \"evidenceTechnicianArrivedTime\": null,\r\n    \"causeDriver\": \"Failure to stop at stop sign\",\r\n    \"causeRoad\": \"\",\r\n    \"causeWeather\": \"High winds\",\r\n    \"trafficControlWeather\": \"\",\r\n    \"vehicleDefect\": \"\",\r\n    \"roadSystemId\": \"\",\r\n    \"weather\": \"\",\r\n    \"lightingCondition\": \"\",\r\n    \"roadsurfaceCondition\": \"Other\",\r\n    \"roadSurfaceType\": \"\",\r\n    \"roadWayCharacter\": \"\",\r\n    \"trafficCharacter\": \"\",\r\n    \"siteLocationWeather\": \"\",\r\n    \"shoulderType\": \"\",\r\n    \"subsequentEvent\": \"\",\r\n    \"vehicleMovement\": \"\",\r\n    \"pointOfImpact\": \"\",\r\n    \"incidentDocumentAttached\": \"Yes\",\r\n    \"trackingNumber\": \"2022 - 8\",\r\n    \"trackingId\": 8,\r\n    \"trackingYear\": 2022,\r\n    \"subReportNumber\": null,\r\n    \"reportType\": \"\",\r\n    \"routing\": \"\",\r\n    \"deleteComments\": \"\",\r\n    \"involvedDriver\": true,\r\n    \"involvedVictim\": true,\r\n    \"involvedWitness\": true,\r\n    \"involvedProperty\": false,\r\n    \"involvedNarrative\": true,\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": true,\r\n    \"incidentType\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"drivers\": [\r\n        {\r\n            \"driverId\": 1042,\r\n            \"incidentId\": 50,\r\n            \"isOfficer\": \"Yes\",\r\n            \"officerId\": \"0005\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerFirstName\": \"Bradley\",\r\n            \"officerLastName\": \"Bronson\",\r\n            \"officerMiddleName\": \"\",\r\n            \"officerAge\": \"\",\r\n            \"officerOnDuty\": \"\",\r\n            \"officerPermanentAssignment\": \"\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"officerRace\": \"Other\",\r\n            \"officerGender\": \"Male\",\r\n            \"officerDriverLicense\": \"jkljkljjk\",\r\n            \"officerDriverLicenseExpirationDate\": \"\",\r\n            \"officerDriverLicenseState\": \"\",\r\n            \"officerYearsWithAgency\": \"\",\r\n            \"officerTotalYearsInLawEnforcement\": \"\",\r\n            \"officerEducation\": \"\",\r\n            \"operatorFirstName\": \"\",\r\n            \"operatorLastName\": \"\",\r\n            \"operatorMiddleName\": \"\",\r\n            \"operatorAddress\": \"\",\r\n            \"operatorCity\": \"\",\r\n            \"operatorState\": \"\",\r\n            \"operatorRace\": \"\",\r\n            \"operatorGender\": \"\",\r\n            \"operatorEmail\": \"\",\r\n            \"operatorPhone1\": \"\",\r\n            \"operatorPhone2\": \"\",\r\n            \"operatorDob\": \"\",\r\n            \"operatorDriverLicense\": \"\",\r\n            \"operatorDriverLicenseExpirationDate\": \"\",\r\n            \"operatorDriverLicenseState\": \"\",\r\n            \"officerInjured\": \"Yes\",\r\n            \"officerInjuryType\": \"\",\r\n            \"officerInjurySeverity\": \"\",\r\n            \"officerHowInjuryOccurred\": \"\",\r\n            \"officerMedicalTreatmentReceived\": \"\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"\",\r\n            \"officerTransported\": \"\",\r\n            \"officerTransportedBy\": \"\",\r\n            \"officerTransportedTo\": \"\",\r\n            \"officerTransportedTime\": null,\r\n            \"officerInjuryPhotos\": \"\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"unitNumber\": \"\",\r\n            \"markedVehicle\": \"\",\r\n            \"vehicleType\": \"\",\r\n            \"vehicleMake\": \"\",\r\n            \"vehicleModel\": \"\",\r\n            \"vehicleYear\": \"\",\r\n            \"vehicleTag\": \"\",\r\n            \"vehicleState\": \"\",\r\n            \"vehicleDamaged\": \"\",\r\n            \"vehicleDamageType\": \"\",\r\n            \"vehicleDamageAmount\": \"\",\r\n            \"actualDamage\": \"\",\r\n            \"vehicleTowed\": \"\",\r\n            \"towingCompany\": \"\",\r\n            \"vehicleInsurance\": \"\",\r\n            \"policy\": \"\",\r\n            \"optionalField\": \"\",\r\n            \"damageLocation\": \"\",\r\n            \"nonEditable\": false,\r\n            \"vehicleOwner\": \"\",\r\n            \"woreSeatbelt\": \"\",\r\n            \"driverArrested\": \"\",\r\n            \"driverArrestCharge\": \"\",\r\n            \"driverArrestedForFelony\": \"\",\r\n            \"parkedVehicle\": false,\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"driverPointOfContact\": [],\r\n            \"vehiclePointOfContact\": [],\r\n            \"passenger\": [],\r\n            \"driverChargeClassification\": [],\r\n            \"modifiedDate\": \"2022-03-18T15:16:52.1332536\",\r\n            \"createdDate\": \"2022-03-18T15:16:52.1332268\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 1045,\r\n            \"incidentId\": 50,\r\n            \"narrative\": \"This is some narrative I tell you.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-03-18T15:16:52.1578722\",\r\n            \"createdDate\": \"2022-03-18T15:16:52.1578369\"\r\n        }\r\n    ],\r\n    \"properties\": [],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 23,\r\n            \"incidentId\": 50,\r\n            \"firstName\": \"Durand\",\r\n            \"lastName\": \"Peterson\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"2735 Lydia Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"email\": \"peterson.durand@gmail.com\",\r\n            \"phone1\": \"9042381874\",\r\n            \"phone2\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"dateOfBirth\": \"\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-18T15:16:52.1544962\",\r\n            \"createdDate\": \"2022-03-18T15:16:52.1544722\"\r\n        },\r\n        {\r\n            \"witnessId\": 24,\r\n            \"incidentId\": 50,\r\n            \"firstName\": \"Carolyn\",\r\n            \"lastName\": \"Peterson\",\r\n            \"middleName\": \"K\",\r\n            \"address\": \"2789 SAINT JOHNS AVE\",\r\n            \"city\": \"JACKSONVILLE\",\r\n            \"state\": \"FL\",\r\n            \"email\": \"\",\r\n            \"phone1\": \"\",\r\n            \"phone2\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"dateOfBirth\": \"\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-18T15:16:52.1545253\",\r\n            \"createdDate\": \"2022-03-18T15:16:52.1545251\"\r\n        }\r\n    ],\r\n    \"victims\": [\r\n        {\r\n            \"victimId\": 16,\r\n            \"incidentId\": 50,\r\n            \"firstName\": \"Durand\",\r\n            \"lastName\": \"Peterson\",\r\n            \"middleName\": \"\",\r\n            \"victimAddress\": \"2735 Lydia Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"victimEmail\": \"peterson.durand@gmail.com\",\r\n            \"victimPhone1\": \"9042381874\",\r\n            \"victimPhone2\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"victimDateOfBirth\": \"\",\r\n            \"victimInjured\": \"\",\r\n            \"victimInjuryType\": \"\",\r\n            \"victimInjurySeverity\": \"\",\r\n            \"victimHowInjuryToVictimOccurred\": \"\",\r\n            \"victimMedicalTreatmentOfVictim\": \"\",\r\n            \"victimMedicalTreatmentOfVictimBy\": \"\",\r\n            \"victimTransported\": \"\",\r\n            \"victimTransportedBy\": \"\",\r\n            \"victimTransportedTo\": \"\",\r\n            \"victimTransportedTime\": null,\r\n            \"victimInjuryPhotos\": \"\",\r\n            \"victimInjuryPhotosTakenBy\": \"\",\r\n            \"nonEditable\": false,\r\n            \"victimArrested\": \"\",\r\n            \"victimArrestCharge\": \"\",\r\n            \"victimArrestedForFelony\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"pointsOfContacts\": [],\r\n            \"chargeClassifications\": [],\r\n            \"modifiedDate\": \"2022-03-18T15:16:52.1450651\",\r\n            \"createdDate\": \"2022-03-18T15:16:52.1450315\"\r\n        }\r\n    ],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [],\r\n    \"modifiedDate\": \"2022-03-18T15:16:52.111138\",\r\n    \"createdDate\": \"2022-03-18T15:16:52.1110907\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/vdoc"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 25 Mar 2022 12:47:24 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"This report is locked. You cannot make changes unless it is unlocked. Please check with your administrator to verify.\"\n}"}],"_postman_id":"69c9219f-a180-47af-a690-37c67d373b04"}],"id":"0bb548f8-10cb-42e1-aca3-3f448a1e62aa","description":"<p>Through the LEFTA Systems VDOC API, you can interact with the SHIELD Portal's Vehicle Damage application to interact with damage incidents and its related entities.</p>\n","event":[{"listen":"prerequest","script":{"id":"fa4d9c67-2763-4f36-a512-0f79d1d4a4c3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"81e81ad8-7b12-46d9-a0fe-852980bc36b9","type":"text/javascript","exec":[""]}}],"_postman_id":"0bb548f8-10cb-42e1-aca3-3f448a1e62aa","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}}},{"name":"VIPR : Vehicle Pursuit","item":[{"name":"Get a List of Vehicle Pursuits","id":"ceaa5b6a-86d7-4218-9b50-ec1829e7f6a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/vipr?start_date=10-20-2012&end_dat=03-15-2022","description":"<p>Get a list of vehicle pursuit incidents based of the supplied filter criteria. None of the child entities will be populated on search results.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","vipr"],"host":["{{BaseUri}}"],"query":[{"description":{"content":"<p>Filter results by pursuitDate to include only records after this date.</p>\n","type":"text/plain"},"key":"start_date","value":"10-20-2012"},{"description":{"content":"<p>Filter results by pursuitDate to include only records before this date.</p>\n","type":"text/plain"},"key":"end_dat","value":"03-15-2022"}],"variable":[]}},"response":[{"id":"a635750c-284d-4e62-8593-05c4699fef9e","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/vipr?start_date=10-20-2012&end_date=03-15-2022","host":["{{BaseUri}}"],"path":["api","vipr"],"query":[{"key":"start_date","value":"10-20-2012","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2022","description":"Filter results to include only records before this date."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmlwcg==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 19:31:39 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"incidentId\": 1,\n        \"creator\": \"Smith, Matt\",\n        \"reviewer\": \"\",\n        \"creatorId\": 7931,\n        \"status\": \"Completed\",\n        \"incidentCaseNumber\": \"8675309.A18\",\n        \"relatedIncidentCase\": \"\",\n        \"pursuitDate\": \"09/09/2019\",\n        \"pursuitTime\": \"23:05:00\",\n        \"reportDate\": \"11/03/2019\",\n        \"reportTime\": \"23:55:00\",\n        \"supervisorMonitoringRank\": \"\",\n        \"supervisorMonitoringName\": \"Matt Smith\",\n        \"supervisorMonitoringId\": \"3000\",\n        \"supervisorRespondingRank\": \"Patrol\",\n        \"supervisorRespondingName\": \"Janen Smith\",\n        \"supervisorRespondingId\": \"0132\",\n        \"pursuitReason\": \"Felony Criminal Complaint\",\n        \"pursuitDispatched\": \"On-View\",\n        \"pursuitStartTime\": \"23:05:00\",\n        \"pursuitStartArea1\": \"District 712\",\n        \"pursuitStartArea2\": \"\",\n        \"pursuitStartArea3\": \"\",\n        \"pursuitEndTime\": \"23:15:00\",\n        \"pursuitEndArea1\": \"District 712\",\n        \"pursuitEndArea2\": \"\",\n        \"pursuitEndArea3\": \"\",\n        \"pursuitDuration\": \"<5 Minutes\",\n        \"pursuitHighestSpeed\": \"50-80 mph\",\n        \"trafficPattern\": \"Regulated Pedestrian Zone (School, etc.)\",\n        \"weatherConditions\": \"Clear Sky\",\n        \"pursuitDistance\": \"1-5 Miles\",\n        \"howPursuitTerminated\": \"Suspect Stopped\",\n        \"pursuitTerminationReason\": \"Suspect Captured\",\n        \"terminationTactics\": \"Other Tactic\",\n        \"incidentDocumentAttached\": \"Yes\",\n        \"resourceInvolved\": \"None\",\n        \"pursuitRoute\": \"Began on Washington Street heading South from 14th.  Turning on 23rd Street we drove for two miles at speeds no more than 80 mph in a residential zone.\",\n        \"pursuitJustification\": \"License plate was altered and vehicle matched description of being involved in home burglaries.\",\n        \"pursuitResultCrash\": \"Yes\",\n        \"trackingNumber\": \"2019 - 5\",\n        \"trackingId\": 5,\n        \"trackingYear\": 2019,\n        \"subReportNumber\": null,\n        \"reportType\": \"\",\n        \"routing\": \"Command Staff|||Review Board\",\n        \"deleteComments\": \"\",\n        \"involvedOfficer\": true,\n        \"involvedSuspect\": true,\n        \"involvedVictim\": false,\n        \"involvedWitness\": false,\n        \"involvedProperty\": true,\n        \"involvedNarrative\": true,\n        \"nonEditable\": false,\n        \"sealed\": false,\n        \"involvedSupervisorReview\": null,\n        \"sectionCode\": \"\",\n        \"agency\": \"Sunnyville\",\n        \"optional1\": \"\",\n        \"optional2\": \"\",\n        \"optional3\": \"\",\n        \"optional4\": \"\",\n        \"optional5\": \"\",\n        \"optional6\": \"\",\n        \"optional7\": \"\",\n        \"optional8\": \"\",\n        \"optional9\": \"\",\n        \"optional10\": \"\",\n        \"optional11\": \"\",\n        \"optional12\": \"\",\n        \"influenceFactors\": \"\",\n        \"primaryReferenceId\": null,\n        \"narratives\": [],\n        \"officers\": [],\n        \"properties\": [],\n        \"suspects\": [],\n        \"victims\": [],\n        \"witnesses\": [],\n        \"reviews\": [],\n        \"reviewFormValues\": [],\n        \"modifiedDate\": \"2019-11-03T15:19:06.3488178\",\n        \"createdDate\": \"2019-11-03T14:48:24.4621699\"\n    },\n    {\n        \"incidentId\": 2,\n        \"creator\": \"Smith, Kimberly\",\n        \"reviewer\": \"\",\n        \"creatorId\": 50132,\n        \"status\": \"Completed\",\n        \"incidentCaseNumber\": \"CR09445\",\n        \"relatedIncidentCase\": \"\",\n        \"pursuitDate\": \"02/08/2019\",\n        \"pursuitTime\": \"11:30:00\",\n        \"reportDate\": \"02/08/2019\",\n        \"reportTime\": \"15:40:00\",\n        \"supervisorMonitoringRank\": \"\",\n        \"supervisorMonitoringName\": \"Matt Smith\",\n        \"supervisorMonitoringId\": \"3000\",\n        \"supervisorRespondingRank\": \"Patrol\",\n        \"supervisorRespondingName\": \"Kenny Leonard\",\n        \"supervisorRespondingId\": \"0127\",\n        \"pursuitReason\": \"Pursuit From Other Agency\",\n        \"pursuitDispatched\": \"\",\n        \"pursuitStartTime\": \"11:30:00\",\n        \"pursuitStartArea1\": \"District 731\",\n        \"pursuitStartArea2\": \"\",\n        \"pursuitStartArea3\": \"\",\n        \"pursuitEndTime\": \"12:15:00\",\n        \"pursuitEndArea1\": \"Other Ending Point\",\n        \"pursuitEndArea2\": \"\",\n        \"pursuitEndArea3\": \"\",\n        \"pursuitDuration\": \"Other Time Amount\",\n        \"pursuitHighestSpeed\": \"80-100 mph\",\n        \"trafficPattern\": \"Moderate\",\n        \"weatherConditions\": \"Raining\",\n        \"pursuitDistance\": \"15-20 Miles\",\n        \"howPursuitTerminated\": \"Command\",\n        \"pursuitTerminationReason\": \"Terminated by Supervisor/Command\",\n        \"terminationTactics\": \"\",\n        \"incidentDocumentAttached\": \"No\",\n        \"resourceInvolved\": \"Helicopter\",\n        \"pursuitRoute\": \"Eget justo neque nec, proin nisl varius. Sit est sem phasellus quisque nec, ultrices semper magna. Vehicula viverra dolor at, orci felis velit etiam ultrices quia per, sem justo suspendisse cras, sapien euismod. Scelerisque elit turpis venenatis ligula fusce. Venenatis amet vitae donec neque molestie eleifend, vel malesuada, scelerisque sem magna risus mi in suspendisse. Nunc praesent adipiscing elementum, nascetur nibh.\",\n        \"pursuitJustification\": \"Eget justo neque nec, proin nisl varius. Sit est sem phasellus quisque nec, ultrices semper magna. Vehicula viverra dolor at, orci felis velit etiam ultrices quia per, sem justo suspendisse cras, sapien euismod. Scelerisque elit turpis venenatis ligula fusce. Venenatis amet vitae donec neque molestie eleifend, vel malesuada, scelerisque sem magna risus mi in suspendisse. Nunc praesent adipiscing elementum, nascetur nibh. Eget justo neque nec, proin nisl varius. Sit est sem phasellus quisque nec, ultrices semper magna. Vehicula viverra dolor at, orci felis velit etiam ultrices quia per, sem justo suspendisse cras, sapien euismod. Scelerisque elit turpis venenatis ligula fusce. Venenatis amet vitae donec neque molestie eleifend, vel malesuada, scelerisque sem magna risus mi in suspendisse. Nunc praesent adipiscing elementum, nascetur nibh.\",\n        \"pursuitResultCrash\": \"Yes\",\n        \"trackingNumber\": \"2019 - 6\",\n        \"trackingId\": 6,\n        \"trackingYear\": 2019,\n        \"subReportNumber\": null,\n        \"reportType\": \"\",\n        \"routing\": \"Command Staff|||Review Board\",\n        \"deleteComments\": \"\",\n        \"involvedOfficer\": true,\n        \"involvedSuspect\": true,\n        \"involvedVictim\": false,\n        \"involvedWitness\": true,\n        \"involvedProperty\": true,\n        \"involvedNarrative\": true,\n        \"nonEditable\": false,\n        \"sealed\": false,\n        \"involvedSupervisorReview\": null,\n        \"sectionCode\": \"\",\n        \"agency\": \"Anytown\",\n        \"optional1\": \"\",\n        \"optional2\": \"\",\n        \"optional3\": \"\",\n        \"optional4\": \"\",\n        \"optional5\": \"\",\n        \"optional6\": \"\",\n        \"optional7\": \"\",\n        \"optional8\": \"\",\n        \"optional9\": \"\",\n        \"optional10\": \"\",\n        \"optional11\": \"\",\n        \"optional12\": \"\",\n        \"influenceFactors\": \"\",\n        \"primaryReferenceId\": null,\n        \"narratives\": [],\n        \"officers\": [],\n        \"properties\": [],\n        \"suspects\": [],\n        \"victims\": [],\n        \"witnesses\": [],\n        \"reviews\": [],\n        \"reviewFormValues\": [],\n        \"modifiedDate\": \"2019-11-05T13:20:11.2447579\",\n        \"createdDate\": \"2019-11-03T15:40:24.215901\"\n    }\n]"},{"id":"d55c02c2-6310-4182-bec5-6c2468645f8b","name":"Invalid End Date","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"{{BaseUri}}/api/vipr?start_date=10-20-2005&end_date=03-15-2025","host":["{{BaseUri}}"],"path":["api","vipr"],"query":[{"key":"start_date","value":"10-20-2005","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2025","description":"Filter results to include only records before this date."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 18:58:47 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"End date cannot be greater than the current date!\"\n}"},{"id":"7f375cad-c70f-401a-8f5f-103e0c8b2347","name":"Invalid Start Date","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/vipr?start_date=10-20-2001&end_date=03-15-2022","host":["{{BaseUri}}"],"path":["api","vipr"],"query":[{"key":"start_date","value":"10-20-2001","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2022","description":"Filter results to include only records before this date."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 18:59:58 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"Start date cannot be more than 20 years prior to the current date!\"\n}"}],"_postman_id":"ceaa5b6a-86d7-4218-9b50-ec1829e7f6a8"},{"name":"Get Vehicle Pursuit Incident","id":"8b3959fd-e12e-4c4c-90de-e592960bbf80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/vipr/:incidentId","description":"<p>Gets a specific vehicle pursuit incident with relationships based of the supplied Id. An error will be thrown if the supplied Id does not match any existing records. It is recommended you get the Id from the search API method.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","vipr",":incidentId"],"host":["{{BaseUri}}"],"query":[],"variable":[{"description":{"content":"<p>The record Id of the desired Incident.</p>\n","type":"text/plain"},"type":"any","value":"3043","key":"incidentId"}]}},"response":[{"id":"c0b33715-9343-4e63-b323-367aed87fe2e","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/vipr/:incidentId","host":["{{BaseUri}}"],"path":["api","vipr",":incidentId"],"variable":[{"key":"incidentId","value":"3043","description":"The record Id of the desired Incident."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmlwclwzMDQz?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Apr 2022 16:55:02 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"incidentId\": 3043,\n    \"creator\": \"\",\n    \"reviewer\": \"\",\n    \"creatorId\": 95474,\n    \"status\": \"InReview\",\n    \"incidentCaseNumber\": \"TestCase-001\",\n    \"relatedIncidentCase\": \"\",\n    \"pursuitDate\": \"03/01/2022\",\n    \"pursuitTime\": \"12:12:00\",\n    \"reportDate\": \"03/29/2022\",\n    \"reportTime\": \"15:11:00\",\n    \"supervisorMonitoringRank\": \"Patrol\",\n    \"supervisorMonitoringName\": \"John Smith\",\n    \"supervisorMonitoringId\": \"090\",\n    \"supervisorRespondingRank\": \"Officer\",\n    \"supervisorRespondingName\": \"Jane Smith\",\n    \"supervisorRespondingId\": \"4322\",\n    \"pursuitReason\": \"On View Violation\",\n    \"pursuitDispatched\": \"On-View\",\n    \"pursuitStartTime\": \"12:12:00\",\n    \"pursuitStartArea1\": \"District 721\",\n    \"pursuitStartArea2\": \"\",\n    \"pursuitStartArea3\": \"\",\n    \"pursuitEndTime\": \"12:56:00\",\n    \"pursuitEndArea1\": \"District 741\",\n    \"pursuitEndArea2\": \"\",\n    \"pursuitEndArea3\": \"\",\n    \"pursuitDuration\": \"44 Minutes\",\n    \"pursuitHighestSpeed\": \"50-80 mph\",\n    \"trafficPattern\": \"Moderate\",\n    \"weatherConditions\": \"Ice\",\n    \"pursuitDistance\": \"45\",\n    \"howPursuitTerminated\": \"Cruiser Damaged\",\n    \"pursuitTerminationReason\": \"Pursuing Officer Terminated\",\n    \"terminationTactics\": \"Pit Maneuver \",\n    \"incidentDocumentAttached\": \"\",\n    \"resourceInvolved\": \"K-9\",\n    \"pursuitRoute\": \"Up the road, then over to the left.\",\n    \"pursuitJustification\": \"Robbery\",\n    \"pursuitResultCrash\": \"Yes\",\n    \"trackingNumber\": \"2022 - 10\",\n    \"trackingId\": 10,\n    \"trackingYear\": 2022,\n    \"subReportNumber\": null,\n    \"reportType\": \"\",\n    \"routing\": \"Command Staff\",\n    \"deleteComments\": \"\",\n    \"involvedOfficer\": true,\n    \"involvedSuspect\": true,\n    \"involvedVictim\": true,\n    \"involvedWitness\": true,\n    \"involvedProperty\": true,\n    \"involvedNarrative\": true,\n    \"nonEditable\": false,\n    \"sealed\": false,\n    \"involvedSupervisorReview\": true,\n    \"sectionCode\": \"\",\n    \"agency\": \"Highway Patrol\",\n    \"optional1\": \"Far Point Police Department\",\n    \"optional2\": \"\",\n    \"optional3\": \"\",\n    \"optional4\": \"\",\n    \"optional5\": \"\",\n    \"optional6\": \"\",\n    \"optional7\": \"\",\n    \"optional8\": \"\",\n    \"optional9\": \"\",\n    \"optional10\": \"\",\n    \"optional11\": \"\",\n    \"optional12\": \"\",\n    \"influenceFactors\": \"\",\n    \"primaryReferenceId\": null,\n    \"narratives\": [\n        {\n            \"narrativeId\": 3042,\n            \"incidentId\": 3043,\n            \"narrative\": \"This was one really hot pursuit.  Of all the pursuits I've been on, this was one of them.\",\n            \"nonEditable\": false,\n            \"modifiedDate\": \"2022-03-30T09:53:53.4570287\",\n            \"createdDate\": \"2022-03-29T15:11:08.7532824\"\n        }\n    ],\n    \"officers\": [\n        {\n            \"incidentOfficerId\": 1027,\n            \"incidentId\": 3043,\n            \"officerId\": \"B123456\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Simon\",\n            \"officerPrimary\": \"Yes\",\n            \"officerOnDuty\": \"Yes\",\n            \"officerPermanentAssignment\": \"North Sector\",\n            \"officerInUniform\": \"Yes\",\n            \"race\": \"Hispanic/Latino\",\n            \"gender\": \"Male\",\n            \"age\": \"35\",\n            \"driverLicense\": \"FL123456\",\n            \"driverLicenseExpirationDate\": \"03/07/2022\",\n            \"officerYearsWithAgency\": \"12\",\n            \"officerTotalYearsInLawEnforcement\": \"12\",\n            \"education\": \"\",\n            \"pursuitTrainingType\": \"Academy\",\n            \"officerInjured\": \"Yes\",\n            \"officerInjuryType\": \"Abrasion(s)\",\n            \"officerInjurySeverity\": \"Possible\",\n            \"officerHowInjuryOccurred\": \"Suspect’s Actions\",\n            \"officerMedicalTreatmentReceived\": \"Yes\",\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\n            \"officerTransported\": \"Yes\",\n            \"officerTransportedBy\": \"EMS\",\n            \"officerTransportedTo\": \"The Hospital\",\n            \"officerTransportedTime\": \"12:12:00\",\n            \"officerInjuryPhotos\": \"\",\n            \"officerInjuryPhotosTakenBy\": \"\",\n            \"vehicleNumber\": \"PC-11\",\n            \"vehicleType\": \"Car\",\n            \"vehicleMake\": \"MINI\",\n            \"vehicleModel\": \"Cooper\",\n            \"year\": \"2021\",\n            \"vehicleTag\": \"FL1234\",\n            \"state\": \"FL\",\n            \"vehicleDamaged\": \"Yes\",\n            \"vehicleDamageType\": \"Driver Side Rear Fender\",\n            \"vehicleDamageAmount\": \"$500 - $1,000\",\n            \"vehicleTowed\": \"Yes\",\n            \"towingCompany\": \"Anytown Service\",\n            \"rank\": \"\",\n            \"licenseState\": \"\",\n            \"nonEditable\": false,\n            \"vehicleOwner\": \"Sara Jane Smith\",\n            \"bodyWornCamera\": \"\",\n            \"activated\": \"\",\n            \"vehicleTowCompany\": \"\",\n            \"photosofVehicleDamage\": \"\",\n            \"officerMedicalTreatmentReceivedByDropDown\": \"\",\n            \"officerTransportedByDropDown\": \"\",\n            \"officerTransportedToDropDown\": \"\",\n            \"vehicleDamage\": \"\",\n            \"ethnicity\": \"\",\n            \"primaryReferenceId\": null,\n            \"passengers\": [\n                {\n                    \"officerPassengerId\": 10,\n                    \"incidentOfficerId\": 1027,\n                    \"isOfficer\": \"No\",\n                    \"officerId\": \"\",\n                    \"passengerFirstName\": \"John\",\n                    \"passengerMiddleName\": \"Jason\",\n                    \"passengerLastName\": \"Smith\",\n                    \"passengerAddress\": \"1234 Main Street\",\n                    \"passengerCity\": \"Jacksonville\",\n                    \"passengerState\": \"FL\",\n                    \"passengerDob\": \"03/01/1980\",\n                    \"passengerRace\": \"White\",\n                    \"passengerGender\": \"Male\",\n                    \"passengerEmail\": \"\",\n                    \"passengerPhone1\": \"\",\n                    \"passengerPhone2\": \"\",\n                    \"passengerInjured\": \"Yes\",\n                    \"passengerInjuryType\": \"Blunt Trauma\",\n                    \"passengerInjurySeverity\": \"Other  (describe in narrative)\",\n                    \"passengerHowInjuryOccurred\": \"Officer\",\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\n                    \"passengerMedicalTreatmentReceivedBy\": \"The Doctor\",\n                    \"passengerTransported\": \"Yes\",\n                    \"passengerTransportedBy\": \"EMS\",\n                    \"passengerTransportedTo\": \"The Place that Fixes People\",\n                    \"passengerTransportedTime\": \"12:12:00\",\n                    \"passengerInjuryPhotos\": \"\",\n                    \"passengerInjuryPhotosTakenBy\": \"\",\n                    \"passengerMedicalTreatmentReceivedByDropDown\": \"\",\n                    \"passengerTransportedByDropDown\": \"\",\n                    \"passengerTransportedToDropDown\": \"\",\n                    \"ethnicity\": \"\",\n                    \"nonEditable\": false,\n                    \"primaryReferenceId\": null,\n                    \"officerPassengerPointOfContact\": [\n                        {\n                            \"pointOfContactId\": 1,\n                            \"officerPassengerId\": 10,\n                            \"pointType\": \"Upper Chest\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4568909\",\n                            \"createdDate\": \"2022-03-29T15:29:46.6724525\"\n                        },\n                        {\n                            \"pointOfContactId\": 2,\n                            \"officerPassengerId\": 10,\n                            \"pointType\": \"Stomach\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4568947\",\n                            \"createdDate\": \"2022-03-29T15:29:46.6793859\"\n                        }\n                    ],\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4568854\",\n                    \"createdDate\": \"2022-03-29T15:27:50.5756208\"\n                }\n            ],\n            \"officerPointOfContact\": [\n                {\n                    \"officerPointOfContactId\": 4,\n                    \"officerId\": 1027,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4568568\",\n                    \"createdDate\": \"2022-03-29T15:26:17.5464274\"\n                },\n                {\n                    \"officerPointOfContactId\": 5,\n                    \"officerId\": 1027,\n                    \"pointType\": \"Glutes\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4568587\",\n                    \"createdDate\": \"2022-03-29T15:26:17.5465246\"\n                },\n                {\n                    \"officerPointOfContactId\": 6,\n                    \"officerId\": 1027,\n                    \"pointType\": \"Hamstring (left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4568603\",\n                    \"createdDate\": \"2022-03-29T15:26:17.5465588\"\n                },\n                {\n                    \"officerPointOfContactId\": 7,\n                    \"officerId\": 1027,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-29T15:26:17.5354819\",\n                    \"createdDate\": \"2022-03-29T15:26:17.5354579\"\n                },\n                {\n                    \"officerPointOfContactId\": 8,\n                    \"officerId\": 1027,\n                    \"pointType\": \"Glutes\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-29T15:26:17.5422338\",\n                    \"createdDate\": \"2022-03-29T15:26:17.5422335\"\n                },\n                {\n                    \"officerPointOfContactId\": 9,\n                    \"officerId\": 1027,\n                    \"pointType\": \"Hamstring (left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-29T15:26:17.5423148\",\n                    \"createdDate\": \"2022-03-29T15:26:17.5423146\"\n                }\n            ],\n            \"fullName\": \"\",\n            \"modifiedDate\": \"2022-03-30T09:53:53.4568508\",\n            \"createdDate\": \"2022-03-29T15:20:09.3296669\"\n        }\n    ],\n    \"properties\": [\n        {\n            \"propertyId\": 15,\n            \"incidentId\": 3043,\n            \"propertyType\": \"Building\",\n            \"propertyValue\": \">$1000\",\n            \"ownerFirstName\": \"Sara\",\n            \"ownerMiddleName\": \"Jane\",\n            \"ownerLastName\": \"Smith\",\n            \"ownerAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"email\": \"sara.smith@gmail.com\",\n            \"phone1\": \"111-111-1111 x111__\",\n            \"phone2\": \"222-222-2222 x_____\",\n            \"race\": \"White\",\n            \"gender\": \"Female\",\n            \"dateOfBirth\": \"03/01/1980\",\n            \"nonEditable\": false,\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-03-30T09:53:53.4570058\",\n            \"createdDate\": \"2022-03-30T09:30:50.2421677\"\n        }\n    ],\n    \"suspects\": [\n        {\n            \"suspectId\": 2042,\n            \"incidentId\": 3043,\n            \"firstName\": \"Sara\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Jane\",\n            \"suspectAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"race\": \"White\",\n            \"gender\": \"Female\",\n            \"suspectDateOfBirth\": \"03/01/1980\",\n            \"age\": \"\",\n            \"height\": \"\",\n            \"weight\": \"\",\n            \"build\": \"\",\n            \"education\": \"\",\n            \"driverLicenseNumber\": \"FL123456\",\n            \"driverLicenseExpiration\": \"03/01/2022\",\n            \"suspectInjured\": \"Yes\",\n            \"suspectInjuryType\": \"Abrasion(s)\",\n            \"suspectInjurySeverity\": \"Fatal injury\",\n            \"howInjuryOccurredToSuspect\": \"Officer Actions\",\n            \"medicalTreatmentOfSuspect\": \"Yes\",\n            \"medicalTreatmentOfSuspectBy\": \"The Doctor\",\n            \"suspectTransported\": \"Yes\",\n            \"suspectTransportedBy\": \"EMS\",\n            \"suspectTransportedTo\": \"The Hospital\",\n            \"suspectTransportedTime\": \"12:12:00\",\n            \"suspectInjuryPhotos\": \"\",\n            \"suspectInjuryPhotosTakenBy\": \"\",\n            \"suspectArrested\": \"Yes\",\n            \"suspectArrestedForFelony\": \"\",\n            \"suspectArrestCharge\": \"28-1911 Failure to yield|||28-886 Speeding\",\n            \"suspectJailNumber\": \"\",\n            \"suspectWhyNotArrested\": \"\",\n            \"vehicleType\": \"Car\",\n            \"vehicleMake\": \"Scion\",\n            \"vehicleModel\": \"xB\",\n            \"year\": \"2015\",\n            \"vehicleTag\": \"FL1234\",\n            \"vehicleState\": \"FL\",\n            \"vehicleDamaged\": \"Yes\",\n            \"vehicleDamageType\": \"Severe Damage\",\n            \"vehicleDamageAmount\": \"$500 - $1,000\",\n            \"vehicleTowed\": \"Yes\",\n            \"towingCompany\": \"Anytown Service\",\n            \"nonEditable\": false,\n            \"licenseState\": \"\",\n            \"vin\": \"\",\n            \"vehicleTowCompany\": \"\",\n            \"photosofVehicleDamage\": \"\",\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\n            \"suspectTransportedByDropDown\": \"\",\n            \"suspectTransportedToDropDown\": \"\",\n            \"vehicleDamage\": \"\",\n            \"suspectCategory\": \"\",\n            \"custodyLocation\": \"\",\n            \"ethnicity\": \"\",\n            \"primaryReferenceId\": null,\n            \"suspectPassengers\": [\n                {\n                    \"suspectPassengerId\": 1012,\n                    \"suspectId\": 2042,\n                    \"passengerFirstName\": \"Ralph\",\n                    \"passengerMiddleName\": \"Waldo\",\n                    \"passengerLastName\": \"Emmerson\",\n                    \"passengerAddress\": \"1234 Main Street\",\n                    \"passengerCity\": \"Jacksonville\",\n                    \"passengerState\": \"FL\",\n                    \"passengerDob\": \"03/01/1980\",\n                    \"passengerRace\": \"Hispanic/Latino\",\n                    \"passengerGender\": \"Male\",\n                    \"passengerEmail\": \"r.emmerson@compuserve.com\",\n                    \"passengerPhone1\": \"111-111-1111 x111__\",\n                    \"passengerPhone2\": \"222-222-2222 x222__\",\n                    \"passengerInjured\": \"Yes\",\n                    \"passengerInjuryType\": \"Blunt Trauma\",\n                    \"passengerInjurySeverity\": \"Incapacitating\",\n                    \"passengerHowInjuryOccurred\": \"Suspect’s Actions\",\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\n                    \"passengerMedicalTreatmentReceivedBy\": \"Some Dude\",\n                    \"passengerTransported\": \"Yes\",\n                    \"passengerTransportedBy\": \"EMS\",\n                    \"passengerTransportedTo\": \"The Hospital\",\n                    \"passengerTransportedTime\": \"12:12:00\",\n                    \"passengerInjuryPhotos\": \"\",\n                    \"passengerInjuryPhotosTakenBy\": \"\",\n                    \"passengerArrested\": \"Yes\",\n                    \"passengerArrestedForFelony\": \"\",\n                    \"passengerArrestCharge\": \"28-1911 Failure to yield\",\n                    \"passengerJailNumber\": \"\",\n                    \"passengerWhyNotArrested\": \"They didn't do anything illegal.  \",\n                    \"passengerMedicalTreatmentReceivedByDropDown\": \"\",\n                    \"passengerTransportedByDropDown\": \"\",\n                    \"passengerTransportedToDropDown\": \"\",\n                    \"ethnicity\": \"\",\n                    \"nonEditable\": false,\n                    \"primaryReferenceId\": null,\n                    \"suspectPassengerPointsOfContact\": [\n                        {\n                            \"suspectPassengerPointOfContactId\": 1,\n                            \"suspectPassengerId\": 1012,\n                            \"pointType\": \"Thigh (right)\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-03-30T09:53:53.429794\",\n                            \"createdDate\": \"2022-03-30T07:44:56.9354416\"\n                        },\n                        {\n                            \"suspectPassengerPointOfContactId\": 2,\n                            \"suspectPassengerId\": 1012,\n                            \"pointType\": \"Upper Arm(left)\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-03-30T09:53:53.429793\",\n                            \"createdDate\": \"2022-03-30T07:44:56.9354077\"\n                        },\n                        {\n                            \"suspectPassengerPointOfContactId\": 3,\n                            \"suspectPassengerId\": 1012,\n                            \"pointType\": \"Forearm (front/right)\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4297918\",\n                            \"createdDate\": \"2022-03-30T07:44:56.9353334\"\n                        },\n                        {\n                            \"suspectPassengerPointOfContactId\": 4,\n                            \"suspectPassengerId\": 1012,\n                            \"pointType\": \"Calf (right)\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4297965\",\n                            \"createdDate\": \"2022-03-30T07:44:56.9355082\"\n                        },\n                        {\n                            \"suspectPassengerPointOfContactId\": 5,\n                            \"suspectPassengerId\": 1012,\n                            \"pointType\": \"Glutes\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4297953\",\n                            \"createdDate\": \"2022-03-30T07:44:56.9354754\"\n                        },\n                        {\n                            \"suspectPassengerPointOfContactId\": 6,\n                            \"suspectPassengerId\": 1012,\n                            \"pointType\": \"Face\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4297904\",\n                            \"createdDate\": \"2022-03-30T07:44:56.9286435\"\n                        }\n                    ],\n                    \"suspectPassengerChargeClassifications\": [\n                        {\n                            \"suspectPassengerChargeClassificationId\": 1,\n                            \"suspectPassengerId\": 1012,\n                            \"charge\": \"28-1911 Failure to yield\",\n                            \"chargeClasification1\": true,\n                            \"chargeClasification2\": false,\n                            \"chargeClasification3\": false,\n                            \"chargeClasification4\": false,\n                            \"chargeClasification5\": false,\n                            \"chargeClasification6\": \"\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4466496\",\n                            \"createdDate\": \"2022-03-30T09:53:53.4466073\"\n                        }\n                    ],\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4297819\",\n                    \"createdDate\": \"2022-03-30T07:37:26.4401479\"\n                }\n            ],\n            \"suspectPointsOfContact\": [\n                {\n                    \"suspectPointOfContactId\": 6,\n                    \"suspectId\": 2042,\n                    \"pointType\": \"Face\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4297541\",\n                    \"createdDate\": \"2022-03-30T07:37:08.7430488\"\n                },\n                {\n                    \"suspectPointOfContactId\": 7,\n                    \"suspectId\": 2042,\n                    \"pointType\": \"Calf (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4297556\",\n                    \"createdDate\": \"2022-03-30T07:37:08.7508393\"\n                }\n            ],\n            \"suspectChargeClassifications\": [\n                {\n                    \"suspectChargeClassificationId\": 5,\n                    \"suspectId\": 2042,\n                    \"charge\": \"28-1911 Failure to yield\",\n                    \"chargeClasification1\": false,\n                    \"chargeClasification2\": true,\n                    \"chargeClasification3\": true,\n                    \"chargeClasification4\": false,\n                    \"chargeClasification5\": false,\n                    \"chargeClasification6\": \"\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4567582\",\n                    \"createdDate\": \"2022-03-30T07:37:08.756308\"\n                },\n                {\n                    \"suspectChargeClassificationId\": 6,\n                    \"suspectId\": 2042,\n                    \"charge\": \"28-886 Speeding\",\n                    \"chargeClasification1\": false,\n                    \"chargeClasification2\": true,\n                    \"chargeClasification3\": false,\n                    \"chargeClasification4\": false,\n                    \"chargeClasification5\": false,\n                    \"chargeClasification6\": \"\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4567608\",\n                    \"createdDate\": \"2022-03-30T09:41:53.9703176\"\n                }\n            ],\n            \"vehicleOwner\": \"\",\n            \"modifiedDate\": \"2022-03-30T09:53:53.4297439\",\n            \"createdDate\": \"2022-03-30T07:29:23.2060341\"\n        }\n    ],\n    \"victims\": [\n        {\n            \"victimId\": 5,\n            \"incidentId\": 3043,\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Jason\",\n            \"victimAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"victimEmail\": \"john.smith@gmail.com\",\n            \"victimPhone1\": \"111-111-1111 x1111_\",\n            \"victimPhone2\": \"222-222-2222 x222__\",\n            \"race\": \"Black\",\n            \"gender\": \"Male\",\n            \"victimDateOfBirth\": \"03/01/1980\",\n            \"victimInjured\": \"Yes\",\n            \"victimInjuryType\": \"Broken Bone\",\n            \"victimInjurySeverity\": \"Other  (describe in narrative)\",\n            \"victimHowInjuryToVictimOccurred\": \"Officer\",\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\n            \"victimTransported\": \"Yes\",\n            \"victimTransportedBy\": \"EMS\",\n            \"victimTransportedTo\": \"The Hospital\",\n            \"victimTransportedTime\": \"12:12:00\",\n            \"victimInjuryPhotos\": \"\",\n            \"victimInjuryPhotosTakenBy\": \"\",\n            \"victimMedicalTreatmentOfVictimByDropDown\": \"\",\n            \"victimTransportedByDropDown\": \"\",\n            \"victimTransportedToDropDown\": \"\",\n            \"nonEditable\": false,\n            \"agency\": \"\",\n            \"primaryReferenceId\": null,\n            \"victimPointsOfContact\": [\n                {\n                    \"victimPointOfContact\": 1,\n                    \"victimId\": 5,\n                    \"pointType\": \"Stomach\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4569485\",\n                    \"createdDate\": \"2022-03-30T08:03:07.8140945\"\n                },\n                {\n                    \"victimPointOfContact\": 2,\n                    \"victimId\": 5,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-30T09:53:53.456947\",\n                    \"createdDate\": \"2022-03-30T08:03:07.8043918\"\n                }\n            ],\n            \"modifiedDate\": \"2022-03-30T09:53:53.456939\",\n            \"createdDate\": \"2022-03-30T08:00:11.2614705\"\n        }\n    ],\n    \"witnesses\": [\n        {\n            \"witnessId\": 6,\n            \"incidentId\": 3043,\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Jason\",\n            \"witnessAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"witnessEmail\": \"john.smith@gmail.com\",\n            \"witnessPhone1\": \"111-111-1111 x_____\",\n            \"witnessPhone2\": \"222-222-2222 x222__\",\n            \"race\": \"White\",\n            \"gender\": \"Male\",\n            \"witnessDateOfBirth\": \"03/01/1980\",\n            \"nonEditable\": false,\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-03-30T09:53:53.4569804\",\n            \"createdDate\": \"2022-03-30T09:33:59.2672054\"\n        }\n    ],\n    \"reviews\": [\n        {\n            \"reviewId\": 54,\n            \"incidentId\": 3043,\n            \"userId\": 95474,\n            \"action\": \"Approve\",\n            \"message\": \"\",\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T08:07:52.6501428\",\n            \"reviewGroupId\": 0,\n            \"modifiedDate\": \"2022-04-01T08:07:52.6501428\",\n            \"createdDate\": \"2022-04-01T08:07:52.6499335\"\n        },\n        {\n            \"reviewId\": 55,\n            \"incidentId\": 3043,\n            \"userId\": 95475,\n            \"action\": \"Sent\",\n            \"message\": \"\",\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T08:07:52.6555559\",\n            \"reviewGroupId\": 0,\n            \"modifiedDate\": \"2022-04-01T08:07:52.6555559\",\n            \"createdDate\": \"2022-04-01T08:07:52.6555552\"\n        }\n    ],\n    \"reviewFormValues\": [\n        {\n            \"reviewFormValueId\": 2,\n            \"title\": \"Title\",\n            \"type\": \"Type\",\n            \"value\": \"Value\",\n            \"ordinal\": 1,\n            \"indent\": 0,\n            \"helpSeg\": \"\",\n            \"formValue\": \"\",\n            \"incidentId\": 3043,\n            \"modifiedDate\": \"2022-04-01T08:35:27.5392579\",\n            \"createdDate\": \"2022-04-01T08:35:27.5392579\"\n        }\n    ],\n    \"modifiedDate\": \"2022-03-30T09:53:53.457065\",\n    \"createdDate\": \"2022-03-29T15:11:08.7495205\"\n}"},{"id":"4646fcbe-08b8-41b3-82a7-1e267107aa3b","name":"Incident Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/vipr/:incidentId","host":["{{BaseUri}}"],"path":["api","vipr",":incidentId"],"variable":[{"key":"incidentId","value":"-1","description":"The record Id of the desired Incident."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"Text","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcdmRvY1w1Mg==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 22 Feb 2022 18:09:08 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Instance not found for the supplied id!\"\n}"}],"_postman_id":"8b3959fd-e12e-4c4c-90de-e592960bbf80"},{"name":"Create Vehicle Pursuit Incident","id":"725f744f-eeaa-49c6-a107-52ad25db4d87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 95474,\r\n    \"status\": \"Editing\",\r\n    \"incidentCaseNumber\": \"TestCase-002\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"pursuitDate\": \"03/01/2022\",\r\n    \"pursuitTime\": \"12:12:00\",\r\n    \"reportDate\": \"03/29/2022\",\r\n    \"reportTime\": \"15:11:00\",\r\n    \"supervisorMonitoringRank\": \"Patrol\",\r\n    \"supervisorMonitoringName\": \"Kevin Davis\",\r\n    \"supervisorMonitoringId\": \"090\",\r\n    \"supervisorRespondingRank\": \"Officer\",\r\n    \"supervisorRespondingName\": \"Frank Borntraeger\",\r\n    \"supervisorRespondingId\": \"4322\",\r\n    \"pursuitReason\": \"On View Violation\",\r\n    \"pursuitDispatched\": \"On-View\",\r\n    \"pursuitStartTime\": \"12:12:00\",\r\n    \"pursuitStartArea1\": \"District 721\",\r\n    \"pursuitStartArea2\": \"\",\r\n    \"pursuitStartArea3\": \"\",\r\n    \"pursuitEndTime\": \"12:56:00\",\r\n    \"pursuitEndArea1\": \"District 741\",\r\n    \"pursuitEndArea2\": \"\",\r\n    \"pursuitEndArea3\": \"\",\r\n    \"pursuitDuration\": \"44 Minutes\",\r\n    \"pursuitHighestSpeed\": \"50-80 mph\",\r\n    \"trafficPattern\": \"Moderate\",\r\n    \"weatherConditions\": \"Ice\",\r\n    \"pursuitDistance\": \"45\",\r\n    \"howPursuitTerminated\": \"Cruiser Damaged\",\r\n    \"pursuitTerminationReason\": \"Pursuing Officer Terminated\",\r\n    \"terminationTactics\": \"Pit Maneuver \",\r\n    \"incidentDocumentAttached\": \"\",\r\n    \"resourceInvolved\": \"K-9\",\r\n    \"pursuitRoute\": \"Up the road, then over to the left.\",\r\n    \"pursuitJustification\": \"Robbery\",\r\n    \"pursuitResultCrash\": \"Yes\",\r\n    \"trackingNumber\": \"2022 - 10\",\r\n    \"trackingId\": 10,\r\n    \"trackingYear\": 2022,\r\n    \"subReportNumber\": null,\r\n    \"reportType\": \"\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"involvedOfficer\": true,\r\n    \"involvedSuspect\": true,\r\n    \"involvedVictim\": true,\r\n    \"involvedWitness\": true,\r\n    \"involvedProperty\": true,\r\n    \"involvedNarrative\": true,\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": true,\r\n    \"sectionCode\": \"\",\r\n    \"agency\": \"Highway Patrol\",\r\n    \"optional1\": \"Far Point Police Department\",\r\n    \"optional2\": \"\",\r\n    \"optional3\": \"\",\r\n    \"optional4\": \"\",\r\n    \"optional5\": \"\",\r\n    \"optional6\": \"\",\r\n    \"optional7\": \"\",\r\n    \"optional8\": \"\",\r\n    \"optional9\": \"\",\r\n    \"optional10\": \"\",\r\n    \"optional11\": \"\",\r\n    \"optional12\": \"\",\r\n    \"influenceFactors\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"narratives\": [\r\n        {\r\n            \"narrative\": \"This was one really hot pursuit.  Of all the pursuits I've been on, this was one of them.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-03-30T09:53:53.4570287\",\r\n            \"createdDate\": \"2022-03-29T15:11:08.7532824\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"officerId\": \"B123456\",\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Simon\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerOnDuty\": \"Yes\",\r\n            \"officerPermanentAssignment\": \"North Sector\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"race\": \"Hispanic/Latino\",\r\n            \"gender\": \"Male\",\r\n            \"age\": \"35\",\r\n            \"driverLicense\": \"FL123456\",\r\n            \"driverLicenseExpirationDate\": \"03/07/2022\",\r\n            \"officerYearsWithAgency\": \"12\",\r\n            \"officerTotalYearsInLawEnforcement\": \"12\",\r\n            \"education\": \"\",\r\n            \"pursuitTrainingType\": \"Academy\",\r\n            \"officerInjured\": \"Yes\",\r\n            \"officerInjuryType\": \"Abrasion(s)\",\r\n            \"officerInjurySeverity\": \"Possible\",\r\n            \"officerHowInjuryOccurred\": \"Suspect’s Actions\",\r\n            \"officerMedicalTreatmentReceived\": \"Yes\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\r\n            \"officerTransported\": \"Yes\",\r\n            \"officerTransportedBy\": \"EMS\",\r\n            \"officerTransportedTo\": \"The Hospital\",\r\n            \"officerTransportedTime\": \"12:12:00\",\r\n            \"officerInjuryPhotos\": \"\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"vehicleNumber\": \"PC-11\",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"MINI\",\r\n            \"vehicleModel\": \"Cooper\",\r\n            \"year\": \"2021\",\r\n            \"vehicleTag\": \"FL1234\",\r\n            \"state\": \"FL\",\r\n            \"vehicleDamaged\": \"Yes\",\r\n            \"vehicleDamageType\": \"Driver Side Rear Fender\",\r\n            \"vehicleDamageAmount\": \"$500 - $1,000\",\r\n            \"vehicleTowed\": \"Yes\",\r\n            \"towingCompany\": \"Anytown Service\",\r\n            \"rank\": \"\",\r\n            \"licenseState\": \"\",\r\n            \"nonEditable\": false,\r\n            \"vehicleOwner\": \"Sara Jane Smith\",\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"vehicleTowCompany\": \"\",\r\n            \"photosofVehicleDamage\": \"\",\r\n            \"officerMedicalTreatmentReceivedByDropDown\": \"\",\r\n            \"officerTransportedByDropDown\": \"\",\r\n            \"officerTransportedToDropDown\": \"\",\r\n            \"vehicleDamage\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"passengers\": [\r\n                {\r\n                    \"isOfficer\": \"No\",\r\n                    \"officerId\": \"\",\r\n                    \"passengerFirstName\": \"John\",\r\n                    \"passengerMiddleName\": \"Jason\",\r\n                    \"passengerLastName\": \"Smith\",\r\n                    \"passengerAddress\": \"1234 Main Street\",\r\n                    \"passengerCity\": \"Jacksonville\",\r\n                    \"passengerState\": \"FL\",\r\n                    \"passengerDob\": \"03/01/1980\",\r\n                    \"passengerRace\": \"White\",\r\n                    \"passengerGender\": \"Male\",\r\n                    \"passengerEmail\": \"\",\r\n                    \"passengerPhone1\": \"\",\r\n                    \"passengerPhone2\": \"\",\r\n                    \"passengerInjured\": \"Yes\",\r\n                    \"passengerInjuryType\": \"Blunt Trauma\",\r\n                    \"passengerInjurySeverity\": \"Other  (describe in narrative)\",\r\n                    \"passengerHowInjuryOccurred\": \"Officer\",\r\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\r\n                    \"passengerMedicalTreatmentReceivedBy\": \"The Doctor\",\r\n                    \"passengerTransported\": \"Yes\",\r\n                    \"passengerTransportedBy\": \"EMS\",\r\n                    \"passengerTransportedTo\": \"The Place that Fixes People\",\r\n                    \"passengerTransportedTime\": \"12:12:00\",\r\n                    \"passengerInjuryPhotos\": \"\",\r\n                    \"passengerInjuryPhotosTakenBy\": \"\",\r\n                    \"passengerMedicalTreatmentReceivedByDropDown\": \"\",\r\n                    \"passengerTransportedByDropDown\": \"\",\r\n                    \"passengerTransportedToDropDown\": \"\",\r\n                    \"ethnicity\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"primaryReferenceId\": null,\r\n                    \"officerPassengerPointOfContact\": [\r\n                        {\r\n                            \"pointType\": \"Upper Chest\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4568909\",\r\n                            \"createdDate\": \"2022-03-29T15:29:46.6724525\"\r\n                        },\r\n                        {\r\n                            \"pointType\": \"Stomach\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4568947\",\r\n                            \"createdDate\": \"2022-03-29T15:29:46.6793859\"\r\n                        }\r\n                    ],\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4568854\",\r\n                    \"createdDate\": \"2022-03-29T15:27:50.5756208\"\r\n                }\r\n            ],\r\n            \"officerPointOfContact\": [\r\n                {\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4568568\",\r\n                    \"createdDate\": \"2022-03-29T15:26:17.5464274\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Glutes\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4568587\",\r\n                    \"createdDate\": \"2022-03-29T15:26:17.5465246\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Hamstring (left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4568603\",\r\n                    \"createdDate\": \"2022-03-29T15:26:17.5465588\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-29T15:26:17.5354819\",\r\n                    \"createdDate\": \"2022-03-29T15:26:17.5354579\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Glutes\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-29T15:26:17.5422338\",\r\n                    \"createdDate\": \"2022-03-29T15:26:17.5422335\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Hamstring (left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-29T15:26:17.5423148\",\r\n                    \"createdDate\": \"2022-03-29T15:26:17.5423146\"\r\n                }\r\n            ],\r\n            \"fullName\": \"\",\r\n            \"modifiedDate\": \"2022-03-30T09:53:53.4568508\",\r\n            \"createdDate\": \"2022-03-29T15:20:09.3296669\"\r\n        }\r\n    ],\r\n    \"properties\": [\r\n        {\r\n            \"propertyType\": \"Building\",\r\n            \"propertyValue\": \">$1000\",\r\n            \"ownerFirstName\": \"Sara\",\r\n            \"ownerMiddleName\": \"Jane\",\r\n            \"ownerLastName\": \"Smith\",\r\n            \"ownerAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"email\": \"sara.smith@gmail.com\",\r\n            \"phone1\": \"111-111-1111 x111__\",\r\n            \"phone2\": \"222-222-2222 x_____\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Female\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-30T09:53:53.4570058\",\r\n            \"createdDate\": \"2022-03-30T09:30:50.2421677\"\r\n        }\r\n    ],\r\n    \"suspects\": [\r\n        {\r\n            \"firstName\": \"Sara\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jane\",\r\n            \"suspectAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Female\",\r\n            \"suspectDateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"height\": \"\",\r\n            \"weight\": \"\",\r\n            \"build\": \"\",\r\n            \"education\": \"\",\r\n            \"driverLicenseNumber\": \"FL123456\",\r\n            \"driverLicenseExpiration\": \"03/01/2022\",\r\n            \"suspectInjured\": \"Yes\",\r\n            \"suspectInjuryType\": \"Abrasion(s)\",\r\n            \"suspectInjurySeverity\": \"Fatal injury\",\r\n            \"howInjuryOccurredToSuspect\": \"Officer Actions\",\r\n            \"medicalTreatmentOfSuspect\": \"Yes\",\r\n            \"medicalTreatmentOfSuspectBy\": \"The Doctor\",\r\n            \"suspectTransported\": \"Yes\",\r\n            \"suspectTransportedBy\": \"EMS\",\r\n            \"suspectTransportedTo\": \"The Hospital\",\r\n            \"suspectTransportedTime\": \"12:12:00\",\r\n            \"suspectInjuryPhotos\": \"\",\r\n            \"suspectInjuryPhotosTakenBy\": \"\",\r\n            \"suspectArrested\": \"Yes\",\r\n            \"suspectArrestedForFelony\": \"\",\r\n            \"suspectArrestCharge\": \"28-1911 Failure to yield|||28-886 Speeding\",\r\n            \"suspectJailNumber\": \"\",\r\n            \"suspectWhyNotArrested\": \"\",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"Scion\",\r\n            \"vehicleModel\": \"xB\",\r\n            \"year\": \"2015\",\r\n            \"vehicleTag\": \"FL1234\",\r\n            \"vehicleState\": \"FL\",\r\n            \"vehicleDamaged\": \"Yes\",\r\n            \"vehicleDamageType\": \"Severe Damage\",\r\n            \"vehicleDamageAmount\": \"$500 - $1,000\",\r\n            \"vehicleTowed\": \"Yes\",\r\n            \"towingCompany\": \"Anytown Service\",\r\n            \"nonEditable\": false,\r\n            \"licenseState\": \"\",\r\n            \"vin\": \"\",\r\n            \"vehicleTowCompany\": \"\",\r\n            \"photosofVehicleDamage\": \"\",\r\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\r\n            \"suspectTransportedByDropDown\": \"\",\r\n            \"suspectTransportedToDropDown\": \"\",\r\n            \"vehicleDamage\": \"\",\r\n            \"suspectCategory\": \"\",\r\n            \"custodyLocation\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"suspectPassengers\": [\r\n                {\r\n                    \"passengerFirstName\": \"Ralph\",\r\n                    \"passengerMiddleName\": \"Waldo\",\r\n                    \"passengerLastName\": \"Emmerson\",\r\n                    \"passengerAddress\": \"1234 Main Street\",\r\n                    \"passengerCity\": \"Jacksonville\",\r\n                    \"passengerState\": \"FL\",\r\n                    \"passengerDob\": \"03/01/1980\",\r\n                    \"passengerRace\": \"Hispanic/Latino\",\r\n                    \"passengerGender\": \"Male\",\r\n                    \"passengerEmail\": \"r.emmerson@compuserve.com\",\r\n                    \"passengerPhone1\": \"111-111-1111 x111__\",\r\n                    \"passengerPhone2\": \"222-222-2222 x222__\",\r\n                    \"passengerInjured\": \"Yes\",\r\n                    \"passengerInjuryType\": \"Blunt Trauma\",\r\n                    \"passengerInjurySeverity\": \"Incapacitating\",\r\n                    \"passengerHowInjuryOccurred\": \"Suspect’s Actions\",\r\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\r\n                    \"passengerMedicalTreatmentReceivedBy\": \"Some Dude\",\r\n                    \"passengerTransported\": \"Yes\",\r\n                    \"passengerTransportedBy\": \"EMS\",\r\n                    \"passengerTransportedTo\": \"The Hospital\",\r\n                    \"passengerTransportedTime\": \"12:12:00\",\r\n                    \"passengerInjuryPhotos\": \"\",\r\n                    \"passengerInjuryPhotosTakenBy\": \"\",\r\n                    \"passengerArrested\": \"Yes\",\r\n                    \"passengerArrestedForFelony\": \"\",\r\n                    \"passengerArrestCharge\": \"28-1911 Failure to yield\",\r\n                    \"passengerJailNumber\": \"\",\r\n                    \"passengerWhyNotArrested\": \"They didn't do anything illegal.  \",\r\n                    \"passengerMedicalTreatmentReceivedByDropDown\": \"\",\r\n                    \"passengerTransportedByDropDown\": \"\",\r\n                    \"passengerTransportedToDropDown\": \"\",\r\n                    \"ethnicity\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"primaryReferenceId\": null,\r\n                    \"suspectPassengerPointsOfContact\": [\r\n                        {\r\n                            \"pointType\": \"Thigh (right)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T09:53:53.429794\",\r\n                            \"createdDate\": \"2022-03-30T07:44:56.9354416\"\r\n                        },\r\n                        {\r\n                            \"pointType\": \"Upper Arm(left)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T09:53:53.429793\",\r\n                            \"createdDate\": \"2022-03-30T07:44:56.9354077\"\r\n                        },\r\n                        {\r\n                            \"pointType\": \"Forearm (front/right)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4297918\",\r\n                            \"createdDate\": \"2022-03-30T07:44:56.9353334\"\r\n                        },\r\n                        {\r\n                            \"pointType\": \"Calf (right)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4297965\",\r\n                            \"createdDate\": \"2022-03-30T07:44:56.9355082\"\r\n                        },\r\n                        {\r\n                            \"pointType\": \"Glutes\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4297953\",\r\n                            \"createdDate\": \"2022-03-30T07:44:56.9354754\"\r\n                        },\r\n                        {\r\n                            \"pointType\": \"Face\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4297904\",\r\n                            \"createdDate\": \"2022-03-30T07:44:56.9286435\"\r\n                        }\r\n                    ],\r\n                    \"suspectPassengerChargeClassifications\": [\r\n                        {\r\n                            \"charge\": \"28-1911 Failure to yield\",\r\n                            \"chargeClasification1\": true,\r\n                            \"chargeClasification2\": false,\r\n                            \"chargeClasification3\": false,\r\n                            \"chargeClasification4\": false,\r\n                            \"chargeClasification5\": false,\r\n                            \"chargeClasification6\": \"\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4466496\",\r\n                            \"createdDate\": \"2022-03-30T09:53:53.4466073\"\r\n                        }\r\n                    ],\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4297819\",\r\n                    \"createdDate\": \"2022-03-30T07:37:26.4401479\"\r\n                }\r\n            ],\r\n            \"suspectPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Face\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4297541\",\r\n                    \"createdDate\": \"2022-03-30T07:37:08.7430488\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Calf (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4297556\",\r\n                    \"createdDate\": \"2022-03-30T07:37:08.7508393\"\r\n                }\r\n            ],\r\n            \"suspectChargeClassifications\": [\r\n                {\r\n                    \"charge\": \"28-1911 Failure to yield\",\r\n                    \"chargeClasification1\": false,\r\n                    \"chargeClasification2\": true,\r\n                    \"chargeClasification3\": true,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4567582\",\r\n                    \"createdDate\": \"2022-03-30T07:37:08.756308\"\r\n                },\r\n                {\r\n                    \"charge\": \"28-886 Speeding\",\r\n                    \"chargeClasification1\": false,\r\n                    \"chargeClasification2\": true,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4567608\",\r\n                    \"createdDate\": \"2022-03-30T09:41:53.9703176\"\r\n                }\r\n            ],\r\n            \"vehicleOwner\": \"\",\r\n            \"modifiedDate\": \"2022-03-30T09:53:53.4297439\",\r\n            \"createdDate\": \"2022-03-30T07:29:23.2060341\"\r\n        }\r\n    ],\r\n    \"victims\": [\r\n        {\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jason\",\r\n            \"victimAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"victimEmail\": \"john.smith@gmail.com\",\r\n            \"victimPhone1\": \"111-111-1111 x1111_\",\r\n            \"victimPhone2\": \"222-222-2222 x222__\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"victimDateOfBirth\": \"03/01/1980\",\r\n            \"victimInjured\": \"Yes\",\r\n            \"victimInjuryType\": \"Broken Bone\",\r\n            \"victimInjurySeverity\": \"Other  (describe in narrative)\",\r\n            \"victimHowInjuryToVictimOccurred\": \"Officer\",\r\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\r\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\r\n            \"victimTransported\": \"Yes\",\r\n            \"victimTransportedBy\": \"EMS\",\r\n            \"victimTransportedTo\": \"The Hospital\",\r\n            \"victimTransportedTime\": \"12:12:00\",\r\n            \"victimInjuryPhotos\": \"\",\r\n            \"victimInjuryPhotosTakenBy\": \"\",\r\n            \"victimMedicalTreatmentOfVictimByDropDown\": \"\",\r\n            \"victimTransportedByDropDown\": \"\",\r\n            \"victimTransportedToDropDown\": \"\",\r\n            \"nonEditable\": false,\r\n            \"agency\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"victimPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Stomach\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4569485\",\r\n                    \"createdDate\": \"2022-03-30T08:03:07.8140945\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.456947\",\r\n                    \"createdDate\": \"2022-03-30T08:03:07.8043918\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-30T09:53:53.456939\",\r\n            \"createdDate\": \"2022-03-30T08:00:11.2614705\"\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jason\",\r\n            \"witnessAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"witnessEmail\": \"john.smith@gmail.com\",\r\n            \"witnessPhone1\": \"111-111-1111 x_____\",\r\n            \"witnessPhone2\": \"222-222-2222 x222__\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"witnessDateOfBirth\": \"03/01/1980\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-30T09:53:53.4569804\",\r\n            \"createdDate\": \"2022-03-30T09:33:59.2672054\"\r\n        }\r\n    ],\r\n    \"reviews\": [\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T08:07:52.6501428\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T08:07:52.6501428\",\r\n            \"createdDate\": \"2022-04-01T08:07:52.6499335\"\r\n        },\r\n        {\r\n            \"userId\": 95475,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T08:07:52.6555559\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T08:07:52.6555559\",\r\n            \"createdDate\": \"2022-04-01T08:07:52.6555552\"\r\n        }\r\n    ],\r\n    \"reviewFormValues\": [\r\n        {\r\n            \"title\": \"Title\",\r\n            \"type\": \"Type\",\r\n            \"value\": \"Value\",\r\n            \"ordinal\": 1,\r\n            \"indent\": 0,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 3043,\r\n            \"modifiedDate\": \"2022-04-01T08:35:27.5392579\",\r\n            \"createdDate\": \"2022-04-01T08:35:27.5392579\"\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-03-30T09:53:53.457065\",\r\n    \"createdDate\": \"2022-03-29T15:11:08.7495205\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/vipr","description":"<p>Create a new vehicle pursuit incident of vehicle damage. An error will be thrown if the supplied Case Number already exists in the system. You must ensure that each case number is unique.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","vipr"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"e5d62562-721f-46ea-bbbf-94e1b29b3141","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 95474,\r\n    \"status\": \"Editing\",\r\n    \"incidentCaseNumber\": \"TestCase-002\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"pursuitDate\": \"03/01/2022\",\r\n    \"pursuitTime\": \"12:12:00\",\r\n    \"reportDate\": \"03/29/2022\",\r\n    \"reportTime\": \"15:11:00\",\r\n    \"supervisorMonitoringRank\": \"Patrol\",\r\n    \"supervisorMonitoringName\": \"John Smith\",\r\n    \"supervisorMonitoringId\": \"090\",\r\n    \"supervisorRespondingRank\": \"Officer\",\r\n    \"supervisorRespondingName\": \"Jane Smith\",\r\n    \"supervisorRespondingId\": \"4322\",\r\n    \"pursuitReason\": \"On View Violation\",\r\n    \"pursuitDispatched\": \"On-View\",\r\n    \"pursuitStartTime\": \"12:12:00\",\r\n    \"pursuitStartArea1\": \"District 721\",\r\n    \"pursuitStartArea2\": \"\",\r\n    \"pursuitStartArea3\": \"\",\r\n    \"pursuitEndTime\": \"12:56:00\",\r\n    \"pursuitEndArea1\": \"District 741\",\r\n    \"pursuitEndArea2\": \"\",\r\n    \"pursuitEndArea3\": \"\",\r\n    \"pursuitDuration\": \"44 Minutes\",\r\n    \"pursuitHighestSpeed\": \"50-80 mph\",\r\n    \"trafficPattern\": \"Moderate\",\r\n    \"weatherConditions\": \"Ice\",\r\n    \"pursuitDistance\": \"45\",\r\n    \"howPursuitTerminated\": \"Cruiser Damaged\",\r\n    \"pursuitTerminationReason\": \"Pursuing Officer Terminated\",\r\n    \"terminationTactics\": \"Pit Maneuver \",\r\n    \"incidentDocumentAttached\": \"\",\r\n    \"resourceInvolved\": \"K-9\",\r\n    \"pursuitRoute\": \"Up the road, then over to the left.\",\r\n    \"pursuitJustification\": \"Robbery\",\r\n    \"pursuitResultCrash\": \"Yes\",\r\n    \"trackingNumber\": \"2022 - 10\",\r\n    \"trackingId\": 10,\r\n    \"trackingYear\": 2022,\r\n    \"subReportNumber\": null,\r\n    \"reportType\": \"\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"involvedOfficer\": true,\r\n    \"involvedSuspect\": true,\r\n    \"involvedVictim\": true,\r\n    \"involvedWitness\": true,\r\n    \"involvedProperty\": true,\r\n    \"involvedNarrative\": true,\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": true,\r\n    \"sectionCode\": \"\",\r\n    \"agency\": \"Highway Patrol\",\r\n    \"optional1\": \"Far Point Police Department\",\r\n    \"optional2\": \"\",\r\n    \"optional3\": \"\",\r\n    \"optional4\": \"\",\r\n    \"optional5\": \"\",\r\n    \"optional6\": \"\",\r\n    \"optional7\": \"\",\r\n    \"optional8\": \"\",\r\n    \"optional9\": \"\",\r\n    \"optional10\": \"\",\r\n    \"optional11\": \"\",\r\n    \"optional12\": \"\",\r\n    \"influenceFactors\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"narratives\": [\r\n        {\r\n            \"narrative\": \"This was one really hot pursuit.  Of all the pursuits I've been on, this was one of them.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-03-30T09:53:53.4570287\",\r\n            \"createdDate\": \"2022-03-29T15:11:08.7532824\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"officerId\": \"B123456\",\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Simon\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerOnDuty\": \"Yes\",\r\n            \"officerPermanentAssignment\": \"North Sector\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"race\": \"Hispanic/Latino\",\r\n            \"gender\": \"Male\",\r\n            \"age\": \"35\",\r\n            \"driverLicense\": \"FL123456\",\r\n            \"driverLicenseExpirationDate\": \"03/07/2022\",\r\n            \"officerYearsWithAgency\": \"12\",\r\n            \"officerTotalYearsInLawEnforcement\": \"12\",\r\n            \"education\": \"\",\r\n            \"pursuitTrainingType\": \"Academy\",\r\n            \"officerInjured\": \"Yes\",\r\n            \"officerInjuryType\": \"Abrasion(s)\",\r\n            \"officerInjurySeverity\": \"Possible\",\r\n            \"officerHowInjuryOccurred\": \"Suspect’s Actions\",\r\n            \"officerMedicalTreatmentReceived\": \"Yes\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\r\n            \"officerTransported\": \"Yes\",\r\n            \"officerTransportedBy\": \"EMS\",\r\n            \"officerTransportedTo\": \"The Hospital\",\r\n            \"officerTransportedTime\": \"12:12:00\",\r\n            \"officerInjuryPhotos\": \"\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"vehicleNumber\": \"PC-11\",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"MINI\",\r\n            \"vehicleModel\": \"Cooper\",\r\n            \"year\": \"2021\",\r\n            \"vehicleTag\": \"FL1234\",\r\n            \"state\": \"FL\",\r\n            \"vehicleDamaged\": \"Yes\",\r\n            \"vehicleDamageType\": \"Driver Side Rear Fender\",\r\n            \"vehicleDamageAmount\": \"$500 - $1,000\",\r\n            \"vehicleTowed\": \"Yes\",\r\n            \"towingCompany\": \"Anytown Service\",\r\n            \"rank\": \"\",\r\n            \"licenseState\": \"\",\r\n            \"nonEditable\": false,\r\n            \"vehicleOwner\": \"Sara Jane Smith\",\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"vehicleTowCompany\": \"\",\r\n            \"photosofVehicleDamage\": \"\",\r\n            \"officerMedicalTreatmentReceivedByDropDown\": \"\",\r\n            \"officerTransportedByDropDown\": \"\",\r\n            \"officerTransportedToDropDown\": \"\",\r\n            \"vehicleDamage\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"passengers\": [\r\n                {\r\n                    \"isOfficer\": \"No\",\r\n                    \"officerId\": \"\",\r\n                    \"passengerFirstName\": \"John\",\r\n                    \"passengerMiddleName\": \"Jason\",\r\n                    \"passengerLastName\": \"Smith\",\r\n                    \"passengerAddress\": \"1234 Main Street\",\r\n                    \"passengerCity\": \"Jacksonville\",\r\n                    \"passengerState\": \"FL\",\r\n                    \"passengerDob\": \"03/01/1980\",\r\n                    \"passengerRace\": \"White\",\r\n                    \"passengerGender\": \"Male\",\r\n                    \"passengerEmail\": \"\",\r\n                    \"passengerPhone1\": \"\",\r\n                    \"passengerPhone2\": \"\",\r\n                    \"passengerInjured\": \"Yes\",\r\n                    \"passengerInjuryType\": \"Blunt Trauma\",\r\n                    \"passengerInjurySeverity\": \"Other  (describe in narrative)\",\r\n                    \"passengerHowInjuryOccurred\": \"Officer\",\r\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\r\n                    \"passengerMedicalTreatmentReceivedBy\": \"The Doctor\",\r\n                    \"passengerTransported\": \"Yes\",\r\n                    \"passengerTransportedBy\": \"EMS\",\r\n                    \"passengerTransportedTo\": \"The Place that Fixes People\",\r\n                    \"passengerTransportedTime\": \"12:12:00\",\r\n                    \"passengerInjuryPhotos\": \"\",\r\n                    \"passengerInjuryPhotosTakenBy\": \"\",\r\n                    \"passengerMedicalTreatmentReceivedByDropDown\": \"\",\r\n                    \"passengerTransportedByDropDown\": \"\",\r\n                    \"passengerTransportedToDropDown\": \"\",\r\n                    \"ethnicity\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"primaryReferenceId\": null,\r\n                    \"officerPassengerPointOfContact\": [\r\n                        {\r\n                            \"pointType\": \"Upper Chest\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4568909\",\r\n                            \"createdDate\": \"2022-03-29T15:29:46.6724525\"\r\n                        },\r\n                        {\r\n                            \"pointType\": \"Stomach\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4568947\",\r\n                            \"createdDate\": \"2022-03-29T15:29:46.6793859\"\r\n                        }\r\n                    ],\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4568854\",\r\n                    \"createdDate\": \"2022-03-29T15:27:50.5756208\"\r\n                }\r\n            ],\r\n            \"officerPointOfContact\": [\r\n                {\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4568568\",\r\n                    \"createdDate\": \"2022-03-29T15:26:17.5464274\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Glutes\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4568587\",\r\n                    \"createdDate\": \"2022-03-29T15:26:17.5465246\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Hamstring (left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4568603\",\r\n                    \"createdDate\": \"2022-03-29T15:26:17.5465588\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-29T15:26:17.5354819\",\r\n                    \"createdDate\": \"2022-03-29T15:26:17.5354579\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Glutes\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-29T15:26:17.5422338\",\r\n                    \"createdDate\": \"2022-03-29T15:26:17.5422335\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Hamstring (left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-29T15:26:17.5423148\",\r\n                    \"createdDate\": \"2022-03-29T15:26:17.5423146\"\r\n                }\r\n            ],\r\n            \"fullName\": \"\",\r\n            \"modifiedDate\": \"2022-03-30T09:53:53.4568508\",\r\n            \"createdDate\": \"2022-03-29T15:20:09.3296669\"\r\n        }\r\n    ],\r\n    \"properties\": [\r\n        {\r\n            \"propertyType\": \"Building\",\r\n            \"propertyValue\": \">$1000\",\r\n            \"ownerFirstName\": \"Sara\",\r\n            \"ownerMiddleName\": \"Jane\",\r\n            \"ownerLastName\": \"Smith\",\r\n            \"ownerAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"email\": \"sara.smith@gmail.com\",\r\n            \"phone1\": \"111-111-1111 x111__\",\r\n            \"phone2\": \"222-222-2222 x_____\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Female\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-30T09:53:53.4570058\",\r\n            \"createdDate\": \"2022-03-30T09:30:50.2421677\"\r\n        }\r\n    ],\r\n    \"suspects\": [\r\n        {\r\n            \"firstName\": \"Sara\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jane\",\r\n            \"suspectAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Female\",\r\n            \"suspectDateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"height\": \"\",\r\n            \"weight\": \"\",\r\n            \"build\": \"\",\r\n            \"education\": \"\",\r\n            \"driverLicenseNumber\": \"FL123456\",\r\n            \"driverLicenseExpiration\": \"03/01/2022\",\r\n            \"suspectInjured\": \"Yes\",\r\n            \"suspectInjuryType\": \"Abrasion(s)\",\r\n            \"suspectInjurySeverity\": \"Fatal injury\",\r\n            \"howInjuryOccurredToSuspect\": \"Officer Actions\",\r\n            \"medicalTreatmentOfSuspect\": \"Yes\",\r\n            \"medicalTreatmentOfSuspectBy\": \"The Doctor\",\r\n            \"suspectTransported\": \"Yes\",\r\n            \"suspectTransportedBy\": \"EMS\",\r\n            \"suspectTransportedTo\": \"The Hospital\",\r\n            \"suspectTransportedTime\": \"12:12:00\",\r\n            \"suspectInjuryPhotos\": \"\",\r\n            \"suspectInjuryPhotosTakenBy\": \"\",\r\n            \"suspectArrested\": \"Yes\",\r\n            \"suspectArrestedForFelony\": \"\",\r\n            \"suspectArrestCharge\": \"28-1911 Failure to yield|||28-886 Speeding\",\r\n            \"suspectJailNumber\": \"\",\r\n            \"suspectWhyNotArrested\": \"\",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"Scion\",\r\n            \"vehicleModel\": \"xB\",\r\n            \"year\": \"2015\",\r\n            \"vehicleTag\": \"FL1234\",\r\n            \"vehicleState\": \"FL\",\r\n            \"vehicleDamaged\": \"Yes\",\r\n            \"vehicleDamageType\": \"Severe Damage\",\r\n            \"vehicleDamageAmount\": \"$500 - $1,000\",\r\n            \"vehicleTowed\": \"Yes\",\r\n            \"towingCompany\": \"Anytown Service\",\r\n            \"nonEditable\": false,\r\n            \"licenseState\": \"\",\r\n            \"vin\": \"\",\r\n            \"vehicleTowCompany\": \"\",\r\n            \"photosofVehicleDamage\": \"\",\r\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\r\n            \"suspectTransportedByDropDown\": \"\",\r\n            \"suspectTransportedToDropDown\": \"\",\r\n            \"vehicleDamage\": \"\",\r\n            \"suspectCategory\": \"\",\r\n            \"custodyLocation\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"suspectPassengers\": [\r\n                {\r\n                    \"passengerFirstName\": \"Ralph\",\r\n                    \"passengerMiddleName\": \"Waldo\",\r\n                    \"passengerLastName\": \"Emmerson\",\r\n                    \"passengerAddress\": \"1234 Main Street\",\r\n                    \"passengerCity\": \"Jacksonville\",\r\n                    \"passengerState\": \"FL\",\r\n                    \"passengerDob\": \"03/01/1980\",\r\n                    \"passengerRace\": \"Hispanic/Latino\",\r\n                    \"passengerGender\": \"Male\",\r\n                    \"passengerEmail\": \"r.emmerson@compuserve.com\",\r\n                    \"passengerPhone1\": \"111-111-1111 x111__\",\r\n                    \"passengerPhone2\": \"222-222-2222 x222__\",\r\n                    \"passengerInjured\": \"Yes\",\r\n                    \"passengerInjuryType\": \"Blunt Trauma\",\r\n                    \"passengerInjurySeverity\": \"Incapacitating\",\r\n                    \"passengerHowInjuryOccurred\": \"Suspect’s Actions\",\r\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\r\n                    \"passengerMedicalTreatmentReceivedBy\": \"Some Dude\",\r\n                    \"passengerTransported\": \"Yes\",\r\n                    \"passengerTransportedBy\": \"EMS\",\r\n                    \"passengerTransportedTo\": \"The Hospital\",\r\n                    \"passengerTransportedTime\": \"12:12:00\",\r\n                    \"passengerInjuryPhotos\": \"\",\r\n                    \"passengerInjuryPhotosTakenBy\": \"\",\r\n                    \"passengerArrested\": \"Yes\",\r\n                    \"passengerArrestedForFelony\": \"\",\r\n                    \"passengerArrestCharge\": \"28-1911 Failure to yield\",\r\n                    \"passengerJailNumber\": \"\",\r\n                    \"passengerWhyNotArrested\": \"They didn't do anything illegal.  \",\r\n                    \"passengerMedicalTreatmentReceivedByDropDown\": \"\",\r\n                    \"passengerTransportedByDropDown\": \"\",\r\n                    \"passengerTransportedToDropDown\": \"\",\r\n                    \"ethnicity\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"primaryReferenceId\": null,\r\n                    \"suspectPassengerPointsOfContact\": [\r\n                        {\r\n                            \"pointType\": \"Thigh (right)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T09:53:53.429794\",\r\n                            \"createdDate\": \"2022-03-30T07:44:56.9354416\"\r\n                        },\r\n                        {\r\n                            \"pointType\": \"Upper Arm(left)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T09:53:53.429793\",\r\n                            \"createdDate\": \"2022-03-30T07:44:56.9354077\"\r\n                        },\r\n                        {\r\n                            \"pointType\": \"Forearm (front/right)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4297918\",\r\n                            \"createdDate\": \"2022-03-30T07:44:56.9353334\"\r\n                        },\r\n                        {\r\n                            \"pointType\": \"Calf (right)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4297965\",\r\n                            \"createdDate\": \"2022-03-30T07:44:56.9355082\"\r\n                        },\r\n                        {\r\n                            \"pointType\": \"Glutes\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4297953\",\r\n                            \"createdDate\": \"2022-03-30T07:44:56.9354754\"\r\n                        },\r\n                        {\r\n                            \"pointType\": \"Face\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4297904\",\r\n                            \"createdDate\": \"2022-03-30T07:44:56.9286435\"\r\n                        }\r\n                    ],\r\n                    \"suspectPassengerChargeClassifications\": [\r\n                        {\r\n                            \"charge\": \"28-1911 Failure to yield\",\r\n                            \"chargeClasification1\": true,\r\n                            \"chargeClasification2\": false,\r\n                            \"chargeClasification3\": false,\r\n                            \"chargeClasification4\": false,\r\n                            \"chargeClasification5\": false,\r\n                            \"chargeClasification6\": \"\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-03-30T09:53:53.4466496\",\r\n                            \"createdDate\": \"2022-03-30T09:53:53.4466073\"\r\n                        }\r\n                    ],\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4297819\",\r\n                    \"createdDate\": \"2022-03-30T07:37:26.4401479\"\r\n                }\r\n            ],\r\n            \"suspectPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Face\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4297541\",\r\n                    \"createdDate\": \"2022-03-30T07:37:08.7430488\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Calf (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4297556\",\r\n                    \"createdDate\": \"2022-03-30T07:37:08.7508393\"\r\n                }\r\n            ],\r\n            \"suspectChargeClassifications\": [\r\n                {\r\n                    \"charge\": \"28-1911 Failure to yield\",\r\n                    \"chargeClasification1\": false,\r\n                    \"chargeClasification2\": true,\r\n                    \"chargeClasification3\": true,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4567582\",\r\n                    \"createdDate\": \"2022-03-30T07:37:08.756308\"\r\n                },\r\n                {\r\n                    \"charge\": \"28-886 Speeding\",\r\n                    \"chargeClasification1\": false,\r\n                    \"chargeClasification2\": true,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4567608\",\r\n                    \"createdDate\": \"2022-03-30T09:41:53.9703176\"\r\n                }\r\n            ],\r\n            \"vehicleOwner\": \"\",\r\n            \"modifiedDate\": \"2022-03-30T09:53:53.4297439\",\r\n            \"createdDate\": \"2022-03-30T07:29:23.2060341\"\r\n        }\r\n    ],\r\n    \"victims\": [\r\n        {\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jason\",\r\n            \"victimAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"victimEmail\": \"john.smith@gmail.com\",\r\n            \"victimPhone1\": \"111-111-1111 x1111_\",\r\n            \"victimPhone2\": \"222-222-2222 x222__\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"victimDateOfBirth\": \"03/01/1980\",\r\n            \"victimInjured\": \"Yes\",\r\n            \"victimInjuryType\": \"Broken Bone\",\r\n            \"victimInjurySeverity\": \"Other  (describe in narrative)\",\r\n            \"victimHowInjuryToVictimOccurred\": \"Officer\",\r\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\r\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\r\n            \"victimTransported\": \"Yes\",\r\n            \"victimTransportedBy\": \"EMS\",\r\n            \"victimTransportedTo\": \"The Hospital\",\r\n            \"victimTransportedTime\": \"12:12:00\",\r\n            \"victimInjuryPhotos\": \"\",\r\n            \"victimInjuryPhotosTakenBy\": \"\",\r\n            \"victimMedicalTreatmentOfVictimByDropDown\": \"\",\r\n            \"victimTransportedByDropDown\": \"\",\r\n            \"victimTransportedToDropDown\": \"\",\r\n            \"nonEditable\": false,\r\n            \"agency\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"victimPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Stomach\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.4569485\",\r\n                    \"createdDate\": \"2022-03-30T08:03:07.8140945\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-30T09:53:53.456947\",\r\n                    \"createdDate\": \"2022-03-30T08:03:07.8043918\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-30T09:53:53.456939\",\r\n            \"createdDate\": \"2022-03-30T08:00:11.2614705\"\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jason\",\r\n            \"witnessAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"witnessEmail\": \"john.smith@gmail.com\",\r\n            \"witnessPhone1\": \"111-111-1111 x_____\",\r\n            \"witnessPhone2\": \"222-222-2222 x222__\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"witnessDateOfBirth\": \"03/01/1980\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-30T09:53:53.4569804\",\r\n            \"createdDate\": \"2022-03-30T09:33:59.2672054\"\r\n        }\r\n    ],\r\n    \"reviews\": [\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T08:07:52.6501428\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T08:07:52.6501428\",\r\n            \"createdDate\": \"2022-04-01T08:07:52.6499335\"\r\n        },\r\n        {\r\n            \"userId\": 95475,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T08:07:52.6555559\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T08:07:52.6555559\",\r\n            \"createdDate\": \"2022-04-01T08:07:52.6555552\"\r\n        }\r\n    ],\r\n    \"reviewFormValues\": [\r\n        {\r\n            \"title\": \"Title\",\r\n            \"type\": \"Type\",\r\n            \"value\": \"Value\",\r\n            \"ordinal\": 1,\r\n            \"indent\": 0,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 3043,\r\n            \"modifiedDate\": \"2022-04-01T08:35:27.5392579\",\r\n            \"createdDate\": \"2022-04-01T08:35:27.5392579\"\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-03-30T09:53:53.457065\",\r\n    \"createdDate\": \"2022-03-29T15:11:08.7495205\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/vipr"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmlwcg==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Apr 2022 17:05:13 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"incidentId\": 3046,\n    \"creator\": \"\",\n    \"reviewer\": \"\",\n    \"creatorId\": 8,\n    \"status\": \"Editing\",\n    \"incidentCaseNumber\": \"TestCase-002\",\n    \"relatedIncidentCase\": \"\",\n    \"pursuitDate\": \"03/01/2022\",\n    \"pursuitTime\": \"12:12:00\",\n    \"reportDate\": \"03/29/2022\",\n    \"reportTime\": \"15:11:00\",\n    \"supervisorMonitoringRank\": \"Patrol\",\n    \"supervisorMonitoringName\": \"John Smith\",\n    \"supervisorMonitoringId\": \"090\",\n    \"supervisorRespondingRank\": \"Officer\",\n    \"supervisorRespondingName\": \"Jane Smith\",\n    \"supervisorRespondingId\": \"4322\",\n    \"pursuitReason\": \"On View Violation\",\n    \"pursuitDispatched\": \"On-View\",\n    \"pursuitStartTime\": \"12:12:00\",\n    \"pursuitStartArea1\": \"District 721\",\n    \"pursuitStartArea2\": \"\",\n    \"pursuitStartArea3\": \"\",\n    \"pursuitEndTime\": \"12:56:00\",\n    \"pursuitEndArea1\": \"District 741\",\n    \"pursuitEndArea2\": \"\",\n    \"pursuitEndArea3\": \"\",\n    \"pursuitDuration\": \"44 Minutes\",\n    \"pursuitHighestSpeed\": \"50-80 mph\",\n    \"trafficPattern\": \"Moderate\",\n    \"weatherConditions\": \"Ice\",\n    \"pursuitDistance\": \"45\",\n    \"howPursuitTerminated\": \"Cruiser Damaged\",\n    \"pursuitTerminationReason\": \"Pursuing Officer Terminated\",\n    \"terminationTactics\": \"Pit Maneuver \",\n    \"incidentDocumentAttached\": \"\",\n    \"resourceInvolved\": \"K-9\",\n    \"pursuitRoute\": \"Up the road, then over to the left.\",\n    \"pursuitJustification\": \"Robbery\",\n    \"pursuitResultCrash\": \"Yes\",\n    \"trackingNumber\": \"2022 - 13\",\n    \"trackingId\": 13,\n    \"trackingYear\": 2022,\n    \"subReportNumber\": null,\n    \"reportType\": \"\",\n    \"routing\": \"Command Staff\",\n    \"deleteComments\": \"\",\n    \"involvedOfficer\": true,\n    \"involvedSuspect\": true,\n    \"involvedVictim\": true,\n    \"involvedWitness\": true,\n    \"involvedProperty\": true,\n    \"involvedNarrative\": true,\n    \"nonEditable\": false,\n    \"sealed\": false,\n    \"involvedSupervisorReview\": true,\n    \"sectionCode\": \"\",\n    \"agency\": \"Highway Patrol\",\n    \"optional1\": \"Far Point Police Department\",\n    \"optional2\": \"\",\n    \"optional3\": \"\",\n    \"optional4\": \"\",\n    \"optional5\": \"\",\n    \"optional6\": \"\",\n    \"optional7\": \"\",\n    \"optional8\": \"\",\n    \"optional9\": \"\",\n    \"optional10\": \"\",\n    \"optional11\": \"\",\n    \"optional12\": \"\",\n    \"influenceFactors\": \"\",\n    \"primaryReferenceId\": null,\n    \"narratives\": [\n        {\n            \"narrativeId\": 3046,\n            \"incidentId\": 3046,\n            \"narrative\": \"This was one really hot pursuit.  Of all the pursuits I've been on, this was one of them.\",\n            \"nonEditable\": false,\n            \"modifiedDate\": \"2022-04-01T13:05:13.2305538\",\n            \"createdDate\": \"2022-04-01T13:05:13.2305145\"\n        }\n    ],\n    \"officers\": [\n        {\n            \"incidentOfficerId\": 1028,\n            \"incidentId\": 3046,\n            \"officerId\": \"B123456\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Simon\",\n            \"officerPrimary\": \"Yes\",\n            \"officerOnDuty\": \"Yes\",\n            \"officerPermanentAssignment\": \"North Sector\",\n            \"officerInUniform\": \"Yes\",\n            \"race\": \"Hispanic/Latino\",\n            \"gender\": \"Male\",\n            \"age\": \"35\",\n            \"driverLicense\": \"FL123456\",\n            \"driverLicenseExpirationDate\": \"03/07/2022\",\n            \"officerYearsWithAgency\": \"12\",\n            \"officerTotalYearsInLawEnforcement\": \"12\",\n            \"education\": \"\",\n            \"pursuitTrainingType\": \"Academy\",\n            \"officerInjured\": \"Yes\",\n            \"officerInjuryType\": \"Abrasion(s)\",\n            \"officerInjurySeverity\": \"Possible\",\n            \"officerHowInjuryOccurred\": \"Suspect’s Actions\",\n            \"officerMedicalTreatmentReceived\": \"Yes\",\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\n            \"officerTransported\": \"Yes\",\n            \"officerTransportedBy\": \"EMS\",\n            \"officerTransportedTo\": \"The Hospital\",\n            \"officerTransportedTime\": \"12:12:00\",\n            \"officerInjuryPhotos\": \"\",\n            \"officerInjuryPhotosTakenBy\": \"\",\n            \"vehicleNumber\": \"PC-11\",\n            \"vehicleType\": \"Car\",\n            \"vehicleMake\": \"MINI\",\n            \"vehicleModel\": \"Cooper\",\n            \"year\": \"2021\",\n            \"vehicleTag\": \"FL1234\",\n            \"state\": \"FL\",\n            \"vehicleDamaged\": \"Yes\",\n            \"vehicleDamageType\": \"Driver Side Rear Fender\",\n            \"vehicleDamageAmount\": \"$500 - $1,000\",\n            \"vehicleTowed\": \"Yes\",\n            \"towingCompany\": \"Anytown Service\",\n            \"rank\": \"\",\n            \"licenseState\": \"\",\n            \"nonEditable\": false,\n            \"vehicleOwner\": \"Sara Jane Smith\",\n            \"bodyWornCamera\": \"\",\n            \"activated\": \"\",\n            \"vehicleTowCompany\": \"\",\n            \"photosofVehicleDamage\": \"\",\n            \"officerMedicalTreatmentReceivedByDropDown\": \"\",\n            \"officerTransportedByDropDown\": \"\",\n            \"officerTransportedToDropDown\": \"\",\n            \"vehicleDamage\": \"\",\n            \"ethnicity\": \"\",\n            \"primaryReferenceId\": null,\n            \"passengers\": [\n                {\n                    \"officerPassengerId\": 11,\n                    \"incidentOfficerId\": 1028,\n                    \"isOfficer\": \"\",\n                    \"officerId\": \"\",\n                    \"passengerFirstName\": \"John\",\n                    \"passengerMiddleName\": \"Jason\",\n                    \"passengerLastName\": \"Smith\",\n                    \"passengerAddress\": \"1234 Main Street\",\n                    \"passengerCity\": \"Jacksonville\",\n                    \"passengerState\": \"FL\",\n                    \"passengerDob\": \"03/01/1980\",\n                    \"passengerRace\": \"White\",\n                    \"passengerGender\": \"Male\",\n                    \"passengerEmail\": \"\",\n                    \"passengerPhone1\": \"\",\n                    \"passengerPhone2\": \"\",\n                    \"passengerInjured\": \"Yes\",\n                    \"passengerInjuryType\": \"Blunt Trauma\",\n                    \"passengerInjurySeverity\": \"Other  (describe in narrative)\",\n                    \"passengerHowInjuryOccurred\": \"Officer\",\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\n                    \"passengerMedicalTreatmentReceivedBy\": \"The Doctor\",\n                    \"passengerTransported\": \"Yes\",\n                    \"passengerTransportedBy\": \"EMS\",\n                    \"passengerTransportedTo\": \"The Place that Fixes People\",\n                    \"passengerTransportedTime\": \"12:12:00\",\n                    \"passengerInjuryPhotos\": \"\",\n                    \"passengerInjuryPhotosTakenBy\": \"\",\n                    \"passengerMedicalTreatmentReceivedByDropDown\": \"\",\n                    \"passengerTransportedByDropDown\": \"\",\n                    \"passengerTransportedToDropDown\": \"\",\n                    \"ethnicity\": \"\",\n                    \"nonEditable\": false,\n                    \"primaryReferenceId\": null,\n                    \"officerPassengerPointOfContact\": [\n                        {\n                            \"pointOfContactId\": 3,\n                            \"officerPassengerId\": 11,\n                            \"pointType\": \"Upper Chest\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T13:05:13.2011142\",\n                            \"createdDate\": \"2022-04-01T13:05:13.2010461\"\n                        },\n                        {\n                            \"pointOfContactId\": 4,\n                            \"officerPassengerId\": 11,\n                            \"pointType\": \"Stomach\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T13:05:13.2011701\",\n                            \"createdDate\": \"2022-04-01T13:05:13.2011699\"\n                        }\n                    ],\n                    \"modifiedDate\": \"2022-04-01T13:05:13.20053\",\n                    \"createdDate\": \"2022-04-01T13:05:13.2004917\"\n                }\n            ],\n            \"officerPointOfContact\": [\n                {\n                    \"officerPointOfContactId\": 10,\n                    \"officerId\": 1028,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1880803\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1879972\"\n                },\n                {\n                    \"officerPointOfContactId\": 11,\n                    \"officerId\": 1028,\n                    \"pointType\": \"Glutes\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1881239\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1881237\"\n                },\n                {\n                    \"officerPointOfContactId\": 12,\n                    \"officerId\": 1028,\n                    \"pointType\": \"Hamstring (left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1881248\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1881246\"\n                },\n                {\n                    \"officerPointOfContactId\": 13,\n                    \"officerId\": 1028,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1881257\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1881256\"\n                },\n                {\n                    \"officerPointOfContactId\": 14,\n                    \"officerId\": 1028,\n                    \"pointType\": \"Glutes\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1881265\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1881264\"\n                },\n                {\n                    \"officerPointOfContactId\": 15,\n                    \"officerId\": 1028,\n                    \"pointType\": \"Hamstring (left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1881274\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1881272\"\n                }\n            ],\n            \"fullName\": \"\",\n            \"modifiedDate\": \"2022-04-01T13:05:13.1874812\",\n            \"createdDate\": \"2022-04-01T13:05:13.1874452\"\n        }\n    ],\n    \"properties\": [\n        {\n            \"propertyId\": 16,\n            \"incidentId\": 3046,\n            \"propertyType\": \"Building\",\n            \"propertyValue\": \">$1000\",\n            \"ownerFirstName\": \"Sara\",\n            \"ownerMiddleName\": \"Jane\",\n            \"ownerLastName\": \"Smith\",\n            \"ownerAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"email\": \"sara.smith@gmail.com\",\n            \"phone1\": \"111-111-1111 x111__\",\n            \"phone2\": \"222-222-2222 x_____\",\n            \"race\": \"White\",\n            \"gender\": \"Female\",\n            \"dateOfBirth\": \"03/01/1980\",\n            \"nonEditable\": false,\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T13:05:13.2273729\",\n            \"createdDate\": \"2022-04-01T13:05:13.2273371\"\n        }\n    ],\n    \"suspects\": [\n        {\n            \"suspectId\": 2045,\n            \"incidentId\": 3046,\n            \"firstName\": \"Sara\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Jane\",\n            \"suspectAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"race\": \"White\",\n            \"gender\": \"Female\",\n            \"suspectDateOfBirth\": \"03/01/1980\",\n            \"age\": \"\",\n            \"height\": \"\",\n            \"weight\": \"\",\n            \"build\": \"\",\n            \"education\": \"\",\n            \"driverLicenseNumber\": \"FL123456\",\n            \"driverLicenseExpiration\": \"03/01/2022\",\n            \"suspectInjured\": \"Yes\",\n            \"suspectInjuryType\": \"Abrasion(s)\",\n            \"suspectInjurySeverity\": \"Fatal injury\",\n            \"howInjuryOccurredToSuspect\": \"Officer Actions\",\n            \"medicalTreatmentOfSuspect\": \"Yes\",\n            \"medicalTreatmentOfSuspectBy\": \"The Doctor\",\n            \"suspectTransported\": \"Yes\",\n            \"suspectTransportedBy\": \"EMS\",\n            \"suspectTransportedTo\": \"The Hospital\",\n            \"suspectTransportedTime\": \"12:12:00\",\n            \"suspectInjuryPhotos\": \"\",\n            \"suspectInjuryPhotosTakenBy\": \"\",\n            \"suspectArrested\": \"Yes\",\n            \"suspectArrestedForFelony\": \"\",\n            \"suspectArrestCharge\": \"28-1911 Failure to yield|||28-886 Speeding\",\n            \"suspectJailNumber\": \"\",\n            \"suspectWhyNotArrested\": \"\",\n            \"vehicleType\": \"Car\",\n            \"vehicleMake\": \"Scion\",\n            \"vehicleModel\": \"xB\",\n            \"year\": \"2015\",\n            \"vehicleTag\": \"FL1234\",\n            \"vehicleState\": \"FL\",\n            \"vehicleDamaged\": \"Yes\",\n            \"vehicleDamageType\": \"Severe Damage\",\n            \"vehicleDamageAmount\": \"$500 - $1,000\",\n            \"vehicleTowed\": \"Yes\",\n            \"towingCompany\": \"Anytown Service\",\n            \"nonEditable\": false,\n            \"licenseState\": \"\",\n            \"vin\": \"\",\n            \"vehicleTowCompany\": \"\",\n            \"photosofVehicleDamage\": \"\",\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\n            \"suspectTransportedByDropDown\": \"\",\n            \"suspectTransportedToDropDown\": \"\",\n            \"vehicleDamage\": \"\",\n            \"suspectCategory\": \"\",\n            \"custodyLocation\": \"\",\n            \"ethnicity\": \"\",\n            \"primaryReferenceId\": null,\n            \"suspectPassengers\": [\n                {\n                    \"suspectPassengerId\": 1013,\n                    \"suspectId\": 2045,\n                    \"passengerFirstName\": \"Ralph\",\n                    \"passengerMiddleName\": \"Waldo\",\n                    \"passengerLastName\": \"Emmerson\",\n                    \"passengerAddress\": \"1234 Main Street\",\n                    \"passengerCity\": \"Jacksonville\",\n                    \"passengerState\": \"FL\",\n                    \"passengerDob\": \"03/01/1980\",\n                    \"passengerRace\": \"Hispanic/Latino\",\n                    \"passengerGender\": \"Male\",\n                    \"passengerEmail\": \"r.emmerson@compuserve.com\",\n                    \"passengerPhone1\": \"111-111-1111 x111__\",\n                    \"passengerPhone2\": \"222-222-2222 x222__\",\n                    \"passengerInjured\": \"Yes\",\n                    \"passengerInjuryType\": \"Blunt Trauma\",\n                    \"passengerInjurySeverity\": \"Incapacitating\",\n                    \"passengerHowInjuryOccurred\": \"Suspect’s Actions\",\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\n                    \"passengerMedicalTreatmentReceivedBy\": \"Some Dude\",\n                    \"passengerTransported\": \"Yes\",\n                    \"passengerTransportedBy\": \"EMS\",\n                    \"passengerTransportedTo\": \"The Hospital\",\n                    \"passengerTransportedTime\": \"12:12:00\",\n                    \"passengerInjuryPhotos\": \"\",\n                    \"passengerInjuryPhotosTakenBy\": \"\",\n                    \"passengerArrested\": \"Yes\",\n                    \"passengerArrestedForFelony\": \"\",\n                    \"passengerArrestCharge\": \"28-1911 Failure to yield\",\n                    \"passengerJailNumber\": \"\",\n                    \"passengerWhyNotArrested\": \"They didn't do anything illegal.  \",\n                    \"passengerMedicalTreatmentReceivedByDropDown\": \"\",\n                    \"passengerTransportedByDropDown\": \"\",\n                    \"passengerTransportedToDropDown\": \"\",\n                    \"ethnicity\": \"\",\n                    \"nonEditable\": false,\n                    \"primaryReferenceId\": null,\n                    \"suspectPassengerPointsOfContact\": [\n                        {\n                            \"suspectPassengerPointOfContactId\": 7,\n                            \"suspectPassengerId\": 1013,\n                            \"pointType\": \"Thigh (right)\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T13:05:13.1644057\",\n                            \"createdDate\": \"2022-04-01T13:05:13.1643171\"\n                        },\n                        {\n                            \"suspectPassengerPointOfContactId\": 8,\n                            \"suspectPassengerId\": 1013,\n                            \"pointType\": \"Upper Arm(left)\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T13:05:13.1644552\",\n                            \"createdDate\": \"2022-04-01T13:05:13.1644549\"\n                        },\n                        {\n                            \"suspectPassengerPointOfContactId\": 9,\n                            \"suspectPassengerId\": 1013,\n                            \"pointType\": \"Forearm (front/right)\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T13:05:13.1644617\",\n                            \"createdDate\": \"2022-04-01T13:05:13.1644615\"\n                        },\n                        {\n                            \"suspectPassengerPointOfContactId\": 10,\n                            \"suspectPassengerId\": 1013,\n                            \"pointType\": \"Calf (right)\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T13:05:13.1644626\",\n                            \"createdDate\": \"2022-04-01T13:05:13.1644624\"\n                        },\n                        {\n                            \"suspectPassengerPointOfContactId\": 11,\n                            \"suspectPassengerId\": 1013,\n                            \"pointType\": \"Glutes\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T13:05:13.1644634\",\n                            \"createdDate\": \"2022-04-01T13:05:13.1644632\"\n                        },\n                        {\n                            \"suspectPassengerPointOfContactId\": 12,\n                            \"suspectPassengerId\": 1013,\n                            \"pointType\": \"Face\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T13:05:13.1644643\",\n                            \"createdDate\": \"2022-04-01T13:05:13.1644641\"\n                        }\n                    ],\n                    \"suspectPassengerChargeClassifications\": [\n                        {\n                            \"suspectPassengerChargeClassificationId\": 2,\n                            \"suspectPassengerId\": 1013,\n                            \"charge\": \"28-1911 Failure to yield\",\n                            \"chargeClasification1\": true,\n                            \"chargeClasification2\": false,\n                            \"chargeClasification3\": false,\n                            \"chargeClasification4\": false,\n                            \"chargeClasification5\": false,\n                            \"chargeClasification6\": \"\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T13:05:13.165183\",\n                            \"createdDate\": \"2022-04-01T13:05:13.165095\"\n                        }\n                    ],\n                    \"modifiedDate\": \"2022-04-01T13:05:13.163792\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1637532\"\n                }\n            ],\n            \"suspectPointsOfContact\": [\n                {\n                    \"suspectPointOfContactId\": 8,\n                    \"suspectId\": 2045,\n                    \"pointType\": \"Face\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1496815\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1495967\"\n                },\n                {\n                    \"suspectPointOfContactId\": 9,\n                    \"suspectId\": 2045,\n                    \"pointType\": \"Calf (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:05:13.149736\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1497358\"\n                }\n            ],\n            \"suspectChargeClassifications\": [\n                {\n                    \"suspectChargeClassificationId\": 7,\n                    \"suspectId\": 2045,\n                    \"charge\": \"28-1911 Failure to yield\",\n                    \"chargeClasification1\": false,\n                    \"chargeClasification2\": true,\n                    \"chargeClasification3\": true,\n                    \"chargeClasification4\": false,\n                    \"chargeClasification5\": false,\n                    \"chargeClasification6\": \"\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:05:13.150413\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1503422\"\n                },\n                {\n                    \"suspectChargeClassificationId\": 8,\n                    \"suspectId\": 2045,\n                    \"charge\": \"28-886 Speeding\",\n                    \"chargeClasification1\": false,\n                    \"chargeClasification2\": true,\n                    \"chargeClasification3\": false,\n                    \"chargeClasification4\": false,\n                    \"chargeClasification5\": false,\n                    \"chargeClasification6\": \"\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1504555\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1504552\"\n                }\n            ],\n            \"vehicleOwner\": \"\",\n            \"modifiedDate\": \"2022-04-01T13:05:13.149051\",\n            \"createdDate\": \"2022-04-01T13:05:13.1490134\"\n        }\n    ],\n    \"victims\": [\n        {\n            \"victimId\": 6,\n            \"incidentId\": 3046,\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Jason\",\n            \"victimAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"victimEmail\": \"john.smith@gmail.com\",\n            \"victimPhone1\": \"111-111-1111 x1111_\",\n            \"victimPhone2\": \"222-222-2222 x222__\",\n            \"race\": \"Black\",\n            \"gender\": \"Male\",\n            \"victimDateOfBirth\": \"03/01/1980\",\n            \"victimInjured\": \"Yes\",\n            \"victimInjuryType\": \"Broken Bone\",\n            \"victimInjurySeverity\": \"Other  (describe in narrative)\",\n            \"victimHowInjuryToVictimOccurred\": \"Officer\",\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\n            \"victimTransported\": \"Yes\",\n            \"victimTransportedBy\": \"EMS\",\n            \"victimTransportedTo\": \"The Hospital\",\n            \"victimTransportedTime\": \"12:12:00\",\n            \"victimInjuryPhotos\": \"\",\n            \"victimInjuryPhotosTakenBy\": \"\",\n            \"victimMedicalTreatmentOfVictimByDropDown\": \"\",\n            \"victimTransportedByDropDown\": \"\",\n            \"victimTransportedToDropDown\": \"\",\n            \"nonEditable\": false,\n            \"agency\": \"\",\n            \"primaryReferenceId\": null,\n            \"victimPointsOfContact\": [\n                {\n                    \"victimPointOfContact\": 3,\n                    \"victimId\": 6,\n                    \"pointType\": \"Stomach\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:05:13.2133887\",\n                    \"createdDate\": \"2022-04-01T13:05:13.2133045\"\n                },\n                {\n                    \"victimPointOfContact\": 4,\n                    \"victimId\": 6,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:05:13.2134368\",\n                    \"createdDate\": \"2022-04-01T13:05:13.2134365\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T13:05:13.212826\",\n            \"createdDate\": \"2022-04-01T13:05:13.2127903\"\n        }\n    ],\n    \"witnesses\": [\n        {\n            \"witnessId\": 7,\n            \"incidentId\": 3046,\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Jason\",\n            \"witnessAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"witnessEmail\": \"john.smith@gmail.com\",\n            \"witnessPhone1\": \"111-111-1111 x_____\",\n            \"witnessPhone2\": \"222-222-2222 x222__\",\n            \"race\": \"White\",\n            \"gender\": \"Male\",\n            \"witnessDateOfBirth\": \"03/01/1980\",\n            \"nonEditable\": false,\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T13:05:13.2202486\",\n            \"createdDate\": \"2022-04-01T13:05:13.2202238\"\n        }\n    ],\n    \"reviews\": [],\n    \"reviewFormValues\": [\n        {\n            \"reviewFormValueId\": 3,\n            \"title\": \"Title\",\n            \"type\": \"Type\",\n            \"value\": \"Value\",\n            \"ordinal\": 1,\n            \"indent\": 0,\n            \"helpSeg\": \"\",\n            \"formValue\": \"\",\n            \"incidentId\": 3046,\n            \"modifiedDate\": \"2022-04-01T13:05:13.1699735\",\n            \"createdDate\": \"2022-04-01T13:05:13.1699248\"\n        }\n    ],\n    \"modifiedDate\": \"2022-04-01T13:05:13.1298869\",\n    \"createdDate\": \"2022-04-01T13:05:13.1298452\"\n}"},{"id":"d9931c18-0c50-4d27-81dd-477357d85ed8","name":"Case Number Already Exists","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 50132,\r\n    \"status\": \"Completed\",\r\n    \"incidentCaseNumber\": \"MyCaseNumber-001\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"pursuitDate\": \"10/10/2019\",\r\n    \"pursuitTime\": \"12:00:00\",\r\n    \"reportDate\": \"10/10/2019\",\r\n    \"reportTime\": \"12:15:00\",\r\n    \"supervisorMonitoringRank\": \"Lieutenant\",\r\n    \"supervisorMonitoringName\": \"Libby Powell\",\r\n    \"supervisorMonitoringId\": \"0125\",\r\n    \"supervisorRespondingRank\": \"Lieutenant\",\r\n    \"supervisorRespondingName\": \"Libby Powell\",\r\n    \"supervisorRespondingId\": \"0125\",\r\n    \"pursuitReason\": \"Felony Criminal Complaint\",\r\n    \"pursuitDispatched\": \"On-View\",\r\n    \"pursuitStartTime\": \"12:00:00\",\r\n    \"pursuitStartArea1\": \"District 731\",\r\n    \"pursuitStartArea2\": \"\",\r\n    \"pursuitStartArea3\": \"\",\r\n    \"pursuitEndTime\": \"12:10:00\",\r\n    \"pursuitEndArea1\": \"District 721\",\r\n    \"pursuitEndArea2\": \"\",\r\n    \"pursuitEndArea3\": \"\",\r\n    \"pursuitDuration\": \"5-10 Minutes\",\r\n    \"pursuitHighestSpeed\": \"50-80 mph\",\r\n    \"trafficPattern\": \"No Pedestrian Traffic\",\r\n    \"weatherConditions\": \"Fog\",\r\n    \"pursuitDistance\": \"1-5 Miles\",\r\n    \"howPursuitTerminated\": \"Suspect Stopped\",\r\n    \"pursuitTerminationReason\": \"Suspect Captured\",\r\n    \"terminationTactics\": \"Tire Deflation Device\",\r\n    \"incidentDocumentAttached\": \"No\",\r\n    \"resourceInvolved\": \"Helicopter\",\r\n    \"pursuitRoute\": \"Vehicle Pursuits are one of the top liabilities agency leaders face. According to the Bureau of Justice Statistics, every year law enforcement is involved in more than 50,000 pursuits, and each day one person is killed as the result of a pursuit. Sadly, in one-third of these cases, it is an innocent bystander that is the victim. These statistics emphasize the importance for each law enforcement agency to uphold a pursuit policy that specifies the agency’s pursuit guidelines. It is equally important that officers receive proper training and ensure all pursuits are properly documented.\",\r\n    \"pursuitJustification\": \"Vehicle Pursuits are one of the top liabilities agency leaders face. According to the Bureau of Justice Statistics, every year law enforcement is involved in more than 50,000 pursuits, and each day one person is killed as the result of a pursuit. Sadly, in one-third of these cases, it is an innocent bystander that is the victim. These statistics emphasize the importance for each law enforcement agency to uphold a pursuit policy that specifies the agency’s pursuit guidelines. It is equally important that officers receive proper training and ensure all pursuits are properly documented.\",\r\n    \"pursuitResultCrash\": \"No\",\r\n    \"trackingNumber\": \"2020 - 9\",\r\n    \"trackingId\": 9,\r\n    \"trackingYear\": 2020,\r\n    \"subReportNumber\": null,\r\n    \"reportType\": \"\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"involvedOfficer\": false,\r\n    \"involvedSuspect\": true,\r\n    \"involvedVictim\": false,\r\n    \"involvedWitness\": false,\r\n    \"involvedProperty\": false,\r\n    \"involvedNarrative\": true,\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": null,\r\n    \"sectionCode\": \"\",\r\n    \"agency\": \"Anytown Police Department\",\r\n    \"optional1\": \"Anytown Police Department\",\r\n    \"optional2\": \"\",\r\n    \"optional3\": \"\",\r\n    \"optional4\": \"\",\r\n    \"optional5\": \"\",\r\n    \"optional6\": \"\",\r\n    \"optional7\": \"\",\r\n    \"optional8\": \"\",\r\n    \"optional9\": \"\",\r\n    \"optional10\": \"\",\r\n    \"optional11\": \"\",\r\n    \"optional12\": \"\",\r\n    \"influenceFactors\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"narratives\": [\r\n        {\r\n            \"narrative\": \"Vehicle Pursuits are one of the top liabilities agency leaders face. According to the Bureau of Justice Statistics, every year law enforcement is involved in more than 50,000 pursuits, and each day one person is killed as the result of a pursuit. Sadly, in one-third of these cases, it is an innocent bystander that is the victim. These statistics emphasize the importance for each law enforcement agency to uphold a pursuit policy that specifies the agency’s pursuit guidelines. It is equally important that officers receive proper training and ensure all pursuits are properly documented.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2020-02-05T15:54:37.4499154\",\r\n            \"createdDate\": \"2020-02-05T15:43:25.5507619\"\r\n        }\r\n    ],\r\n    \"officers\": [],\r\n    \"properties\": [],\r\n    \"suspects\": [\r\n        {\r\n            \"firstName\": \"Shannon\",\r\n            \"lastName\": \"Broad\",\r\n            \"middleName\": \"\",\r\n            \"suspectAddress\": \"7855\",\r\n            \"city\": \"Zoysia Ln\",\r\n            \"state\": \"NE\",\r\n            \"race\": \"Asian\",\r\n            \"gender\": \"Female\",\r\n            \"suspectDateOfBirth\": \"09/09/1999\",\r\n            \"age\": \"\",\r\n            \"height\": \"5ft-5ft3in\",\r\n            \"weight\": \"100-149\",\r\n            \"build\": \"Thin\",\r\n            \"education\": \"12\",\r\n            \"driverLicenseNumber\": \"D467-56-976-0\",\r\n            \"driverLicenseExpiration\": \"09/09/2020\",\r\n            \"suspectInjured\": \"No\",\r\n            \"suspectInjuryType\": \"\",\r\n            \"suspectInjurySeverity\": \"\",\r\n            \"howInjuryOccurredToSuspect\": \"\",\r\n            \"medicalTreatmentOfSuspect\": \"\",\r\n            \"medicalTreatmentOfSuspectBy\": \"\",\r\n            \"suspectTransported\": \"\",\r\n            \"suspectTransportedBy\": \"\",\r\n            \"suspectTransportedTo\": \"\",\r\n            \"suspectTransportedTime\": null,\r\n            \"suspectInjuryPhotos\": \"\",\r\n            \"suspectInjuryPhotosTakenBy\": \"\",\r\n            \"suspectArrested\": \"Yes\",\r\n            \"suspectArrestedForFelony\": \"No\",\r\n            \"suspectArrestCharge\": \"Charge 2\",\r\n            \"suspectJailNumber\": \"D4243\",\r\n            \"suspectWhyNotArrested\": \"\",\r\n            \"vehicleType\": \"Semi\",\r\n            \"vehicleMake\": \"Volvo\",\r\n            \"vehicleModel\": \"S200\",\r\n            \"year\": \"2017\",\r\n            \"vehicleTag\": \"R4654645\",\r\n            \"vehicleState\": \"NE\",\r\n            \"vehicleDamaged\": \"No\",\r\n            \"vehicleDamageType\": \"\",\r\n            \"vehicleDamageAmount\": \"No Damage\",\r\n            \"vehicleTowed\": \"No\",\r\n            \"towingCompany\": \"\",\r\n            \"nonEditable\": false,\r\n            \"licenseState\": \"\",\r\n            \"vin\": \"\",\r\n            \"vehicleTowCompany\": \"\",\r\n            \"photosofVehicleDamage\": \"\",\r\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\r\n            \"suspectTransportedByDropDown\": \"\",\r\n            \"suspectTransportedToDropDown\": \"\",\r\n            \"vehicleDamage\": \"\",\r\n            \"suspectCategory\": \"\",\r\n            \"custodyLocation\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"suspectPassengers\": [],\r\n            \"suspectPointsOfContact\": [],\r\n            \"suspectChargeClassifications\": [],\r\n            \"vehicleOwner\": \"\",\r\n            \"modifiedDate\": \"2020-02-05T15:54:37.4498588\",\r\n            \"createdDate\": \"2020-02-05T15:50:02.0121911\"\r\n        }\r\n    ],\r\n    \"victims\": [],\r\n    \"witnesses\": [],\r\n    \"reviews\": [\r\n        {\r\n            \"userId\": 50132,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2020-02-05T15:54:46.5766053\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2020-02-05T15:54:46.5766053\",\r\n            \"createdDate\": \"2020-02-05T15:54:46.5766039\"\r\n        },\r\n        {\r\n            \"userId\": 50129,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2020-02-05T15:54:46.5767371\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2020-02-05T15:54:46.5767371\",\r\n            \"createdDate\": \"2020-02-05T15:54:46.5767358\"\r\n        },\r\n        {\r\n            \"userId\": 50129,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2020-02-05T15:58:38.2700034\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2020-02-05T15:58:38.2700034\",\r\n            \"createdDate\": \"2020-02-05T15:58:38.2700022\"\r\n        }\r\n    ],\r\n    \"reviewFormValues\": [],\r\n    \"modifiedDate\": \"2020-02-05T15:54:37.4499684\",\r\n    \"createdDate\": \"2020-02-05T15:43:25.5507041\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/vipr"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmlwcg==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 19:46:01 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"Supplied Incident Case Number already exists!\"\n}"}],"_postman_id":"725f744f-eeaa-49c6-a107-52ad25db4d87"},{"name":"Update Vehicle Pursuit Incident","id":"cd54e81f-f8a8-4ce6-ad28-6cee34d326a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": 3046,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"Editing\",\r\n    \"incidentCaseNumber\": \"TestCase-002\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"pursuitDate\": \"03/01/2022\",\r\n    \"pursuitTime\": \"12:12:00\",\r\n    \"reportDate\": \"03/29/2022\",\r\n    \"reportTime\": \"15:11:00\",\r\n    \"supervisorMonitoringRank\": \"Patrol\",\r\n    \"supervisorMonitoringName\": \"John Smith\",\r\n    \"supervisorMonitoringId\": \"090\",\r\n    \"supervisorRespondingRank\": \"Officer\",\r\n    \"supervisorRespondingName\": \"Jane Smith\",\r\n    \"supervisorRespondingId\": \"4322\",\r\n    \"pursuitReason\": \"On View Violation\",\r\n    \"pursuitDispatched\": \"On-View\",\r\n    \"pursuitStartTime\": \"12:12:00\",\r\n    \"pursuitStartArea1\": \"District 721\",\r\n    \"pursuitStartArea2\": \"\",\r\n    \"pursuitStartArea3\": \"\",\r\n    \"pursuitEndTime\": \"12:56:00\",\r\n    \"pursuitEndArea1\": \"District 741\",\r\n    \"pursuitEndArea2\": \"\",\r\n    \"pursuitEndArea3\": \"\",\r\n    \"pursuitDuration\": \"44 Minutes\",\r\n    \"pursuitHighestSpeed\": \"50-80 mph\",\r\n    \"trafficPattern\": \"Moderate\",\r\n    \"weatherConditions\": \"Ice\",\r\n    \"pursuitDistance\": \"45\",\r\n    \"howPursuitTerminated\": \"Cruiser Damaged\",\r\n    \"pursuitTerminationReason\": \"Pursuing Officer Terminated\",\r\n    \"terminationTactics\": \"Pit Maneuver \",\r\n    \"incidentDocumentAttached\": \"\",\r\n    \"resourceInvolved\": \"K-9\",\r\n    \"pursuitRoute\": \"Up the road, then over to the left.\",\r\n    \"pursuitJustification\": \"Robbery\",\r\n    \"pursuitResultCrash\": \"Yes\",\r\n    \"trackingNumber\": \"2022 - 13\",\r\n    \"trackingId\": 13,\r\n    \"trackingYear\": 2022,\r\n    \"subReportNumber\": null,\r\n    \"reportType\": \"\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"involvedOfficer\": true,\r\n    \"involvedSuspect\": true,\r\n    \"involvedVictim\": true,\r\n    \"involvedWitness\": true,\r\n    \"involvedProperty\": true,\r\n    \"involvedNarrative\": true,\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": true,\r\n    \"sectionCode\": \"\",\r\n    \"agency\": \"Highway Patrol\",\r\n    \"optional1\": \"Far Point Police Department\",\r\n    \"optional2\": \"\",\r\n    \"optional3\": \"\",\r\n    \"optional4\": \"\",\r\n    \"optional5\": \"\",\r\n    \"optional6\": \"\",\r\n    \"optional7\": \"\",\r\n    \"optional8\": \"\",\r\n    \"optional9\": \"\",\r\n    \"optional10\": \"\",\r\n    \"optional11\": \"\",\r\n    \"optional12\": \"\",\r\n    \"influenceFactors\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 3046,\r\n            \"incidentId\": 3046,\r\n            \"narrative\": \"This was one really hot pursuit.  Of all the pursuits I've been on, this was one of them.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-04-01T13:05:13.2305538\",\r\n            \"createdDate\": \"2022-04-01T13:05:13.2305145\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"incidentOfficerId\": 1028,\r\n            \"incidentId\": 3046,\r\n            \"officerId\": \"B123456\",\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Simon\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerOnDuty\": \"Yes\",\r\n            \"officerPermanentAssignment\": \"North Sector\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"race\": \"Hispanic/Latino\",\r\n            \"gender\": \"Male\",\r\n            \"age\": \"35\",\r\n            \"driverLicense\": \"FL123456\",\r\n            \"driverLicenseExpirationDate\": \"03/07/2022\",\r\n            \"officerYearsWithAgency\": \"12\",\r\n            \"officerTotalYearsInLawEnforcement\": \"12\",\r\n            \"education\": \"\",\r\n            \"pursuitTrainingType\": \"Academy\",\r\n            \"officerInjured\": \"Yes\",\r\n            \"officerInjuryType\": \"Abrasion(s)\",\r\n            \"officerInjurySeverity\": \"Possible\",\r\n            \"officerHowInjuryOccurred\": \"Suspect’s Actions\",\r\n            \"officerMedicalTreatmentReceived\": \"Yes\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\r\n            \"officerTransported\": \"Yes\",\r\n            \"officerTransportedBy\": \"EMS\",\r\n            \"officerTransportedTo\": \"The Hospital\",\r\n            \"officerTransportedTime\": \"12:12:00\",\r\n            \"officerInjuryPhotos\": \"\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"vehicleNumber\": \"PC-11\",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"MINI\",\r\n            \"vehicleModel\": \"Cooper\",\r\n            \"year\": \"2021\",\r\n            \"vehicleTag\": \"FL1234\",\r\n            \"state\": \"FL\",\r\n            \"vehicleDamaged\": \"Yes\",\r\n            \"vehicleDamageType\": \"Driver Side Rear Fender\",\r\n            \"vehicleDamageAmount\": \"$500 - $1,000\",\r\n            \"vehicleTowed\": \"Yes\",\r\n            \"towingCompany\": \"Anytown Service\",\r\n            \"rank\": \"\",\r\n            \"licenseState\": \"\",\r\n            \"nonEditable\": false,\r\n            \"vehicleOwner\": \"Sara Jane Smith\",\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"vehicleTowCompany\": \"\",\r\n            \"photosofVehicleDamage\": \"\",\r\n            \"officerMedicalTreatmentReceivedByDropDown\": \"\",\r\n            \"officerTransportedByDropDown\": \"\",\r\n            \"officerTransportedToDropDown\": \"\",\r\n            \"vehicleDamage\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"passengers\": [\r\n                {\r\n                    \"officerPassengerId\": 11,\r\n                    \"incidentOfficerId\": 1028,\r\n                    \"isOfficer\": \"\",\r\n                    \"officerId\": \"\",\r\n                    \"passengerFirstName\": \"John\",\r\n                    \"passengerMiddleName\": \"Jason\",\r\n                    \"passengerLastName\": \"Smith\",\r\n                    \"passengerAddress\": \"1234 Main Street\",\r\n                    \"passengerCity\": \"Jacksonville\",\r\n                    \"passengerState\": \"FL\",\r\n                    \"passengerDob\": \"03/01/1980\",\r\n                    \"passengerRace\": \"White\",\r\n                    \"passengerGender\": \"Male\",\r\n                    \"passengerEmail\": \"\",\r\n                    \"passengerPhone1\": \"\",\r\n                    \"passengerPhone2\": \"\",\r\n                    \"passengerInjured\": \"Yes\",\r\n                    \"passengerInjuryType\": \"Blunt Trauma\",\r\n                    \"passengerInjurySeverity\": \"Other  (describe in narrative)\",\r\n                    \"passengerHowInjuryOccurred\": \"Officer\",\r\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\r\n                    \"passengerMedicalTreatmentReceivedBy\": \"The Doctor\",\r\n                    \"passengerTransported\": \"Yes\",\r\n                    \"passengerTransportedBy\": \"EMS\",\r\n                    \"passengerTransportedTo\": \"The Place that Fixes People\",\r\n                    \"passengerTransportedTime\": \"12:12:00\",\r\n                    \"passengerInjuryPhotos\": \"\",\r\n                    \"passengerInjuryPhotosTakenBy\": \"\",\r\n                    \"passengerMedicalTreatmentReceivedByDropDown\": \"\",\r\n                    \"passengerTransportedByDropDown\": \"\",\r\n                    \"passengerTransportedToDropDown\": \"\",\r\n                    \"ethnicity\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"primaryReferenceId\": null,\r\n                    \"officerPassengerPointOfContact\": [\r\n                        {\r\n                            \"pointOfContactId\": 3,\r\n                            \"officerPassengerId\": 11,\r\n                            \"pointType\": \"Upper Chest\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T13:05:13.2011142\",\r\n                            \"createdDate\": \"2022-04-01T13:05:13.2010461\"\r\n                        },\r\n                        {\r\n                            \"pointOfContactId\": 4,\r\n                            \"officerPassengerId\": 11,\r\n                            \"pointType\": \"Stomach\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T13:05:13.2011701\",\r\n                            \"createdDate\": \"2022-04-01T13:05:13.2011699\"\r\n                        }\r\n                    ],\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.20053\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.2004917\"\r\n                }\r\n            ],\r\n            \"officerPointOfContact\": [\r\n                {\r\n                    \"officerPointOfContactId\": 10,\r\n                    \"officerId\": 1028,\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1880803\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1879972\"\r\n                },\r\n                {\r\n                    \"officerPointOfContactId\": 11,\r\n                    \"officerId\": 1028,\r\n                    \"pointType\": \"Glutes\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1881239\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1881237\"\r\n                },\r\n                {\r\n                    \"officerPointOfContactId\": 12,\r\n                    \"officerId\": 1028,\r\n                    \"pointType\": \"Hamstring (left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1881248\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1881246\"\r\n                },\r\n                {\r\n                    \"officerPointOfContactId\": 13,\r\n                    \"officerId\": 1028,\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1881257\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1881256\"\r\n                },\r\n                {\r\n                    \"officerPointOfContactId\": 14,\r\n                    \"officerId\": 1028,\r\n                    \"pointType\": \"Glutes\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1881265\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1881264\"\r\n                },\r\n                {\r\n                    \"officerPointOfContactId\": 15,\r\n                    \"officerId\": 1028,\r\n                    \"pointType\": \"Hamstring (left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1881274\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1881272\"\r\n                }\r\n            ],\r\n            \"fullName\": \"\",\r\n            \"modifiedDate\": \"2022-04-01T13:05:13.1874812\",\r\n            \"createdDate\": \"2022-04-01T13:05:13.1874452\"\r\n        }\r\n    ],\r\n    \"properties\": [\r\n        {\r\n            \"propertyId\": 16,\r\n            \"incidentId\": 3046,\r\n            \"propertyType\": \"Building\",\r\n            \"propertyValue\": \">$1000\",\r\n            \"ownerFirstName\": \"Sara\",\r\n            \"ownerMiddleName\": \"Jane\",\r\n            \"ownerLastName\": \"Smith\",\r\n            \"ownerAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"email\": \"sara.smith@gmail.com\",\r\n            \"phone1\": \"111-111-1111 x111__\",\r\n            \"phone2\": \"222-222-2222 x_____\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Female\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T13:05:13.2273729\",\r\n            \"createdDate\": \"2022-04-01T13:05:13.2273371\"\r\n        }\r\n    ],\r\n    \"suspects\": [\r\n        {\r\n            \"suspectId\": 2045,\r\n            \"incidentId\": 3046,\r\n            \"firstName\": \"Sara\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jane\",\r\n            \"suspectAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Female\",\r\n            \"suspectDateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"height\": \"\",\r\n            \"weight\": \"\",\r\n            \"build\": \"\",\r\n            \"education\": \"\",\r\n            \"driverLicenseNumber\": \"FL123456\",\r\n            \"driverLicenseExpiration\": \"03/01/2022\",\r\n            \"suspectInjured\": \"Yes\",\r\n            \"suspectInjuryType\": \"Abrasion(s)\",\r\n            \"suspectInjurySeverity\": \"Fatal injury\",\r\n            \"howInjuryOccurredToSuspect\": \"Officer Actions\",\r\n            \"medicalTreatmentOfSuspect\": \"Yes\",\r\n            \"medicalTreatmentOfSuspectBy\": \"The Doctor\",\r\n            \"suspectTransported\": \"Yes\",\r\n            \"suspectTransportedBy\": \"EMS\",\r\n            \"suspectTransportedTo\": \"The Hospital\",\r\n            \"suspectTransportedTime\": \"12:12:00\",\r\n            \"suspectInjuryPhotos\": \"\",\r\n            \"suspectInjuryPhotosTakenBy\": \"\",\r\n            \"suspectArrested\": \"Yes\",\r\n            \"suspectArrestedForFelony\": \"\",\r\n            \"suspectArrestCharge\": \"28-1911 Failure to yield|||28-886 Speeding\",\r\n            \"suspectJailNumber\": \"\",\r\n            \"suspectWhyNotArrested\": \"\",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"Scion\",\r\n            \"vehicleModel\": \"xB\",\r\n            \"year\": \"2015\",\r\n            \"vehicleTag\": \"FL1234\",\r\n            \"vehicleState\": \"FL\",\r\n            \"vehicleDamaged\": \"Yes\",\r\n            \"vehicleDamageType\": \"Severe Damage\",\r\n            \"vehicleDamageAmount\": \"$500 - $1,000\",\r\n            \"vehicleTowed\": \"Yes\",\r\n            \"towingCompany\": \"Anytown Service\",\r\n            \"nonEditable\": false,\r\n            \"licenseState\": \"\",\r\n            \"vin\": \"\",\r\n            \"vehicleTowCompany\": \"\",\r\n            \"photosofVehicleDamage\": \"\",\r\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\r\n            \"suspectTransportedByDropDown\": \"\",\r\n            \"suspectTransportedToDropDown\": \"\",\r\n            \"vehicleDamage\": \"\",\r\n            \"suspectCategory\": \"\",\r\n            \"custodyLocation\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"suspectPassengers\": [\r\n                {\r\n                    \"suspectPassengerId\": 1013,\r\n                    \"suspectId\": 2045,\r\n                    \"passengerFirstName\": \"Ralph\",\r\n                    \"passengerMiddleName\": \"Waldo\",\r\n                    \"passengerLastName\": \"Emmerson\",\r\n                    \"passengerAddress\": \"1234 Main Street\",\r\n                    \"passengerCity\": \"Jacksonville\",\r\n                    \"passengerState\": \"FL\",\r\n                    \"passengerDob\": \"03/01/1980\",\r\n                    \"passengerRace\": \"Hispanic/Latino\",\r\n                    \"passengerGender\": \"Male\",\r\n                    \"passengerEmail\": \"r.emmerson@compuserve.com\",\r\n                    \"passengerPhone1\": \"111-111-1111 x111__\",\r\n                    \"passengerPhone2\": \"222-222-2222 x222__\",\r\n                    \"passengerInjured\": \"Yes\",\r\n                    \"passengerInjuryType\": \"Blunt Trauma\",\r\n                    \"passengerInjurySeverity\": \"Incapacitating\",\r\n                    \"passengerHowInjuryOccurred\": \"Suspect’s Actions\",\r\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\r\n                    \"passengerMedicalTreatmentReceivedBy\": \"Some Dude\",\r\n                    \"passengerTransported\": \"Yes\",\r\n                    \"passengerTransportedBy\": \"EMS\",\r\n                    \"passengerTransportedTo\": \"The Hospital\",\r\n                    \"passengerTransportedTime\": \"12:12:00\",\r\n                    \"passengerInjuryPhotos\": \"\",\r\n                    \"passengerInjuryPhotosTakenBy\": \"\",\r\n                    \"passengerArrested\": \"Yes\",\r\n                    \"passengerArrestedForFelony\": \"\",\r\n                    \"passengerArrestCharge\": \"28-1911 Failure to yield\",\r\n                    \"passengerJailNumber\": \"\",\r\n                    \"passengerWhyNotArrested\": \"They didn't do anything illegal.  \",\r\n                    \"passengerMedicalTreatmentReceivedByDropDown\": \"\",\r\n                    \"passengerTransportedByDropDown\": \"\",\r\n                    \"passengerTransportedToDropDown\": \"\",\r\n                    \"ethnicity\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"primaryReferenceId\": null,\r\n                    \"suspectPassengerPointsOfContact\": [\r\n                        {\r\n                            \"suspectPassengerPointOfContactId\": 7,\r\n                            \"suspectPassengerId\": 1013,\r\n                            \"pointType\": \"Thigh (right)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T13:05:13.1644057\",\r\n                            \"createdDate\": \"2022-04-01T13:05:13.1643171\"\r\n                        },\r\n                        {\r\n                            \"suspectPassengerPointOfContactId\": 8,\r\n                            \"suspectPassengerId\": 1013,\r\n                            \"pointType\": \"Upper Arm(left)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T13:05:13.1644552\",\r\n                            \"createdDate\": \"2022-04-01T13:05:13.1644549\"\r\n                        },\r\n                        {\r\n                            \"suspectPassengerPointOfContactId\": 9,\r\n                            \"suspectPassengerId\": 1013,\r\n                            \"pointType\": \"Forearm (front/right)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T13:05:13.1644617\",\r\n                            \"createdDate\": \"2022-04-01T13:05:13.1644615\"\r\n                        },\r\n                        {\r\n                            \"suspectPassengerPointOfContactId\": 10,\r\n                            \"suspectPassengerId\": 1013,\r\n                            \"pointType\": \"Calf (right)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T13:05:13.1644626\",\r\n                            \"createdDate\": \"2022-04-01T13:05:13.1644624\"\r\n                        },\r\n                        {\r\n                            \"suspectPassengerPointOfContactId\": 11,\r\n                            \"suspectPassengerId\": 1013,\r\n                            \"pointType\": \"Glutes\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T13:05:13.1644634\",\r\n                            \"createdDate\": \"2022-04-01T13:05:13.1644632\"\r\n                        },\r\n                        {\r\n                            \"suspectPassengerPointOfContactId\": 12,\r\n                            \"suspectPassengerId\": 1013,\r\n                            \"pointType\": \"Face\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T13:05:13.1644643\",\r\n                            \"createdDate\": \"2022-04-01T13:05:13.1644641\"\r\n                        }\r\n                    ],\r\n                    \"suspectPassengerChargeClassifications\": [\r\n                        {\r\n                            \"suspectPassengerChargeClassificationId\": 2,\r\n                            \"suspectPassengerId\": 1013,\r\n                            \"charge\": \"28-1911 Failure to yield\",\r\n                            \"chargeClasification1\": true,\r\n                            \"chargeClasification2\": false,\r\n                            \"chargeClasification3\": false,\r\n                            \"chargeClasification4\": false,\r\n                            \"chargeClasification5\": false,\r\n                            \"chargeClasification6\": \"\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T13:05:13.165183\",\r\n                            \"createdDate\": \"2022-04-01T13:05:13.165095\"\r\n                        }\r\n                    ],\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.163792\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1637532\"\r\n                }\r\n            ],\r\n            \"suspectPointsOfContact\": [\r\n                {\r\n                    \"suspectPointOfContactId\": 8,\r\n                    \"suspectId\": 2045,\r\n                    \"pointType\": \"Face\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1496815\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1495967\"\r\n                },\r\n                {\r\n                    \"suspectPointOfContactId\": 9,\r\n                    \"suspectId\": 2045,\r\n                    \"pointType\": \"Calf (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.149736\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1497358\"\r\n                }\r\n            ],\r\n            \"suspectChargeClassifications\": [\r\n                {\r\n                    \"suspectChargeClassificationId\": 7,\r\n                    \"suspectId\": 2045,\r\n                    \"charge\": \"28-1911 Failure to yield\",\r\n                    \"chargeClasification1\": false,\r\n                    \"chargeClasification2\": true,\r\n                    \"chargeClasification3\": true,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.150413\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1503422\"\r\n                },\r\n                {\r\n                    \"suspectChargeClassificationId\": 8,\r\n                    \"suspectId\": 2045,\r\n                    \"charge\": \"28-886 Speeding\",\r\n                    \"chargeClasification1\": false,\r\n                    \"chargeClasification2\": true,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1504555\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1504552\"\r\n                }\r\n            ],\r\n            \"vehicleOwner\": \"\",\r\n            \"modifiedDate\": \"2022-04-01T13:05:13.149051\",\r\n            \"createdDate\": \"2022-04-01T13:05:13.1490134\"\r\n        }\r\n    ],\r\n    \"victims\": [\r\n        {\r\n            \"victimId\": 6,\r\n            \"incidentId\": 3046,\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jason\",\r\n            \"victimAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"victimEmail\": \"john.smith@gmail.com\",\r\n            \"victimPhone1\": \"111-111-1111 x1111_\",\r\n            \"victimPhone2\": \"222-222-2222 x222__\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"victimDateOfBirth\": \"03/01/1980\",\r\n            \"victimInjured\": \"Yes\",\r\n            \"victimInjuryType\": \"Broken Bone\",\r\n            \"victimInjurySeverity\": \"Other  (describe in narrative)\",\r\n            \"victimHowInjuryToVictimOccurred\": \"Officer\",\r\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\r\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\r\n            \"victimTransported\": \"Yes\",\r\n            \"victimTransportedBy\": \"EMS\",\r\n            \"victimTransportedTo\": \"The Hospital\",\r\n            \"victimTransportedTime\": \"12:12:00\",\r\n            \"victimInjuryPhotos\": \"\",\r\n            \"victimInjuryPhotosTakenBy\": \"\",\r\n            \"victimMedicalTreatmentOfVictimByDropDown\": \"\",\r\n            \"victimTransportedByDropDown\": \"\",\r\n            \"victimTransportedToDropDown\": \"\",\r\n            \"nonEditable\": false,\r\n            \"agency\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"victimPointsOfContact\": [\r\n                {\r\n                    \"victimPointOfContact\": 3,\r\n                    \"victimId\": 6,\r\n                    \"pointType\": \"Stomach\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.2133887\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.2133045\"\r\n                },\r\n                {\r\n                    \"victimPointOfContact\": 4,\r\n                    \"victimId\": 6,\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.2134368\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.2134365\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T13:05:13.212826\",\r\n            \"createdDate\": \"2022-04-01T13:05:13.2127903\"\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 7,\r\n            \"incidentId\": 3046,\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jason\",\r\n            \"witnessAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"witnessEmail\": \"john.smith@gmail.com\",\r\n            \"witnessPhone1\": \"111-111-1111 x_____\",\r\n            \"witnessPhone2\": \"222-222-2222 x222__\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"witnessDateOfBirth\": \"03/01/1980\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T13:05:13.2202486\",\r\n            \"createdDate\": \"2022-04-01T13:05:13.2202238\"\r\n        }\r\n    ],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [\r\n        {\r\n            \"reviewFormValueId\": 3,\r\n            \"title\": \"Title\",\r\n            \"type\": \"Type\",\r\n            \"value\": \"Value\",\r\n            \"ordinal\": 1,\r\n            \"indent\": 0,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 3046,\r\n            \"modifiedDate\": \"2022-04-01T13:05:13.1699735\",\r\n            \"createdDate\": \"2022-04-01T13:05:13.1699248\"\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-04-01T13:05:13.1298869\",\r\n    \"createdDate\": \"2022-04-01T13:05:13.1298452\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/vipr","description":"<p>Update an existing incident of vehicle damage. An error will be thrown if an Incident with the supplied Incident Id cannot be found within the system. You must ensure that the Incident Id exists.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","vipr"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"0f94877c-29e7-4a2c-a503-c0d497c87e4c","name":"Success","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": 3046,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"Editing\",\r\n    \"incidentCaseNumber\": \"TestCase-002\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"pursuitDate\": \"03/01/2022\",\r\n    \"pursuitTime\": \"12:12:00\",\r\n    \"reportDate\": \"03/29/2022\",\r\n    \"reportTime\": \"15:11:00\",\r\n    \"supervisorMonitoringRank\": \"Patrol\",\r\n    \"supervisorMonitoringName\": \"John Smith\",\r\n    \"supervisorMonitoringId\": \"090\",\r\n    \"supervisorRespondingRank\": \"Officer\",\r\n    \"supervisorRespondingName\": \"Jane Smith\",\r\n    \"supervisorRespondingId\": \"4322\",\r\n    \"pursuitReason\": \"On View Violation\",\r\n    \"pursuitDispatched\": \"On-View\",\r\n    \"pursuitStartTime\": \"12:12:00\",\r\n    \"pursuitStartArea1\": \"District 721\",\r\n    \"pursuitStartArea2\": \"\",\r\n    \"pursuitStartArea3\": \"\",\r\n    \"pursuitEndTime\": \"12:56:00\",\r\n    \"pursuitEndArea1\": \"District 741\",\r\n    \"pursuitEndArea2\": \"\",\r\n    \"pursuitEndArea3\": \"\",\r\n    \"pursuitDuration\": \"44 Minutes\",\r\n    \"pursuitHighestSpeed\": \"50-80 mph\",\r\n    \"trafficPattern\": \"Moderate\",\r\n    \"weatherConditions\": \"Ice\",\r\n    \"pursuitDistance\": \"45\",\r\n    \"howPursuitTerminated\": \"Cruiser Damaged\",\r\n    \"pursuitTerminationReason\": \"Pursuing Officer Terminated\",\r\n    \"terminationTactics\": \"Pit Maneuver \",\r\n    \"incidentDocumentAttached\": \"\",\r\n    \"resourceInvolved\": \"K-9\",\r\n    \"pursuitRoute\": \"Up the road, then over to the left.\",\r\n    \"pursuitJustification\": \"Robbery\",\r\n    \"pursuitResultCrash\": \"Yes\",\r\n    \"trackingNumber\": \"2022 - 13\",\r\n    \"trackingId\": 13,\r\n    \"trackingYear\": 2022,\r\n    \"subReportNumber\": null,\r\n    \"reportType\": \"\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"involvedOfficer\": true,\r\n    \"involvedSuspect\": true,\r\n    \"involvedVictim\": true,\r\n    \"involvedWitness\": true,\r\n    \"involvedProperty\": true,\r\n    \"involvedNarrative\": true,\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": true,\r\n    \"sectionCode\": \"\",\r\n    \"agency\": \"Highway Patrol\",\r\n    \"optional1\": \"Far Point Police Department\",\r\n    \"optional2\": \"\",\r\n    \"optional3\": \"\",\r\n    \"optional4\": \"\",\r\n    \"optional5\": \"\",\r\n    \"optional6\": \"\",\r\n    \"optional7\": \"\",\r\n    \"optional8\": \"\",\r\n    \"optional9\": \"\",\r\n    \"optional10\": \"\",\r\n    \"optional11\": \"\",\r\n    \"optional12\": \"\",\r\n    \"influenceFactors\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 3046,\r\n            \"incidentId\": 3046,\r\n            \"narrative\": \"This was one really hot pursuit.  Of all the pursuits I've been on, this was one of them.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-04-01T13:05:13.2305538\",\r\n            \"createdDate\": \"2022-04-01T13:05:13.2305145\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"incidentOfficerId\": 1028,\r\n            \"incidentId\": 3046,\r\n            \"officerId\": \"B123456\",\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Simon\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerOnDuty\": \"Yes\",\r\n            \"officerPermanentAssignment\": \"North Sector\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"race\": \"Hispanic/Latino\",\r\n            \"gender\": \"Male\",\r\n            \"age\": \"35\",\r\n            \"driverLicense\": \"FL123456\",\r\n            \"driverLicenseExpirationDate\": \"03/07/2022\",\r\n            \"officerYearsWithAgency\": \"12\",\r\n            \"officerTotalYearsInLawEnforcement\": \"12\",\r\n            \"education\": \"\",\r\n            \"pursuitTrainingType\": \"Academy\",\r\n            \"officerInjured\": \"Yes\",\r\n            \"officerInjuryType\": \"Abrasion(s)\",\r\n            \"officerInjurySeverity\": \"Possible\",\r\n            \"officerHowInjuryOccurred\": \"Suspect’s Actions\",\r\n            \"officerMedicalTreatmentReceived\": \"Yes\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\r\n            \"officerTransported\": \"Yes\",\r\n            \"officerTransportedBy\": \"EMS\",\r\n            \"officerTransportedTo\": \"The Hospital\",\r\n            \"officerTransportedTime\": \"12:12:00\",\r\n            \"officerInjuryPhotos\": \"\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"vehicleNumber\": \"PC-11\",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"MINI\",\r\n            \"vehicleModel\": \"Cooper\",\r\n            \"year\": \"2021\",\r\n            \"vehicleTag\": \"FL1234\",\r\n            \"state\": \"FL\",\r\n            \"vehicleDamaged\": \"Yes\",\r\n            \"vehicleDamageType\": \"Driver Side Rear Fender\",\r\n            \"vehicleDamageAmount\": \"$500 - $1,000\",\r\n            \"vehicleTowed\": \"Yes\",\r\n            \"towingCompany\": \"Anytown Service\",\r\n            \"rank\": \"\",\r\n            \"licenseState\": \"\",\r\n            \"nonEditable\": false,\r\n            \"vehicleOwner\": \"Sara Jane Smith\",\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"vehicleTowCompany\": \"\",\r\n            \"photosofVehicleDamage\": \"\",\r\n            \"officerMedicalTreatmentReceivedByDropDown\": \"\",\r\n            \"officerTransportedByDropDown\": \"\",\r\n            \"officerTransportedToDropDown\": \"\",\r\n            \"vehicleDamage\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"passengers\": [\r\n                {\r\n                    \"officerPassengerId\": 11,\r\n                    \"incidentOfficerId\": 1028,\r\n                    \"isOfficer\": \"\",\r\n                    \"officerId\": \"\",\r\n                    \"passengerFirstName\": \"John\",\r\n                    \"passengerMiddleName\": \"Jason\",\r\n                    \"passengerLastName\": \"Smith\",\r\n                    \"passengerAddress\": \"1234 Main Street\",\r\n                    \"passengerCity\": \"Jacksonville\",\r\n                    \"passengerState\": \"FL\",\r\n                    \"passengerDob\": \"03/01/1980\",\r\n                    \"passengerRace\": \"White\",\r\n                    \"passengerGender\": \"Male\",\r\n                    \"passengerEmail\": \"\",\r\n                    \"passengerPhone1\": \"\",\r\n                    \"passengerPhone2\": \"\",\r\n                    \"passengerInjured\": \"Yes\",\r\n                    \"passengerInjuryType\": \"Blunt Trauma\",\r\n                    \"passengerInjurySeverity\": \"Other  (describe in narrative)\",\r\n                    \"passengerHowInjuryOccurred\": \"Officer\",\r\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\r\n                    \"passengerMedicalTreatmentReceivedBy\": \"The Doctor\",\r\n                    \"passengerTransported\": \"Yes\",\r\n                    \"passengerTransportedBy\": \"EMS\",\r\n                    \"passengerTransportedTo\": \"The Place that Fixes People\",\r\n                    \"passengerTransportedTime\": \"12:12:00\",\r\n                    \"passengerInjuryPhotos\": \"\",\r\n                    \"passengerInjuryPhotosTakenBy\": \"\",\r\n                    \"passengerMedicalTreatmentReceivedByDropDown\": \"\",\r\n                    \"passengerTransportedByDropDown\": \"\",\r\n                    \"passengerTransportedToDropDown\": \"\",\r\n                    \"ethnicity\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"primaryReferenceId\": null,\r\n                    \"officerPassengerPointOfContact\": [\r\n                        {\r\n                            \"pointOfContactId\": 3,\r\n                            \"officerPassengerId\": 11,\r\n                            \"pointType\": \"Upper Chest\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T13:05:13.2011142\",\r\n                            \"createdDate\": \"2022-04-01T13:05:13.2010461\"\r\n                        },\r\n                        {\r\n                            \"pointOfContactId\": 4,\r\n                            \"officerPassengerId\": 11,\r\n                            \"pointType\": \"Stomach\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T13:05:13.2011701\",\r\n                            \"createdDate\": \"2022-04-01T13:05:13.2011699\"\r\n                        }\r\n                    ],\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.20053\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.2004917\"\r\n                }\r\n            ],\r\n            \"officerPointOfContact\": [\r\n                {\r\n                    \"officerPointOfContactId\": 10,\r\n                    \"officerId\": 1028,\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1880803\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1879972\"\r\n                },\r\n                {\r\n                    \"officerPointOfContactId\": 11,\r\n                    \"officerId\": 1028,\r\n                    \"pointType\": \"Glutes\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1881239\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1881237\"\r\n                },\r\n                {\r\n                    \"officerPointOfContactId\": 12,\r\n                    \"officerId\": 1028,\r\n                    \"pointType\": \"Hamstring (left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1881248\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1881246\"\r\n                },\r\n                {\r\n                    \"officerPointOfContactId\": 13,\r\n                    \"officerId\": 1028,\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1881257\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1881256\"\r\n                },\r\n                {\r\n                    \"officerPointOfContactId\": 14,\r\n                    \"officerId\": 1028,\r\n                    \"pointType\": \"Glutes\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1881265\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1881264\"\r\n                },\r\n                {\r\n                    \"officerPointOfContactId\": 15,\r\n                    \"officerId\": 1028,\r\n                    \"pointType\": \"Hamstring (left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1881274\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1881272\"\r\n                }\r\n            ],\r\n            \"fullName\": \"\",\r\n            \"modifiedDate\": \"2022-04-01T13:05:13.1874812\",\r\n            \"createdDate\": \"2022-04-01T13:05:13.1874452\"\r\n        }\r\n    ],\r\n    \"properties\": [\r\n        {\r\n            \"propertyId\": 16,\r\n            \"incidentId\": 3046,\r\n            \"propertyType\": \"Building\",\r\n            \"propertyValue\": \">$1000\",\r\n            \"ownerFirstName\": \"Sara\",\r\n            \"ownerMiddleName\": \"Jane\",\r\n            \"ownerLastName\": \"Smith\",\r\n            \"ownerAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"email\": \"sara.smith@gmail.com\",\r\n            \"phone1\": \"111-111-1111 x111__\",\r\n            \"phone2\": \"222-222-2222 x_____\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Female\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T13:05:13.2273729\",\r\n            \"createdDate\": \"2022-04-01T13:05:13.2273371\"\r\n        }\r\n    ],\r\n    \"suspects\": [\r\n        {\r\n            \"suspectId\": 2045,\r\n            \"incidentId\": 3046,\r\n            \"firstName\": \"Sara\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jane\",\r\n            \"suspectAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Female\",\r\n            \"suspectDateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"height\": \"\",\r\n            \"weight\": \"\",\r\n            \"build\": \"\",\r\n            \"education\": \"\",\r\n            \"driverLicenseNumber\": \"FL123456\",\r\n            \"driverLicenseExpiration\": \"03/01/2022\",\r\n            \"suspectInjured\": \"Yes\",\r\n            \"suspectInjuryType\": \"Abrasion(s)\",\r\n            \"suspectInjurySeverity\": \"Fatal injury\",\r\n            \"howInjuryOccurredToSuspect\": \"Officer Actions\",\r\n            \"medicalTreatmentOfSuspect\": \"Yes\",\r\n            \"medicalTreatmentOfSuspectBy\": \"The Doctor\",\r\n            \"suspectTransported\": \"Yes\",\r\n            \"suspectTransportedBy\": \"EMS\",\r\n            \"suspectTransportedTo\": \"The Hospital\",\r\n            \"suspectTransportedTime\": \"12:12:00\",\r\n            \"suspectInjuryPhotos\": \"\",\r\n            \"suspectInjuryPhotosTakenBy\": \"\",\r\n            \"suspectArrested\": \"Yes\",\r\n            \"suspectArrestedForFelony\": \"\",\r\n            \"suspectArrestCharge\": \"28-1911 Failure to yield|||28-886 Speeding\",\r\n            \"suspectJailNumber\": \"\",\r\n            \"suspectWhyNotArrested\": \"\",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"Scion\",\r\n            \"vehicleModel\": \"xB\",\r\n            \"year\": \"2015\",\r\n            \"vehicleTag\": \"FL1234\",\r\n            \"vehicleState\": \"FL\",\r\n            \"vehicleDamaged\": \"Yes\",\r\n            \"vehicleDamageType\": \"Severe Damage\",\r\n            \"vehicleDamageAmount\": \"$500 - $1,000\",\r\n            \"vehicleTowed\": \"Yes\",\r\n            \"towingCompany\": \"Anytown Service\",\r\n            \"nonEditable\": false,\r\n            \"licenseState\": \"\",\r\n            \"vin\": \"\",\r\n            \"vehicleTowCompany\": \"\",\r\n            \"photosofVehicleDamage\": \"\",\r\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\r\n            \"suspectTransportedByDropDown\": \"\",\r\n            \"suspectTransportedToDropDown\": \"\",\r\n            \"vehicleDamage\": \"\",\r\n            \"suspectCategory\": \"\",\r\n            \"custodyLocation\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"suspectPassengers\": [\r\n                {\r\n                    \"suspectPassengerId\": 1013,\r\n                    \"suspectId\": 2045,\r\n                    \"passengerFirstName\": \"Ralph\",\r\n                    \"passengerMiddleName\": \"Waldo\",\r\n                    \"passengerLastName\": \"Emmerson\",\r\n                    \"passengerAddress\": \"1234 Main Street\",\r\n                    \"passengerCity\": \"Jacksonville\",\r\n                    \"passengerState\": \"FL\",\r\n                    \"passengerDob\": \"03/01/1980\",\r\n                    \"passengerRace\": \"Hispanic/Latino\",\r\n                    \"passengerGender\": \"Male\",\r\n                    \"passengerEmail\": \"r.emmerson@compuserve.com\",\r\n                    \"passengerPhone1\": \"111-111-1111 x111__\",\r\n                    \"passengerPhone2\": \"222-222-2222 x222__\",\r\n                    \"passengerInjured\": \"Yes\",\r\n                    \"passengerInjuryType\": \"Blunt Trauma\",\r\n                    \"passengerInjurySeverity\": \"Incapacitating\",\r\n                    \"passengerHowInjuryOccurred\": \"Suspect’s Actions\",\r\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\r\n                    \"passengerMedicalTreatmentReceivedBy\": \"Some Dude\",\r\n                    \"passengerTransported\": \"Yes\",\r\n                    \"passengerTransportedBy\": \"EMS\",\r\n                    \"passengerTransportedTo\": \"The Hospital\",\r\n                    \"passengerTransportedTime\": \"12:12:00\",\r\n                    \"passengerInjuryPhotos\": \"\",\r\n                    \"passengerInjuryPhotosTakenBy\": \"\",\r\n                    \"passengerArrested\": \"Yes\",\r\n                    \"passengerArrestedForFelony\": \"\",\r\n                    \"passengerArrestCharge\": \"28-1911 Failure to yield\",\r\n                    \"passengerJailNumber\": \"\",\r\n                    \"passengerWhyNotArrested\": \"They didn't do anything illegal.  \",\r\n                    \"passengerMedicalTreatmentReceivedByDropDown\": \"\",\r\n                    \"passengerTransportedByDropDown\": \"\",\r\n                    \"passengerTransportedToDropDown\": \"\",\r\n                    \"ethnicity\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"primaryReferenceId\": null,\r\n                    \"suspectPassengerPointsOfContact\": [\r\n                        {\r\n                            \"suspectPassengerPointOfContactId\": 7,\r\n                            \"suspectPassengerId\": 1013,\r\n                            \"pointType\": \"Thigh (right)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T13:05:13.1644057\",\r\n                            \"createdDate\": \"2022-04-01T13:05:13.1643171\"\r\n                        },\r\n                        {\r\n                            \"suspectPassengerPointOfContactId\": 8,\r\n                            \"suspectPassengerId\": 1013,\r\n                            \"pointType\": \"Upper Arm(left)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T13:05:13.1644552\",\r\n                            \"createdDate\": \"2022-04-01T13:05:13.1644549\"\r\n                        },\r\n                        {\r\n                            \"suspectPassengerPointOfContactId\": 9,\r\n                            \"suspectPassengerId\": 1013,\r\n                            \"pointType\": \"Forearm (front/right)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T13:05:13.1644617\",\r\n                            \"createdDate\": \"2022-04-01T13:05:13.1644615\"\r\n                        },\r\n                        {\r\n                            \"suspectPassengerPointOfContactId\": 10,\r\n                            \"suspectPassengerId\": 1013,\r\n                            \"pointType\": \"Calf (right)\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T13:05:13.1644626\",\r\n                            \"createdDate\": \"2022-04-01T13:05:13.1644624\"\r\n                        },\r\n                        {\r\n                            \"suspectPassengerPointOfContactId\": 11,\r\n                            \"suspectPassengerId\": 1013,\r\n                            \"pointType\": \"Glutes\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T13:05:13.1644634\",\r\n                            \"createdDate\": \"2022-04-01T13:05:13.1644632\"\r\n                        },\r\n                        {\r\n                            \"suspectPassengerPointOfContactId\": 12,\r\n                            \"suspectPassengerId\": 1013,\r\n                            \"pointType\": \"Face\",\r\n                            \"value\": \"1\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T13:05:13.1644643\",\r\n                            \"createdDate\": \"2022-04-01T13:05:13.1644641\"\r\n                        }\r\n                    ],\r\n                    \"suspectPassengerChargeClassifications\": [\r\n                        {\r\n                            \"suspectPassengerChargeClassificationId\": 2,\r\n                            \"suspectPassengerId\": 1013,\r\n                            \"charge\": \"28-1911 Failure to yield\",\r\n                            \"chargeClasification1\": true,\r\n                            \"chargeClasification2\": false,\r\n                            \"chargeClasification3\": false,\r\n                            \"chargeClasification4\": false,\r\n                            \"chargeClasification5\": false,\r\n                            \"chargeClasification6\": \"\",\r\n                            \"nonEditable\": false,\r\n                            \"modifiedDate\": \"2022-04-01T13:05:13.165183\",\r\n                            \"createdDate\": \"2022-04-01T13:05:13.165095\"\r\n                        }\r\n                    ],\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.163792\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1637532\"\r\n                }\r\n            ],\r\n            \"suspectPointsOfContact\": [\r\n                {\r\n                    \"suspectPointOfContactId\": 8,\r\n                    \"suspectId\": 2045,\r\n                    \"pointType\": \"Face\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1496815\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1495967\"\r\n                },\r\n                {\r\n                    \"suspectPointOfContactId\": 9,\r\n                    \"suspectId\": 2045,\r\n                    \"pointType\": \"Calf (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.149736\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1497358\"\r\n                }\r\n            ],\r\n            \"suspectChargeClassifications\": [\r\n                {\r\n                    \"suspectChargeClassificationId\": 7,\r\n                    \"suspectId\": 2045,\r\n                    \"charge\": \"28-1911 Failure to yield\",\r\n                    \"chargeClasification1\": false,\r\n                    \"chargeClasification2\": true,\r\n                    \"chargeClasification3\": true,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.150413\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1503422\"\r\n                },\r\n                {\r\n                    \"suspectChargeClassificationId\": 8,\r\n                    \"suspectId\": 2045,\r\n                    \"charge\": \"28-886 Speeding\",\r\n                    \"chargeClasification1\": false,\r\n                    \"chargeClasification2\": true,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1504555\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.1504552\"\r\n                }\r\n            ],\r\n            \"vehicleOwner\": \"\",\r\n            \"modifiedDate\": \"2022-04-01T13:05:13.149051\",\r\n            \"createdDate\": \"2022-04-01T13:05:13.1490134\"\r\n        }\r\n    ],\r\n    \"victims\": [\r\n        {\r\n            \"victimId\": 6,\r\n            \"incidentId\": 3046,\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jason\",\r\n            \"victimAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"victimEmail\": \"john.smith@gmail.com\",\r\n            \"victimPhone1\": \"111-111-1111 x1111_\",\r\n            \"victimPhone2\": \"222-222-2222 x222__\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"victimDateOfBirth\": \"03/01/1980\",\r\n            \"victimInjured\": \"Yes\",\r\n            \"victimInjuryType\": \"Broken Bone\",\r\n            \"victimInjurySeverity\": \"Other  (describe in narrative)\",\r\n            \"victimHowInjuryToVictimOccurred\": \"Officer\",\r\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\r\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\r\n            \"victimTransported\": \"Yes\",\r\n            \"victimTransportedBy\": \"EMS\",\r\n            \"victimTransportedTo\": \"The Hospital\",\r\n            \"victimTransportedTime\": \"12:12:00\",\r\n            \"victimInjuryPhotos\": \"\",\r\n            \"victimInjuryPhotosTakenBy\": \"\",\r\n            \"victimMedicalTreatmentOfVictimByDropDown\": \"\",\r\n            \"victimTransportedByDropDown\": \"\",\r\n            \"victimTransportedToDropDown\": \"\",\r\n            \"nonEditable\": false,\r\n            \"agency\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"victimPointsOfContact\": [\r\n                {\r\n                    \"victimPointOfContact\": 3,\r\n                    \"victimId\": 6,\r\n                    \"pointType\": \"Stomach\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.2133887\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.2133045\"\r\n                },\r\n                {\r\n                    \"victimPointOfContact\": 4,\r\n                    \"victimId\": 6,\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T13:05:13.2134368\",\r\n                    \"createdDate\": \"2022-04-01T13:05:13.2134365\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T13:05:13.212826\",\r\n            \"createdDate\": \"2022-04-01T13:05:13.2127903\"\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 7,\r\n            \"incidentId\": 3046,\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Jason\",\r\n            \"witnessAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"witnessEmail\": \"john.smith@gmail.com\",\r\n            \"witnessPhone1\": \"111-111-1111 x_____\",\r\n            \"witnessPhone2\": \"222-222-2222 x222__\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"witnessDateOfBirth\": \"03/01/1980\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T13:05:13.2202486\",\r\n            \"createdDate\": \"2022-04-01T13:05:13.2202238\"\r\n        }\r\n    ],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [\r\n        {\r\n            \"reviewFormValueId\": 3,\r\n            \"title\": \"Title\",\r\n            \"type\": \"Type\",\r\n            \"value\": \"Value\",\r\n            \"ordinal\": 1,\r\n            \"indent\": 0,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 3046,\r\n            \"modifiedDate\": \"2022-04-01T13:05:13.1699735\",\r\n            \"createdDate\": \"2022-04-01T13:05:13.1699248\"\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-04-01T13:05:13.1298869\",\r\n    \"createdDate\": \"2022-04-01T13:05:13.1298452\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/vipr"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmlwcg==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Apr 2022 17:06:40 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"incidentId\": 3046,\n    \"creator\": \"\",\n    \"reviewer\": \"\",\n    \"creatorId\": 8,\n    \"status\": \"Editing\",\n    \"incidentCaseNumber\": \"TestCase-002\",\n    \"relatedIncidentCase\": \"\",\n    \"pursuitDate\": \"03/01/2022\",\n    \"pursuitTime\": \"12:12:00\",\n    \"reportDate\": \"03/29/2022\",\n    \"reportTime\": \"15:11:00\",\n    \"supervisorMonitoringRank\": \"Patrol\",\n    \"supervisorMonitoringName\": \"John Smith\",\n    \"supervisorMonitoringId\": \"090\",\n    \"supervisorRespondingRank\": \"Officer\",\n    \"supervisorRespondingName\": \"Jane Smith\",\n    \"supervisorRespondingId\": \"4322\",\n    \"pursuitReason\": \"On View Violation\",\n    \"pursuitDispatched\": \"On-View\",\n    \"pursuitStartTime\": \"12:12:00\",\n    \"pursuitStartArea1\": \"District 721\",\n    \"pursuitStartArea2\": \"\",\n    \"pursuitStartArea3\": \"\",\n    \"pursuitEndTime\": \"12:56:00\",\n    \"pursuitEndArea1\": \"District 741\",\n    \"pursuitEndArea2\": \"\",\n    \"pursuitEndArea3\": \"\",\n    \"pursuitDuration\": \"44 Minutes\",\n    \"pursuitHighestSpeed\": \"50-80 mph\",\n    \"trafficPattern\": \"Moderate\",\n    \"weatherConditions\": \"Ice\",\n    \"pursuitDistance\": \"45\",\n    \"howPursuitTerminated\": \"Cruiser Damaged\",\n    \"pursuitTerminationReason\": \"Pursuing Officer Terminated\",\n    \"terminationTactics\": \"Pit Maneuver \",\n    \"incidentDocumentAttached\": \"\",\n    \"resourceInvolved\": \"K-9\",\n    \"pursuitRoute\": \"Up the road, then over to the left.\",\n    \"pursuitJustification\": \"Robbery\",\n    \"pursuitResultCrash\": \"Yes\",\n    \"trackingNumber\": \"2022 - 13\",\n    \"trackingId\": 13,\n    \"trackingYear\": 2022,\n    \"subReportNumber\": null,\n    \"reportType\": \"\",\n    \"routing\": \"Command Staff\",\n    \"deleteComments\": \"\",\n    \"involvedOfficer\": true,\n    \"involvedSuspect\": true,\n    \"involvedVictim\": true,\n    \"involvedWitness\": true,\n    \"involvedProperty\": true,\n    \"involvedNarrative\": true,\n    \"nonEditable\": false,\n    \"sealed\": false,\n    \"involvedSupervisorReview\": true,\n    \"sectionCode\": \"\",\n    \"agency\": \"Highway Patrol\",\n    \"optional1\": \"Far Point Police Department\",\n    \"optional2\": \"\",\n    \"optional3\": \"\",\n    \"optional4\": \"\",\n    \"optional5\": \"\",\n    \"optional6\": \"\",\n    \"optional7\": \"\",\n    \"optional8\": \"\",\n    \"optional9\": \"\",\n    \"optional10\": \"\",\n    \"optional11\": \"\",\n    \"optional12\": \"\",\n    \"influenceFactors\": \"\",\n    \"primaryReferenceId\": null,\n    \"narratives\": [\n        {\n            \"narrativeId\": 3046,\n            \"incidentId\": 3046,\n            \"narrative\": \"This was one really hot pursuit.  Of all the pursuits I've been on, this was one of them.\",\n            \"nonEditable\": false,\n            \"modifiedDate\": \"2022-04-01T13:06:40.7392306\",\n            \"createdDate\": \"2022-04-01T13:05:13.2305145\"\n        }\n    ],\n    \"officers\": [\n        {\n            \"incidentOfficerId\": 1028,\n            \"incidentId\": 3046,\n            \"officerId\": \"B123456\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Simon\",\n            \"officerPrimary\": \"Yes\",\n            \"officerOnDuty\": \"Yes\",\n            \"officerPermanentAssignment\": \"North Sector\",\n            \"officerInUniform\": \"Yes\",\n            \"race\": \"Hispanic/Latino\",\n            \"gender\": \"Male\",\n            \"age\": \"35\",\n            \"driverLicense\": \"FL123456\",\n            \"driverLicenseExpirationDate\": \"03/07/2022\",\n            \"officerYearsWithAgency\": \"12\",\n            \"officerTotalYearsInLawEnforcement\": \"12\",\n            \"education\": \"\",\n            \"pursuitTrainingType\": \"Academy\",\n            \"officerInjured\": \"Yes\",\n            \"officerInjuryType\": \"Abrasion(s)\",\n            \"officerInjurySeverity\": \"Possible\",\n            \"officerHowInjuryOccurred\": \"Suspect’s Actions\",\n            \"officerMedicalTreatmentReceived\": \"Yes\",\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\n            \"officerTransported\": \"Yes\",\n            \"officerTransportedBy\": \"EMS\",\n            \"officerTransportedTo\": \"The Hospital\",\n            \"officerTransportedTime\": \"12:12:00\",\n            \"officerInjuryPhotos\": \"\",\n            \"officerInjuryPhotosTakenBy\": \"\",\n            \"vehicleNumber\": \"PC-11\",\n            \"vehicleType\": \"Car\",\n            \"vehicleMake\": \"MINI\",\n            \"vehicleModel\": \"Cooper\",\n            \"year\": \"2021\",\n            \"vehicleTag\": \"FL1234\",\n            \"state\": \"FL\",\n            \"vehicleDamaged\": \"Yes\",\n            \"vehicleDamageType\": \"Driver Side Rear Fender\",\n            \"vehicleDamageAmount\": \"$500 - $1,000\",\n            \"vehicleTowed\": \"Yes\",\n            \"towingCompany\": \"Anytown Service\",\n            \"rank\": \"\",\n            \"licenseState\": \"\",\n            \"nonEditable\": false,\n            \"vehicleOwner\": \"Sara Jane Smith\",\n            \"bodyWornCamera\": \"\",\n            \"activated\": \"\",\n            \"vehicleTowCompany\": \"\",\n            \"photosofVehicleDamage\": \"\",\n            \"officerMedicalTreatmentReceivedByDropDown\": \"\",\n            \"officerTransportedByDropDown\": \"\",\n            \"officerTransportedToDropDown\": \"\",\n            \"vehicleDamage\": \"\",\n            \"ethnicity\": \"\",\n            \"primaryReferenceId\": null,\n            \"passengers\": [\n                {\n                    \"officerPassengerId\": 11,\n                    \"incidentOfficerId\": 1028,\n                    \"isOfficer\": \"\",\n                    \"officerId\": \"\",\n                    \"passengerFirstName\": \"John\",\n                    \"passengerMiddleName\": \"Jason\",\n                    \"passengerLastName\": \"Smith\",\n                    \"passengerAddress\": \"1234 Main Street\",\n                    \"passengerCity\": \"Jacksonville\",\n                    \"passengerState\": \"FL\",\n                    \"passengerDob\": \"03/01/1980\",\n                    \"passengerRace\": \"White\",\n                    \"passengerGender\": \"Male\",\n                    \"passengerEmail\": \"\",\n                    \"passengerPhone1\": \"\",\n                    \"passengerPhone2\": \"\",\n                    \"passengerInjured\": \"Yes\",\n                    \"passengerInjuryType\": \"Blunt Trauma\",\n                    \"passengerInjurySeverity\": \"Other  (describe in narrative)\",\n                    \"passengerHowInjuryOccurred\": \"Officer\",\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\n                    \"passengerMedicalTreatmentReceivedBy\": \"The Doctor\",\n                    \"passengerTransported\": \"Yes\",\n                    \"passengerTransportedBy\": \"EMS\",\n                    \"passengerTransportedTo\": \"The Place that Fixes People\",\n                    \"passengerTransportedTime\": \"12:12:00\",\n                    \"passengerInjuryPhotos\": \"\",\n                    \"passengerInjuryPhotosTakenBy\": \"\",\n                    \"passengerMedicalTreatmentReceivedByDropDown\": \"\",\n                    \"passengerTransportedByDropDown\": \"\",\n                    \"passengerTransportedToDropDown\": \"\",\n                    \"ethnicity\": \"\",\n                    \"nonEditable\": false,\n                    \"primaryReferenceId\": null,\n                    \"officerPassengerPointOfContact\": [\n                        {\n                            \"pointOfContactId\": 3,\n                            \"officerPassengerId\": 11,\n                            \"pointType\": \"Upper Chest\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T13:06:40.710823\",\n                            \"createdDate\": \"2022-04-01T13:05:13.2010461\"\n                        },\n                        {\n                            \"pointOfContactId\": 4,\n                            \"officerPassengerId\": 11,\n                            \"pointType\": \"Stomach\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T13:06:40.7108273\",\n                            \"createdDate\": \"2022-04-01T13:05:13.2011699\"\n                        }\n                    ],\n                    \"modifiedDate\": \"2022-04-01T13:06:40.7096478\",\n                    \"createdDate\": \"2022-04-01T13:05:13.2004917\"\n                }\n            ],\n            \"officerPointOfContact\": [\n                {\n                    \"officerPointOfContactId\": 10,\n                    \"officerId\": 1028,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:06:40.6983022\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1879972\"\n                },\n                {\n                    \"officerPointOfContactId\": 11,\n                    \"officerId\": 1028,\n                    \"pointType\": \"Glutes\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:06:40.6983031\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1881237\"\n                },\n                {\n                    \"officerPointOfContactId\": 12,\n                    \"officerId\": 1028,\n                    \"pointType\": \"Hamstring (left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:06:40.6983041\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1881246\"\n                },\n                {\n                    \"officerPointOfContactId\": 13,\n                    \"officerId\": 1028,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1881257\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1881256\"\n                },\n                {\n                    \"officerPointOfContactId\": 14,\n                    \"officerId\": 1028,\n                    \"pointType\": \"Glutes\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1881265\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1881264\"\n                },\n                {\n                    \"officerPointOfContactId\": 15,\n                    \"officerId\": 1028,\n                    \"pointType\": \"Hamstring (left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:05:13.1881274\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1881272\"\n                }\n            ],\n            \"fullName\": \"\",\n            \"modifiedDate\": \"2022-04-01T13:06:40.6974479\",\n            \"createdDate\": \"2022-04-01T13:05:13.1874452\"\n        }\n    ],\n    \"properties\": [\n        {\n            \"propertyId\": 16,\n            \"incidentId\": 3046,\n            \"propertyType\": \"Building\",\n            \"propertyValue\": \">$1000\",\n            \"ownerFirstName\": \"Sara\",\n            \"ownerMiddleName\": \"Jane\",\n            \"ownerLastName\": \"Smith\",\n            \"ownerAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"email\": \"sara.smith@gmail.com\",\n            \"phone1\": \"111-111-1111 x111__\",\n            \"phone2\": \"222-222-2222 x_____\",\n            \"race\": \"White\",\n            \"gender\": \"Female\",\n            \"dateOfBirth\": \"03/01/1980\",\n            \"nonEditable\": false,\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T13:06:40.7382756\",\n            \"createdDate\": \"2022-04-01T13:05:13.2273371\"\n        }\n    ],\n    \"suspects\": [\n        {\n            \"suspectId\": 2045,\n            \"incidentId\": 3046,\n            \"firstName\": \"Sara\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Jane\",\n            \"suspectAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"race\": \"White\",\n            \"gender\": \"Female\",\n            \"suspectDateOfBirth\": \"03/01/1980\",\n            \"age\": \"\",\n            \"height\": \"\",\n            \"weight\": \"\",\n            \"build\": \"\",\n            \"education\": \"\",\n            \"driverLicenseNumber\": \"FL123456\",\n            \"driverLicenseExpiration\": \"03/01/2022\",\n            \"suspectInjured\": \"Yes\",\n            \"suspectInjuryType\": \"Abrasion(s)\",\n            \"suspectInjurySeverity\": \"Fatal injury\",\n            \"howInjuryOccurredToSuspect\": \"Officer Actions\",\n            \"medicalTreatmentOfSuspect\": \"Yes\",\n            \"medicalTreatmentOfSuspectBy\": \"The Doctor\",\n            \"suspectTransported\": \"Yes\",\n            \"suspectTransportedBy\": \"EMS\",\n            \"suspectTransportedTo\": \"The Hospital\",\n            \"suspectTransportedTime\": \"12:12:00\",\n            \"suspectInjuryPhotos\": \"\",\n            \"suspectInjuryPhotosTakenBy\": \"\",\n            \"suspectArrested\": \"Yes\",\n            \"suspectArrestedForFelony\": \"\",\n            \"suspectArrestCharge\": \"28-1911 Failure to yield|||28-886 Speeding\",\n            \"suspectJailNumber\": \"\",\n            \"suspectWhyNotArrested\": \"\",\n            \"vehicleType\": \"Car\",\n            \"vehicleMake\": \"Scion\",\n            \"vehicleModel\": \"xB\",\n            \"year\": \"2015\",\n            \"vehicleTag\": \"FL1234\",\n            \"vehicleState\": \"FL\",\n            \"vehicleDamaged\": \"Yes\",\n            \"vehicleDamageType\": \"Severe Damage\",\n            \"vehicleDamageAmount\": \"$500 - $1,000\",\n            \"vehicleTowed\": \"Yes\",\n            \"towingCompany\": \"Anytown Service\",\n            \"nonEditable\": false,\n            \"licenseState\": \"\",\n            \"vin\": \"\",\n            \"vehicleTowCompany\": \"\",\n            \"photosofVehicleDamage\": \"\",\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\n            \"suspectTransportedByDropDown\": \"\",\n            \"suspectTransportedToDropDown\": \"\",\n            \"vehicleDamage\": \"\",\n            \"suspectCategory\": \"\",\n            \"custodyLocation\": \"\",\n            \"ethnicity\": \"\",\n            \"primaryReferenceId\": null,\n            \"suspectPassengers\": [\n                {\n                    \"suspectPassengerId\": 1013,\n                    \"suspectId\": 2045,\n                    \"passengerFirstName\": \"Ralph\",\n                    \"passengerMiddleName\": \"Waldo\",\n                    \"passengerLastName\": \"Emmerson\",\n                    \"passengerAddress\": \"1234 Main Street\",\n                    \"passengerCity\": \"Jacksonville\",\n                    \"passengerState\": \"FL\",\n                    \"passengerDob\": \"03/01/1980\",\n                    \"passengerRace\": \"Hispanic/Latino\",\n                    \"passengerGender\": \"Male\",\n                    \"passengerEmail\": \"r.emmerson@compuserve.com\",\n                    \"passengerPhone1\": \"111-111-1111 x111__\",\n                    \"passengerPhone2\": \"222-222-2222 x222__\",\n                    \"passengerInjured\": \"Yes\",\n                    \"passengerInjuryType\": \"Blunt Trauma\",\n                    \"passengerInjurySeverity\": \"Incapacitating\",\n                    \"passengerHowInjuryOccurred\": \"Suspect’s Actions\",\n                    \"passengerMedicalTreatmentReceived\": \"Yes\",\n                    \"passengerMedicalTreatmentReceivedBy\": \"Some Dude\",\n                    \"passengerTransported\": \"Yes\",\n                    \"passengerTransportedBy\": \"EMS\",\n                    \"passengerTransportedTo\": \"The Hospital\",\n                    \"passengerTransportedTime\": \"12:12:00\",\n                    \"passengerInjuryPhotos\": \"\",\n                    \"passengerInjuryPhotosTakenBy\": \"\",\n                    \"passengerArrested\": \"Yes\",\n                    \"passengerArrestedForFelony\": \"\",\n                    \"passengerArrestCharge\": \"28-1911 Failure to yield\",\n                    \"passengerJailNumber\": \"\",\n                    \"passengerWhyNotArrested\": \"They didn't do anything illegal.  \",\n                    \"passengerMedicalTreatmentReceivedByDropDown\": \"\",\n                    \"passengerTransportedByDropDown\": \"\",\n                    \"passengerTransportedToDropDown\": \"\",\n                    \"ethnicity\": \"\",\n                    \"nonEditable\": false,\n                    \"primaryReferenceId\": null,\n                    \"suspectPassengerPointsOfContact\": [\n                        {\n                            \"suspectPassengerPointOfContactId\": 7,\n                            \"suspectPassengerId\": 1013,\n                            \"pointType\": \"Thigh (right)\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T13:06:40.692612\",\n                            \"createdDate\": \"2022-04-01T13:05:13.1643171\"\n                        },\n                        {\n                            \"suspectPassengerPointOfContactId\": 8,\n                            \"suspectPassengerId\": 1013,\n                            \"pointType\": \"Upper Arm(left)\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T13:06:40.6926149\",\n                            \"createdDate\": \"2022-04-01T13:05:13.1644549\"\n                        },\n                        {\n                            \"suspectPassengerPointOfContactId\": 9,\n                            \"suspectPassengerId\": 1013,\n                            \"pointType\": \"Forearm (front/right)\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T13:06:40.6926156\",\n                            \"createdDate\": \"2022-04-01T13:05:13.1644615\"\n                        },\n                        {\n                            \"suspectPassengerPointOfContactId\": 10,\n                            \"suspectPassengerId\": 1013,\n                            \"pointType\": \"Calf (right)\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T13:06:40.6926165\",\n                            \"createdDate\": \"2022-04-01T13:05:13.1644624\"\n                        },\n                        {\n                            \"suspectPassengerPointOfContactId\": 11,\n                            \"suspectPassengerId\": 1013,\n                            \"pointType\": \"Glutes\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T13:06:40.6926172\",\n                            \"createdDate\": \"2022-04-01T13:05:13.1644632\"\n                        },\n                        {\n                            \"suspectPassengerPointOfContactId\": 12,\n                            \"suspectPassengerId\": 1013,\n                            \"pointType\": \"Face\",\n                            \"value\": \"1\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T13:06:40.6926181\",\n                            \"createdDate\": \"2022-04-01T13:05:13.1644641\"\n                        }\n                    ],\n                    \"suspectPassengerChargeClassifications\": [\n                        {\n                            \"suspectPassengerChargeClassificationId\": 2,\n                            \"suspectPassengerId\": 1013,\n                            \"charge\": \"28-1911 Failure to yield\",\n                            \"chargeClasification1\": true,\n                            \"chargeClasification2\": false,\n                            \"chargeClasification3\": false,\n                            \"chargeClasification4\": false,\n                            \"chargeClasification5\": false,\n                            \"chargeClasification6\": \"\",\n                            \"nonEditable\": false,\n                            \"modifiedDate\": \"2022-04-01T13:06:40.6940442\",\n                            \"createdDate\": \"2022-04-01T13:05:13.165095\"\n                        }\n                    ],\n                    \"modifiedDate\": \"2022-04-01T13:06:40.691742\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1637532\"\n                }\n            ],\n            \"suspectPointsOfContact\": [\n                {\n                    \"suspectPointOfContactId\": 8,\n                    \"suspectId\": 2045,\n                    \"pointType\": \"Face\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:06:40.6900295\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1495967\"\n                },\n                {\n                    \"suspectPointOfContactId\": 9,\n                    \"suspectId\": 2045,\n                    \"pointType\": \"Calf (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:06:40.6900322\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1497358\"\n                }\n            ],\n            \"suspectChargeClassifications\": [\n                {\n                    \"suspectChargeClassificationId\": 7,\n                    \"suspectId\": 2045,\n                    \"charge\": \"28-1911 Failure to yield\",\n                    \"chargeClasification1\": false,\n                    \"chargeClasification2\": true,\n                    \"chargeClasification3\": true,\n                    \"chargeClasification4\": false,\n                    \"chargeClasification5\": false,\n                    \"chargeClasification6\": \"\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:06:40.6955458\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1503422\"\n                },\n                {\n                    \"suspectChargeClassificationId\": 8,\n                    \"suspectId\": 2045,\n                    \"charge\": \"28-886 Speeding\",\n                    \"chargeClasification1\": false,\n                    \"chargeClasification2\": true,\n                    \"chargeClasification3\": false,\n                    \"chargeClasification4\": false,\n                    \"chargeClasification5\": false,\n                    \"chargeClasification6\": \"\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:06:40.6955497\",\n                    \"createdDate\": \"2022-04-01T13:05:13.1504552\"\n                }\n            ],\n            \"vehicleOwner\": \"\",\n            \"modifiedDate\": \"2022-04-01T13:06:40.6891775\",\n            \"createdDate\": \"2022-04-01T13:05:13.1490134\"\n        }\n    ],\n    \"victims\": [\n        {\n            \"victimId\": 6,\n            \"incidentId\": 3046,\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Jason\",\n            \"victimAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"victimEmail\": \"john.smith@gmail.com\",\n            \"victimPhone1\": \"111-111-1111 x1111_\",\n            \"victimPhone2\": \"222-222-2222 x222__\",\n            \"race\": \"Black\",\n            \"gender\": \"Male\",\n            \"victimDateOfBirth\": \"03/01/1980\",\n            \"victimInjured\": \"Yes\",\n            \"victimInjuryType\": \"Broken Bone\",\n            \"victimInjurySeverity\": \"Other  (describe in narrative)\",\n            \"victimHowInjuryToVictimOccurred\": \"Officer\",\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\n            \"victimTransported\": \"Yes\",\n            \"victimTransportedBy\": \"EMS\",\n            \"victimTransportedTo\": \"The Hospital\",\n            \"victimTransportedTime\": \"12:12:00\",\n            \"victimInjuryPhotos\": \"\",\n            \"victimInjuryPhotosTakenBy\": \"\",\n            \"victimMedicalTreatmentOfVictimByDropDown\": \"\",\n            \"victimTransportedByDropDown\": \"\",\n            \"victimTransportedToDropDown\": \"\",\n            \"nonEditable\": false,\n            \"agency\": \"\",\n            \"primaryReferenceId\": null,\n            \"victimPointsOfContact\": [\n                {\n                    \"victimPointOfContact\": 3,\n                    \"victimId\": 6,\n                    \"pointType\": \"Stomach\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:06:40.7346184\",\n                    \"createdDate\": \"2022-04-01T13:05:13.2133045\"\n                },\n                {\n                    \"victimPointOfContact\": 4,\n                    \"victimId\": 6,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T13:06:40.7346251\",\n                    \"createdDate\": \"2022-04-01T13:05:13.2134365\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T13:06:40.7263294\",\n            \"createdDate\": \"2022-04-01T13:05:13.2127903\"\n        }\n    ],\n    \"witnesses\": [\n        {\n            \"witnessId\": 7,\n            \"incidentId\": 3046,\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Jason\",\n            \"witnessAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"witnessEmail\": \"john.smith@gmail.com\",\n            \"witnessPhone1\": \"111-111-1111 x_____\",\n            \"witnessPhone2\": \"222-222-2222 x222__\",\n            \"race\": \"White\",\n            \"gender\": \"Male\",\n            \"witnessDateOfBirth\": \"03/01/1980\",\n            \"nonEditable\": false,\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T13:06:40.7372928\",\n            \"createdDate\": \"2022-04-01T13:05:13.2202238\"\n        }\n    ],\n    \"reviews\": [],\n    \"reviewFormValues\": [],\n    \"modifiedDate\": \"2022-04-01T13:06:40.739393\",\n    \"createdDate\": \"2022-04-01T13:05:13.1298452\"\n}"},{"id":"8343f1da-29a7-40a0-822f-0ce8668486f1","name":"Instance Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": -1,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"Editing\",\r\n    \"incidentCaseNumber\": \"MyCaseNumber-001\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"pursuitDate\": \"10/10/2019\",\r\n    \"pursuitTime\": \"12:00:00\",\r\n    \"reportDate\": \"10/10/2019\",\r\n    \"reportTime\": \"12:15:00\",\r\n    \"supervisorMonitoringRank\": \"Lieutenant\",\r\n    \"supervisorMonitoringName\": \"John Smith\",\r\n    \"supervisorMonitoringId\": \"0125\",\r\n    \"supervisorRespondingRank\": \"Lieutenant\",\r\n    \"supervisorRespondingName\": \"Jane Smith\",\r\n    \"supervisorRespondingId\": \"0125\",\r\n    \"pursuitReason\": \"Felony Criminal Complaint\",\r\n    \"pursuitDispatched\": \"On-View\",\r\n    \"pursuitStartTime\": \"12:00:00\",\r\n    \"pursuitStartArea1\": \"District 731\",\r\n    \"pursuitStartArea2\": \"\",\r\n    \"pursuitStartArea3\": \"\",\r\n    \"pursuitEndTime\": \"12:10:00\",\r\n    \"pursuitEndArea1\": \"District 721\",\r\n    \"pursuitEndArea2\": \"\",\r\n    \"pursuitEndArea3\": \"\",\r\n    \"pursuitDuration\": \"5-10 Minutes\",\r\n    \"pursuitHighestSpeed\": \"50-80 mph\",\r\n    \"trafficPattern\": \"No Pedestrian Traffic\",\r\n    \"weatherConditions\": \"Fog\",\r\n    \"pursuitDistance\": \"1-5 Miles\",\r\n    \"howPursuitTerminated\": \"Suspect Stopped\",\r\n    \"pursuitTerminationReason\": \"Suspect Captured\",\r\n    \"terminationTactics\": \"Tire Deflation Device\",\r\n    \"incidentDocumentAttached\": \"No\",\r\n    \"resourceInvolved\": \"Helicopter\",\r\n    \"pursuitRoute\": \"Vehicle Pursuits are one of the top liabilities agency leaders face. According to the Bureau of Justice Statistics, every year law enforcement is involved in more than 50,000 pursuits, and each day one person is killed as the result of a pursuit. Sadly, in one-third of these cases, it is an innocent bystander that is the victim. These statistics emphasize the importance for each law enforcement agency to uphold a pursuit policy that specifies the agency’s pursuit guidelines. It is equally important that officers receive proper training and ensure all pursuits are properly documented.\",\r\n    \"pursuitJustification\": \"Vehicle Pursuits are one of the top liabilities agency leaders face. According to the Bureau of Justice Statistics, every year law enforcement is involved in more than 50,000 pursuits, and each day one person is killed as the result of a pursuit. Sadly, in one-third of these cases, it is an innocent bystander that is the victim. These statistics emphasize the importance for each law enforcement agency to uphold a pursuit policy that specifies the agency’s pursuit guidelines. It is equally important that officers receive proper training and ensure all pursuits are properly documented.\",\r\n    \"pursuitResultCrash\": \"No\",\r\n    \"trackingNumber\": \"2022 - 3\",\r\n    \"trackingId\": 3,\r\n    \"trackingYear\": 2022,\r\n    \"subReportNumber\": null,\r\n    \"reportType\": \"\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"involvedOfficer\": false,\r\n    \"involvedSuspect\": true,\r\n    \"involvedVictim\": false,\r\n    \"involvedWitness\": false,\r\n    \"involvedProperty\": false,\r\n    \"involvedNarrative\": true,\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": null,\r\n    \"sectionCode\": \"\",\r\n    \"agency\": \"Anytown Police Department\",\r\n    \"optional1\": \"Anytown Police Department\",\r\n    \"optional2\": \"\",\r\n    \"optional3\": \"\",\r\n    \"optional4\": \"\",\r\n    \"optional5\": \"\",\r\n    \"optional6\": \"\",\r\n    \"optional7\": \"\",\r\n    \"optional8\": \"\",\r\n    \"optional9\": \"\",\r\n    \"optional10\": \"\",\r\n    \"optional11\": \"\",\r\n    \"optional12\": \"\",\r\n    \"influenceFactors\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 2036,\r\n            \"incidentId\": 2037,\r\n            \"narrative\": \"Vehicle Pursuits are one of the top liabilities agency leaders face. According to the Bureau of Justice Statistics, every year law enforcement is involved in more than 50,000 pursuits, and each day one person is killed as the result of a pursuit. Sadly, in one-third of these cases, it is an innocent bystander that is the victim. These statistics emphasize the importance for each law enforcement agency to uphold a pursuit policy that specifies the agency’s pursuit guidelines. It is equally important that officers receive proper training and ensure all pursuits are properly documented.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-03-18T15:44:56.5612505\",\r\n            \"createdDate\": \"2022-03-18T15:44:56.5612158\"\r\n        }\r\n    ],\r\n    \"officers\": [],\r\n    \"properties\": [],\r\n    \"suspects\": [\r\n        {\r\n            \"suspectId\": 1036,\r\n            \"incidentId\": 2037,\r\n            \"firstName\": \"Jane\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"suspectAddress\": \"7855\",\r\n            \"city\": \"Zoysia Ln\",\r\n            \"state\": \"NE\",\r\n            \"race\": \"Asian\",\r\n            \"gender\": \"Female\",\r\n            \"suspectDateOfBirth\": \"09/09/1999\",\r\n            \"age\": \"\",\r\n            \"height\": \"5ft-5ft3in\",\r\n            \"weight\": \"100-149\",\r\n            \"build\": \"Thin\",\r\n            \"education\": \"12\",\r\n            \"driverLicenseNumber\": \"D467-56-976-0\",\r\n            \"driverLicenseExpiration\": \"09/09/2020\",\r\n            \"suspectInjured\": \"No\",\r\n            \"suspectInjuryType\": \"\",\r\n            \"suspectInjurySeverity\": \"\",\r\n            \"howInjuryOccurredToSuspect\": \"\",\r\n            \"medicalTreatmentOfSuspect\": \"\",\r\n            \"medicalTreatmentOfSuspectBy\": \"\",\r\n            \"suspectTransported\": \"\",\r\n            \"suspectTransportedBy\": \"\",\r\n            \"suspectTransportedTo\": \"\",\r\n            \"suspectTransportedTime\": null,\r\n            \"suspectInjuryPhotos\": \"\",\r\n            \"suspectInjuryPhotosTakenBy\": \"\",\r\n            \"suspectArrested\": \"Yes\",\r\n            \"suspectArrestedForFelony\": \"No\",\r\n            \"suspectArrestCharge\": \"Charge 2\",\r\n            \"suspectJailNumber\": \"D4243\",\r\n            \"suspectWhyNotArrested\": \"\",\r\n            \"vehicleType\": \"Semi\",\r\n            \"vehicleMake\": \"Volvo\",\r\n            \"vehicleModel\": \"S200\",\r\n            \"year\": \"2017\",\r\n            \"vehicleTag\": \"R4654645\",\r\n            \"vehicleState\": \"NE\",\r\n            \"vehicleDamaged\": \"No\",\r\n            \"vehicleDamageType\": \"\",\r\n            \"vehicleDamageAmount\": \"No Damage\",\r\n            \"vehicleTowed\": \"No\",\r\n            \"towingCompany\": \"\",\r\n            \"nonEditable\": false,\r\n            \"licenseState\": \"\",\r\n            \"vin\": \"\",\r\n            \"vehicleTowCompany\": \"\",\r\n            \"photosofVehicleDamage\": \"\",\r\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\r\n            \"suspectTransportedByDropDown\": \"\",\r\n            \"suspectTransportedToDropDown\": \"\",\r\n            \"vehicleDamage\": \"\",\r\n            \"suspectCategory\": \"\",\r\n            \"custodyLocation\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"suspectPassengers\": [],\r\n            \"suspectPointsOfContact\": [],\r\n            \"suspectChargeClassifications\": [],\r\n            \"vehicleOwner\": \"\",\r\n            \"modifiedDate\": \"2022-03-18T15:44:56.5575462\",\r\n            \"createdDate\": \"2022-03-18T15:44:56.5575147\"\r\n        }\r\n    ],\r\n    \"victims\": [],\r\n    \"witnesses\": [],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [],\r\n    \"modifiedDate\": \"2022-03-18T15:44:56.5372754\",\r\n    \"createdDate\": \"2022-03-18T15:44:56.5372334\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/vipr"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmlwcg==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 19:51:43 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Instance not found for the supplied id!\"\n}"},{"id":"59e676fa-e76b-4299-9094-4f9d3ea140ff","name":"Case Number Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": 2037,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"Editing\",\r\n    \"incidentCaseNumber\": \"MyCaseNumber-000\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"pursuitDate\": \"10/10/2019\",\r\n    \"pursuitTime\": \"12:00:00\",\r\n    \"reportDate\": \"10/10/2019\",\r\n    \"reportTime\": \"12:15:00\",\r\n    \"supervisorMonitoringRank\": \"Lieutenant\",\r\n    \"supervisorMonitoringName\": \"John Smith\",\r\n    \"supervisorMonitoringId\": \"0125\",\r\n    \"supervisorRespondingRank\": \"Lieutenant\",\r\n    \"supervisorRespondingName\": \"Jane Smith\",\r\n    \"supervisorRespondingId\": \"0125\",\r\n    \"pursuitReason\": \"Felony Criminal Complaint\",\r\n    \"pursuitDispatched\": \"On-View\",\r\n    \"pursuitStartTime\": \"12:00:00\",\r\n    \"pursuitStartArea1\": \"District 731\",\r\n    \"pursuitStartArea2\": \"\",\r\n    \"pursuitStartArea3\": \"\",\r\n    \"pursuitEndTime\": \"12:10:00\",\r\n    \"pursuitEndArea1\": \"District 721\",\r\n    \"pursuitEndArea2\": \"\",\r\n    \"pursuitEndArea3\": \"\",\r\n    \"pursuitDuration\": \"5-10 Minutes\",\r\n    \"pursuitHighestSpeed\": \"50-80 mph\",\r\n    \"trafficPattern\": \"No Pedestrian Traffic\",\r\n    \"weatherConditions\": \"Fog\",\r\n    \"pursuitDistance\": \"1-5 Miles\",\r\n    \"howPursuitTerminated\": \"Suspect Stopped\",\r\n    \"pursuitTerminationReason\": \"Suspect Captured\",\r\n    \"terminationTactics\": \"Tire Deflation Device\",\r\n    \"incidentDocumentAttached\": \"No\",\r\n    \"resourceInvolved\": \"Helicopter\",\r\n    \"pursuitRoute\": \"Vehicle Pursuits are one of the top liabilities agency leaders face. According to the Bureau of Justice Statistics, every year law enforcement is involved in more than 50,000 pursuits, and each day one person is killed as the result of a pursuit. Sadly, in one-third of these cases, it is an innocent bystander that is the victim. These statistics emphasize the importance for each law enforcement agency to uphold a pursuit policy that specifies the agency’s pursuit guidelines. It is equally important that officers receive proper training and ensure all pursuits are properly documented.\",\r\n    \"pursuitJustification\": \"Vehicle Pursuits are one of the top liabilities agency leaders face. According to the Bureau of Justice Statistics, every year law enforcement is involved in more than 50,000 pursuits, and each day one person is killed as the result of a pursuit. Sadly, in one-third of these cases, it is an innocent bystander that is the victim. These statistics emphasize the importance for each law enforcement agency to uphold a pursuit policy that specifies the agency’s pursuit guidelines. It is equally important that officers receive proper training and ensure all pursuits are properly documented.\",\r\n    \"pursuitResultCrash\": \"No\",\r\n    \"trackingNumber\": \"2022 - 3\",\r\n    \"trackingId\": 3,\r\n    \"trackingYear\": 2022,\r\n    \"subReportNumber\": null,\r\n    \"reportType\": \"\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"involvedOfficer\": false,\r\n    \"involvedSuspect\": true,\r\n    \"involvedVictim\": false,\r\n    \"involvedWitness\": false,\r\n    \"involvedProperty\": false,\r\n    \"involvedNarrative\": true,\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": null,\r\n    \"sectionCode\": \"\",\r\n    \"agency\": \"Anytown Police Department\",\r\n    \"optional1\": \"Anytown Police Department\",\r\n    \"optional2\": \"\",\r\n    \"optional3\": \"\",\r\n    \"optional4\": \"\",\r\n    \"optional5\": \"\",\r\n    \"optional6\": \"\",\r\n    \"optional7\": \"\",\r\n    \"optional8\": \"\",\r\n    \"optional9\": \"\",\r\n    \"optional10\": \"\",\r\n    \"optional11\": \"\",\r\n    \"optional12\": \"\",\r\n    \"influenceFactors\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 2036,\r\n            \"incidentId\": 2037,\r\n            \"narrative\": \"Vehicle Pursuits are one of the top liabilities agency leaders face. According to the Bureau of Justice Statistics, every year law enforcement is involved in more than 50,000 pursuits, and each day one person is killed as the result of a pursuit. Sadly, in one-third of these cases, it is an innocent bystander that is the victim. These statistics emphasize the importance for each law enforcement agency to uphold a pursuit policy that specifies the agency’s pursuit guidelines. It is equally important that officers receive proper training and ensure all pursuits are properly documented.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-03-18T15:44:56.5612505\",\r\n            \"createdDate\": \"2022-03-18T15:44:56.5612158\"\r\n        }\r\n    ],\r\n    \"officers\": [],\r\n    \"properties\": [],\r\n    \"suspects\": [\r\n        {\r\n            \"suspectId\": 1036,\r\n            \"incidentId\": 2037,\r\n            \"firstName\": \"Sara\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"suspectAddress\": \"7855\",\r\n            \"city\": \"Zoysia Ln\",\r\n            \"state\": \"NE\",\r\n            \"race\": \"Asian\",\r\n            \"gender\": \"Female\",\r\n            \"suspectDateOfBirth\": \"09/09/1999\",\r\n            \"age\": \"\",\r\n            \"height\": \"5ft-5ft3in\",\r\n            \"weight\": \"100-149\",\r\n            \"build\": \"Thin\",\r\n            \"education\": \"12\",\r\n            \"driverLicenseNumber\": \"D467-56-976-0\",\r\n            \"driverLicenseExpiration\": \"09/09/2020\",\r\n            \"suspectInjured\": \"No\",\r\n            \"suspectInjuryType\": \"\",\r\n            \"suspectInjurySeverity\": \"\",\r\n            \"howInjuryOccurredToSuspect\": \"\",\r\n            \"medicalTreatmentOfSuspect\": \"\",\r\n            \"medicalTreatmentOfSuspectBy\": \"\",\r\n            \"suspectTransported\": \"\",\r\n            \"suspectTransportedBy\": \"\",\r\n            \"suspectTransportedTo\": \"\",\r\n            \"suspectTransportedTime\": null,\r\n            \"suspectInjuryPhotos\": \"\",\r\n            \"suspectInjuryPhotosTakenBy\": \"\",\r\n            \"suspectArrested\": \"Yes\",\r\n            \"suspectArrestedForFelony\": \"No\",\r\n            \"suspectArrestCharge\": \"Charge 2\",\r\n            \"suspectJailNumber\": \"D4243\",\r\n            \"suspectWhyNotArrested\": \"\",\r\n            \"vehicleType\": \"Semi\",\r\n            \"vehicleMake\": \"Volvo\",\r\n            \"vehicleModel\": \"S200\",\r\n            \"year\": \"2017\",\r\n            \"vehicleTag\": \"R4654645\",\r\n            \"vehicleState\": \"NE\",\r\n            \"vehicleDamaged\": \"No\",\r\n            \"vehicleDamageType\": \"\",\r\n            \"vehicleDamageAmount\": \"No Damage\",\r\n            \"vehicleTowed\": \"No\",\r\n            \"towingCompany\": \"\",\r\n            \"nonEditable\": false,\r\n            \"licenseState\": \"\",\r\n            \"vin\": \"\",\r\n            \"vehicleTowCompany\": \"\",\r\n            \"photosofVehicleDamage\": \"\",\r\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\r\n            \"suspectTransportedByDropDown\": \"\",\r\n            \"suspectTransportedToDropDown\": \"\",\r\n            \"vehicleDamage\": \"\",\r\n            \"suspectCategory\": \"\",\r\n            \"custodyLocation\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"suspectPassengers\": [],\r\n            \"suspectPointsOfContact\": [],\r\n            \"suspectChargeClassifications\": [],\r\n            \"vehicleOwner\": \"\",\r\n            \"modifiedDate\": \"2022-03-18T15:44:56.5575462\",\r\n            \"createdDate\": \"2022-03-18T15:44:56.5575147\"\r\n        }\r\n    ],\r\n    \"victims\": [],\r\n    \"witnesses\": [],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [],\r\n    \"modifiedDate\": \"2022-03-18T15:44:56.5372754\",\r\n    \"createdDate\": \"2022-03-18T15:44:56.5372334\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/vipr"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmlwcg==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 19:52:25 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Supplied Incident Case Number doesn't exists!\"\n}"},{"id":"f83bff53-f555-4734-9f39-ca51ba27ff2e","name":"Record Locked","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": 1,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"Editing\",\r\n    \"incidentCaseNumber\": \"MyCaseNumber-001\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"pursuitDate\": \"10/10/2019\",\r\n    \"pursuitTime\": \"12:00:00\",\r\n    \"reportDate\": \"10/10/2019\",\r\n    \"reportTime\": \"12:15:00\",\r\n    \"supervisorMonitoringRank\": \"Lieutenant\",\r\n    \"supervisorMonitoringName\": \"John Smith\",\r\n    \"supervisorMonitoringId\": \"0125\",\r\n    \"supervisorRespondingRank\": \"Lieutenant\",\r\n    \"supervisorRespondingName\": \"Jane Smith\",\r\n    \"supervisorRespondingId\": \"0125\",\r\n    \"pursuitReason\": \"Felony Criminal Complaint\",\r\n    \"pursuitDispatched\": \"On-View\",\r\n    \"pursuitStartTime\": \"12:00:00\",\r\n    \"pursuitStartArea1\": \"District 731\",\r\n    \"pursuitStartArea2\": \"\",\r\n    \"pursuitStartArea3\": \"\",\r\n    \"pursuitEndTime\": \"12:10:00\",\r\n    \"pursuitEndArea1\": \"District 721\",\r\n    \"pursuitEndArea2\": \"\",\r\n    \"pursuitEndArea3\": \"\",\r\n    \"pursuitDuration\": \"5-10 Minutes\",\r\n    \"pursuitHighestSpeed\": \"50-80 mph\",\r\n    \"trafficPattern\": \"No Pedestrian Traffic\",\r\n    \"weatherConditions\": \"Fog\",\r\n    \"pursuitDistance\": \"1-5 Miles\",\r\n    \"howPursuitTerminated\": \"Suspect Stopped\",\r\n    \"pursuitTerminationReason\": \"Suspect Captured\",\r\n    \"terminationTactics\": \"Tire Deflation Device\",\r\n    \"incidentDocumentAttached\": \"No\",\r\n    \"resourceInvolved\": \"Helicopter\",\r\n    \"pursuitRoute\": \"Vehicle Pursuits are one of the top liabilities agency leaders face. According to the Bureau of Justice Statistics, every year law enforcement is involved in more than 50,000 pursuits, and each day one person is killed as the result of a pursuit. Sadly, in one-third of these cases, it is an innocent bystander that is the victim. These statistics emphasize the importance for each law enforcement agency to uphold a pursuit policy that specifies the agency’s pursuit guidelines. It is equally important that officers receive proper training and ensure all pursuits are properly documented.\",\r\n    \"pursuitJustification\": \"Vehicle Pursuits are one of the top liabilities agency leaders face. According to the Bureau of Justice Statistics, every year law enforcement is involved in more than 50,000 pursuits, and each day one person is killed as the result of a pursuit. Sadly, in one-third of these cases, it is an innocent bystander that is the victim. These statistics emphasize the importance for each law enforcement agency to uphold a pursuit policy that specifies the agency’s pursuit guidelines. It is equally important that officers receive proper training and ensure all pursuits are properly documented.\",\r\n    \"pursuitResultCrash\": \"No\",\r\n    \"trackingNumber\": \"2022 - 3\",\r\n    \"trackingId\": 3,\r\n    \"trackingYear\": 2022,\r\n    \"subReportNumber\": null,\r\n    \"reportType\": \"\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"involvedOfficer\": false,\r\n    \"involvedSuspect\": true,\r\n    \"involvedVictim\": false,\r\n    \"involvedWitness\": false,\r\n    \"involvedProperty\": false,\r\n    \"involvedNarrative\": true,\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": null,\r\n    \"sectionCode\": \"\",\r\n    \"agency\": \"Anytown Police Department\",\r\n    \"optional1\": \"Anytown Police Department\",\r\n    \"optional2\": \"\",\r\n    \"optional3\": \"\",\r\n    \"optional4\": \"\",\r\n    \"optional5\": \"\",\r\n    \"optional6\": \"\",\r\n    \"optional7\": \"\",\r\n    \"optional8\": \"\",\r\n    \"optional9\": \"\",\r\n    \"optional10\": \"\",\r\n    \"optional11\": \"\",\r\n    \"optional12\": \"\",\r\n    \"influenceFactors\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 2036,\r\n            \"incidentId\": 2037,\r\n            \"narrative\": \"Vehicle Pursuits are one of the top liabilities agency leaders face. According to the Bureau of Justice Statistics, every year law enforcement is involved in more than 50,000 pursuits, and each day one person is killed as the result of a pursuit. Sadly, in one-third of these cases, it is an innocent bystander that is the victim. These statistics emphasize the importance for each law enforcement agency to uphold a pursuit policy that specifies the agency’s pursuit guidelines. It is equally important that officers receive proper training and ensure all pursuits are properly documented.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-03-18T15:44:56.5612505\",\r\n            \"createdDate\": \"2022-03-18T15:44:56.5612158\"\r\n        }\r\n    ],\r\n    \"officers\": [],\r\n    \"properties\": [],\r\n    \"suspects\": [\r\n        {\r\n            \"suspectId\": 1036,\r\n            \"incidentId\": 2037,\r\n            \"firstName\": \"Jane\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"suspectAddress\": \"7855\",\r\n            \"city\": \"Zoysia Ln\",\r\n            \"state\": \"NE\",\r\n            \"race\": \"Asian\",\r\n            \"gender\": \"Female\",\r\n            \"suspectDateOfBirth\": \"09/09/1999\",\r\n            \"age\": \"\",\r\n            \"height\": \"5ft-5ft3in\",\r\n            \"weight\": \"100-149\",\r\n            \"build\": \"Thin\",\r\n            \"education\": \"12\",\r\n            \"driverLicenseNumber\": \"D467-56-976-0\",\r\n            \"driverLicenseExpiration\": \"09/09/2020\",\r\n            \"suspectInjured\": \"No\",\r\n            \"suspectInjuryType\": \"\",\r\n            \"suspectInjurySeverity\": \"\",\r\n            \"howInjuryOccurredToSuspect\": \"\",\r\n            \"medicalTreatmentOfSuspect\": \"\",\r\n            \"medicalTreatmentOfSuspectBy\": \"\",\r\n            \"suspectTransported\": \"\",\r\n            \"suspectTransportedBy\": \"\",\r\n            \"suspectTransportedTo\": \"\",\r\n            \"suspectTransportedTime\": null,\r\n            \"suspectInjuryPhotos\": \"\",\r\n            \"suspectInjuryPhotosTakenBy\": \"\",\r\n            \"suspectArrested\": \"Yes\",\r\n            \"suspectArrestedForFelony\": \"No\",\r\n            \"suspectArrestCharge\": \"Charge 2\",\r\n            \"suspectJailNumber\": \"D4243\",\r\n            \"suspectWhyNotArrested\": \"\",\r\n            \"vehicleType\": \"Semi\",\r\n            \"vehicleMake\": \"Volvo\",\r\n            \"vehicleModel\": \"S200\",\r\n            \"year\": \"2017\",\r\n            \"vehicleTag\": \"R4654645\",\r\n            \"vehicleState\": \"NE\",\r\n            \"vehicleDamaged\": \"No\",\r\n            \"vehicleDamageType\": \"\",\r\n            \"vehicleDamageAmount\": \"No Damage\",\r\n            \"vehicleTowed\": \"No\",\r\n            \"towingCompany\": \"\",\r\n            \"nonEditable\": false,\r\n            \"licenseState\": \"\",\r\n            \"vin\": \"\",\r\n            \"vehicleTowCompany\": \"\",\r\n            \"photosofVehicleDamage\": \"\",\r\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\r\n            \"suspectTransportedByDropDown\": \"\",\r\n            \"suspectTransportedToDropDown\": \"\",\r\n            \"vehicleDamage\": \"\",\r\n            \"suspectCategory\": \"\",\r\n            \"custodyLocation\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"suspectPassengers\": [],\r\n            \"suspectPointsOfContact\": [],\r\n            \"suspectChargeClassifications\": [],\r\n            \"vehicleOwner\": \"\",\r\n            \"modifiedDate\": \"2022-03-18T15:44:56.5575462\",\r\n            \"createdDate\": \"2022-03-18T15:44:56.5575147\"\r\n        }\r\n    ],\r\n    \"victims\": [],\r\n    \"witnesses\": [],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [],\r\n    \"modifiedDate\": \"2022-03-18T15:44:56.5372754\",\r\n    \"createdDate\": \"2022-03-18T15:44:56.5372334\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/vipr"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcdmlwcg==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 25 Mar 2022 12:49:02 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"This report is locked. You cannot make changes unless it is unlocked. Please check with your administrator to verify.\"\n}"}],"_postman_id":"cd54e81f-f8a8-4ce6-ad28-6cee34d326a1"}],"id":"02582f39-19d4-4a53-b20d-c3eea86533ea","description":"<p>Through the LEFTA Systems VIPR API, you can interact with SHIELD Portal's Vehicle Pursuit application to interact with pursuit incidents and its related entities.</p>\n","event":[{"listen":"prerequest","script":{"id":"fa4d9c67-2763-4f36-a512-0f79d1d4a4c3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"81e81ad8-7b12-46d9-a0fe-852980bc36b9","type":"text/javascript","exec":[""]}}],"_postman_id":"02582f39-19d4-4a53-b20d-c3eea86533ea","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}}},{"name":"PASS : Field Investigations","item":[{"name":"Get a List of Field Investigations","id":"ad390abb-3765-4cbd-a668-e40931c51bf6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/pass?start_date=10-20-2012&end_date=03-15-2022","description":"<p>Get a list of field investigations based of the supplied filter criteria. None of the child entities will be populated on search results.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","pass"],"host":["{{BaseUri}}"],"query":[{"description":{"content":"<p>Filter results by incidentDate to include only records after this date.</p>\n","type":"text/plain"},"key":"start_date","value":"10-20-2012"},{"description":{"content":"<p>Filter results by incidentDate to include only records before this date.</p>\n","type":"text/plain"},"key":"end_date","value":"03-15-2022"}],"variable":[]}},"response":[{"id":"1c7ea60e-0e2a-4afa-82b5-e91e3bbbb8d6","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/pass?start_date=10-20-2012&end_date=03-15-2022","host":["{{BaseUri}}"],"path":["api","pass"],"query":[{"key":"start_date","value":"10-20-2012","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2022","description":"Filter results to include only records before this date."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlccGFzcw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 20:15:44 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"incidentId\": 1,\n        \"creator\": \"Smith, Matt\",\n        \"reviewer\": \"\",\n        \"creatorId\": 7931,\n        \"status\": \"Editing\",\n        \"caseNumber\": \"209876.A18\",\n        \"relatedIncidentCase\": \"90345.A18\",\n        \"incidentDate\": \"11/19/2019\",\n        \"incidentTime\": \"14:06:00\",\n        \"streetNumber\": \"2532\",\n        \"streetName\": \"Courtney\",\n        \"streetType\": \"St\",\n        \"streetDirection\": \"NE\",\n        \"city\": \"San Diego\",\n        \"state\": \"OR\",\n        \"zip\": \"32334-____\",\n        \"area\": \"Zone 2\",\n        \"sector\": \"North\",\n        \"reasonableSuspicion\": \"Matching Description Of Wanted Person\",\n        \"routing\": \"Command Staff\",\n        \"deleteComments\": \"\",\n        \"reportType\": \"\",\n        \"subReportNumber\": null,\n        \"trackingId\": 1,\n        \"trackingYear\": 2019,\n        \"trackingNumber\": \"2019 - 1\",\n        \"nonEditable\": false,\n        \"sealed\": false,\n        \"involvedSupervisorReview\": null,\n        \"closestIntersection\": \"\",\n        \"closestExit\": \"\",\n        \"roadMarker\": \"\",\n        \"incidentDocumentAttached\": \"\",\n        \"isSchool\": null,\n        \"isStudent\": \"\",\n        \"hyperactivity\": \"\",\n        \"schoolName\": \"\",\n        \"locationOfStop\": \"\",\n        \"reasonPublicSchools\": \"\",\n        \"resultsPublicSchools\": \"\",\n        \"locationOfStopDetails\": \"\",\n        \"timeTaken\": \"\",\n        \"primaryReferenceId\": null,\n        \"enforcements\": [],\n        \"narratives\": [],\n        \"officers\": [],\n        \"subjects\": [],\n        \"vehicles\": [],\n        \"reviews\": [],\n        \"reviewFormValues\": [],\n        \"ripas\": [],\n        \"dojSubmissionStatus\": \"\",\n        \"ripaAddress\": \"\",\n        \"modifiedDate\": \"2019-12-15T17:10:35.1490089\",\n        \"createdDate\": \"2019-11-19T09:06:28.4019253\",\n        \"createdBy\": \"mattsmith@leftasystems.org\",\n        \"modifiedBy\": \"mattsmith@leftasystems.org\",\n        \"deleted\": false,\n        \"uniqueKey\": \"\"\n    },\n    {\n        \"incidentId\": 2,\n        \"creator\": \"Smith, John\",\n        \"reviewer\": \"\",\n        \"creatorId\": 18539,\n        \"status\": \"Completed\",\n        \"caseNumber\": \"20-001001\",\n        \"relatedIncidentCase\": \"\",\n        \"incidentDate\": \"01/31/2020\",\n        \"incidentTime\": \"12:27:00\",\n        \"streetNumber\": \"123\",\n        \"streetName\": \"Main \",\n        \"streetType\": \"St\",\n        \"streetDirection\": \"\",\n        \"city\": \"Miami\",\n        \"state\": \"FL\",\n        \"zip\": \"33101-____\",\n        \"area\": \"Zone 1\",\n        \"sector\": \"North\",\n        \"reasonableSuspicion\": \"Traffic Violation\",\n        \"routing\": \"Command Staff\",\n        \"deleteComments\": \"\",\n        \"reportType\": \"\",\n        \"subReportNumber\": null,\n        \"trackingId\": 1,\n        \"trackingYear\": 2020,\n        \"trackingNumber\": \"2020 - 1\",\n        \"nonEditable\": false,\n        \"sealed\": false,\n        \"involvedSupervisorReview\": null,\n        \"closestIntersection\": \"\",\n        \"closestExit\": \"\",\n        \"roadMarker\": \"\",\n        \"incidentDocumentAttached\": \"\",\n        \"isSchool\": null,\n        \"isStudent\": \"\",\n        \"hyperactivity\": \"\",\n        \"schoolName\": \"\",\n        \"locationOfStop\": \"\",\n        \"reasonPublicSchools\": \"\",\n        \"resultsPublicSchools\": \"\",\n        \"locationOfStopDetails\": \"\",\n        \"timeTaken\": \"\",\n        \"primaryReferenceId\": null,\n        \"enforcements\": [],\n        \"narratives\": [],\n        \"officers\": [],\n        \"subjects\": [],\n        \"vehicles\": [],\n        \"reviews\": [],\n        \"reviewFormValues\": [],\n        \"ripas\": [],\n        \"dojSubmissionStatus\": \"\",\n        \"ripaAddress\": \"\",\n        \"modifiedDate\": \"2020-01-31T12:36:52.748583\",\n        \"createdDate\": \"2020-01-31T12:27:58.6105334\",\n        \"createdBy\": \"johnsmith@leftasystems.org\",\n        \"modifiedBy\": \"johnsmith@leftasystems.org\",\n        \"deleted\": false,\n        \"uniqueKey\": \"\"\n    }\n]"},{"id":"1f3504fc-b7d5-460d-bc91-ec2e41765c7e","name":"Invalid End Date","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"{{BaseUri}}/api/pass?start_date=10-20-2005&end_date=03-15-2025","host":["{{BaseUri}}"],"path":["api","pass"],"query":[{"key":"start_date","value":"10-20-2005","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2025","description":"Filter results to include only records before this date."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 18:58:47 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"End date cannot be greater than the current date!\"\n}"},{"id":"4d00094b-8342-4ce8-b5f5-a78bd484f578","name":"Invalid Start Date","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/pass?start_date=10-20-2001&end_date=03-15-2022","host":["{{BaseUri}}"],"path":["api","pass"],"query":[{"key":"start_date","value":"10-20-2001","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2022","description":"Filter results to include only records before this date."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 18:59:58 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"Start date cannot be more than 20 years prior to the current date!\"\n}"}],"_postman_id":"ad390abb-3765-4cbd-a668-e40931c51bf6"},{"name":"Get Field Investigation","id":"9356a1d4-c583-4e75-92ee-b25b869f3082","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/pass/:incidentId","description":"<p>Gets a detailed field investigation record with relationships based of the supplied Id. An error will be thrown if the supplied Id does not match any existing records. It is recommended you get the Id from the search API method.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","pass",":incidentId"],"host":["{{BaseUri}}"],"query":[],"variable":[{"description":{"content":"<p>The record Id of the desired Incident.</p>\n","type":"text/plain"},"type":"any","value":"1096","key":"incidentId"}]}},"response":[{"id":"e206bc48-279e-4da0-bf12-31281f6f83b1","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/pass/:incidentId","host":["{{BaseUri}}"],"path":["api","pass",":incidentId"],"variable":[{"key":"incidentId","value":"1096","description":"The record Id of the desired Incident."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlccGFzc1wxMDk2?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Apr 2022 18:42:31 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"incidentId\": 1096,\n    \"creator\": \"\",\n    \"reviewer\": \"\",\n    \"creatorId\": 95474,\n    \"status\": \"InReview\",\n    \"caseNumber\": \"TestCase-001\",\n    \"relatedIncidentCase\": \"\",\n    \"incidentDate\": \"03/30/2022\",\n    \"incidentTime\": \"15:34:00\",\n    \"streetNumber\": \"1234\",\n    \"streetName\": \"Main\",\n    \"streetType\": \"Street\",\n    \"streetDirection\": \"NE\",\n    \"city\": \"Orlando\",\n    \"state\": \"WA\",\n    \"zip\": \"23124-4545\",\n    \"area\": \"District 741\",\n    \"sector\": \"North\",\n    \"reasonableSuspicion\": \"Taking Flight Upon Seeing Officer\",\n    \"routing\": \"Command Staff\",\n    \"deleteComments\": \"\",\n    \"reportType\": \"\",\n    \"subReportNumber\": null,\n    \"trackingId\": 9,\n    \"trackingYear\": 2022,\n    \"trackingNumber\": \"2022 - 9\",\n    \"nonEditable\": false,\n    \"sealed\": false,\n    \"involvedSupervisorReview\": null,\n    \"closestIntersection\": \"\",\n    \"closestExit\": \"\",\n    \"roadMarker\": \"\",\n    \"incidentDocumentAttached\": \"\",\n    \"isSchool\": null,\n    \"isStudent\": \"\",\n    \"hyperactivity\": \"\",\n    \"schoolName\": \"\",\n    \"locationOfStop\": \"\",\n    \"reasonPublicSchools\": \"\",\n    \"resultsPublicSchools\": \"\",\n    \"locationOfStopDetails\": \"\",\n    \"timeTaken\": \"\",\n    \"primaryReferenceId\": null,\n    \"enforcements\": [\n        {\n            \"enforcementId\": 1098,\n            \"incidentId\": 1096,\n            \"subjectId\": 1104,\n            \"encounterType\": \"Consensual Encounter\",\n            \"reasonForContact\": \"Loitering\",\n            \"obtainedConsent\": \"Yes\",\n            \"consentGiven\": \"Yes\",\n            \"reasonForSearch\": \"Lawfully Detained\",\n            \"propertySeized\": \"Yes\",\n            \"evidenceType\": \"Drugs\",\n            \"actionTaken\": \"Released Without Citation|||Traffic Citation Issued/Released\",\n            \"lengthOfContact\": \"11-15 min\",\n            \"arrested\": \"Yes\",\n            \"felony\": \"Yes\",\n            \"charges\": \"810.02 - Burglary.\",\n            \"nonEditable\": false,\n            \"trafficViolation\": \"\",\n            \"activities\": \"\",\n            \"reasonPublicSchools\": \"\",\n            \"trafficViolationSection\": \"\",\n            \"activitiesSection\": \"\",\n            \"reasonPublicSchoolSectionCode\": \"\",\n            \"basisOfSearchPublicSchools\": \"\",\n            \"actionTakenPublicSchools\": \"\",\n            \"contrabandEvidenceDiscovered\": \"\",\n            \"basisForPropertySeizure\": \"\",\n            \"basisForPropertySeizurePublicSchools\": \"\",\n            \"resultsOfStop\": \"\",\n            \"codeSectionOrdinance\": \"\",\n            \"resultsPublicSchools\": \"\",\n            \"narrative\": \"\",\n            \"primaryReferenceId\": null,\n            \"enforcementChargeClassifications\": [\n                {\n                    \"enforcementChargeClassificationId\": 8,\n                    \"enforcementId\": 1098,\n                    \"charge\": \"810.02 - Burglary.\",\n                    \"chargeClasification1\": true,\n                    \"chargeClasification2\": false,\n                    \"chargeClasification3\": false,\n                    \"chargeClasification4\": false,\n                    \"chargeClasification5\": false,\n                    \"chargeClasification6\": \"\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T08:23:24.2635279\",\n                    \"createdDate\": \"2022-03-30T16:15:11.1661908\",\n                    \"createdBy\": \"durandpeterson@leftasystems.org\",\n                    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n                    \"deleted\": false,\n                    \"uniqueKey\": \"\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T08:23:24.2635157\",\n            \"createdDate\": \"2022-03-30T15:34:23.021865\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"narratives\": [\n        {\n            \"narrativeId\": 1096,\n            \"incidentId\": 1096,\n            \"narrative\": \"This is some great narrative.\",\n            \"nonEditable\": false,\n            \"modifiedDate\": \"2022-04-01T08:23:24.2635949\",\n            \"createdDate\": \"2022-03-30T15:34:23.0595263\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"officers\": [\n        {\n            \"incidentOfficerId\": 1099,\n            \"incidentId\": 1096,\n            \"officerId\": \"2000\",\n            \"name\": \"User, Test\",\n            \"division\": \"Six\",\n            \"unit\": \"Three\",\n            \"nonEditable\": false,\n            \"officerYearsWithAgency\": \"\",\n            \"officerTotalYearsInLawEnforcement\": \"\",\n            \"officerPermanentAssignment\": \"\",\n            \"race\": \"Hispanic/Latino\",\n            \"gender\": \"Unknown\",\n            \"age\": \"22-29\",\n            \"birthDate\": \"03/07/1980\",\n            \"bodyWornCamera\": \"\",\n            \"activated\": \"\",\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T08:23:24.263569\",\n            \"createdDate\": \"2022-03-30T15:34:23.031596\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"subjects\": [\n        {\n            \"subjectId\": 1104,\n            \"incidentId\": 1096,\n            \"lastName\": \"Smith\",\n            \"firstName\": \"Sara\",\n            \"middleName\": \"Jane\",\n            \"nameSuffix\": \"Mrs\",\n            \"aliases\": \"The Dude\",\n            \"streetNumber\": \"1234\",\n            \"streetName\": \"Main\",\n            \"streetDirection\": \"NE\",\n            \"unit\": \"1234__\",\n            \"streetType\": \"Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345-1234\",\n            \"homePhone\": \"111-111-1111 x111__\",\n            \"cellPhone\": \"222-222-2222 x_____\",\n            \"employer\": \"The Great Employment Agency\",\n            \"employerStreetNumber\": \"1234\",\n            \"employerStreetName\": \"Main\",\n            \"employerStreetDirection\": \"N\",\n            \"employerStreetType\": \"Street\",\n            \"employerCity\": \"Jacksonville\",\n            \"employerState\": \"FL\",\n            \"employerZip\": \"12345-1234\",\n            \"employerPhone\": \"111-111-1111 x111__\",\n            \"race\": \"Asian\",\n            \"ethnicity\": \"Asian\",\n            \"gender\": \"Pending\",\n            \"age\": \"40-50\",\n            \"birthDate\": \"03/01/1980\",\n            \"height\": \"5ft4-5ft7in\",\n            \"weight\": \"150-199\",\n            \"hairColor\": \"Black\",\n            \"eyeColor\": \"Brown\",\n            \"clothing\": \"Fully clothed\",\n            \"identificationMarks\": \"One Tattoo on the left body part.\",\n            \"photoTaken\": \"NA\",\n            \"photoPermissionGiven\": \"NA\",\n            \"fingerprintTaken\": \"Yes\",\n            \"fingerprintPermissionGiven\": \"Yes\",\n            \"attachment\": \"\",\n            \"gangCriteria\": \"Admits to gang membership\",\n            \"gangName\": \"Wu-Tang Clan\",\n            \"lengthOfInvolvement\": \"> 1 Year\",\n            \"nonEditable\": false,\n            \"subjectType\": \"\",\n            \"ssn\": \"\",\n            \"dln\": \"\",\n            \"licenseState\": \"\",\n            \"disablityOptions\": \"\",\n            \"hyperactivity\": \"\",\n            \"limitedEnglishFluency\": \"\",\n            \"isStudent\": \"\",\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T08:23:24.2634533\",\n            \"createdDate\": \"2022-03-30T15:34:23.0071793\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"vehicles\": [\n        {\n            \"vehicleId\": 16,\n            \"incidentId\": 1096,\n            \"type\": \"SUV\",\n            \"make\": \"Saab\",\n            \"model\": \"Some Model\",\n            \"year\": \"2011\",\n            \"tag\": \"FL1234\",\n            \"state\": \"PR\",\n            \"color\": \"Red\",\n            \"nonEditable\": false,\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T08:23:24.263487\",\n            \"createdDate\": \"2022-03-30T16:31:11.8948594\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"reviews\": [\n        {\n            \"reviewId\": 126,\n            \"incidentId\": 1096,\n            \"userId\": 95474,\n            \"action\": \"Approve\",\n            \"message\": \"\",\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T08:23:24.4693989\",\n            \"reviewGroupId\": 0,\n            \"modifiedDate\": \"2022-04-01T08:23:24.4693989\",\n            \"createdDate\": \"2022-04-01T08:23:24.4692006\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        },\n        {\n            \"reviewId\": 127,\n            \"incidentId\": 1096,\n            \"userId\": 95475,\n            \"action\": \"Sent\",\n            \"message\": \"\",\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T08:23:24.47429\",\n            \"reviewGroupId\": 0,\n            \"modifiedDate\": \"2022-04-01T08:23:24.47429\",\n            \"createdDate\": \"2022-04-01T08:23:24.474289\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"reviewFormValues\": [],\n    \"ripas\": [\n        {\n            \"ripaId\": 50,\n            \"incidentId\": 1096,\n            \"stopDuration\": \"50\",\n            \"officerTotalYearsInLawEnforcement\": \"5\",\n            \"officerPermanentAssignment\": \"Compliance check\",\n            \"stopInResponseCallForService\": true,\n            \"blockNumber\": \"\",\n            \"streetName\": \"\",\n            \"closestIntersection\": \"\",\n            \"highwayAndClosestExit\": \"\",\n            \"roadMarker\": \"456\",\n            \"city\": \"Jacksonville\",\n            \"isSchool\": false,\n            \"isStudent\": false,\n            \"schoolName\": \"\",\n            \"stopReason\": \"Consensual Encounter resulting in a search\",\n            \"stopReasonTrafficCode\": \"\",\n            \"stopReasonableSuspicion\": \"\",\n            \"stopReasonableSuspicionPenalCode\": \"\",\n            \"stopBriefExplanation\": \"Reason\",\n            \"stopActions\": \"Curbside detention\",\n            \"askConsentSearchPerson\": true,\n            \"consentGivenSearchPerson\": true,\n            \"conductedSearchPerson\": true,\n            \"askConsentSearchProperty\": false,\n            \"conductedSearchProperty\": false,\n            \"propertySeizure\": true,\n            \"stopContrabandEvidenceDiscovered\": \"Firearm(s)\",\n            \"basisForSearch\": \"Consent given\",\n            \"basisForSearchExplanation\": \"The reason for the search.\",\n            \"basisForPropertySeizure\": \"Contraband\",\n            \"typeOfPropertySeized\": \"Ammunition\",\n            \"stopResults\": \"Citation or infraction\",\n            \"stopResultsWarningCode\": \"\",\n            \"stopResultsCitationCode\": \"RIPA Offense 1\",\n            \"stopResultsInFieldCiteCode\": \"\",\n            \"stopResultsCustodialArrestCode\": \"\",\n            \"perceivedRaceOrEthnicity\": \"Pacific Islander\",\n            \"perceivedGender\": \"Female\",\n            \"perceivedLGBT\": true,\n            \"perceivedAge\": 50,\n            \"limitedEnglishFluency\": true,\n            \"perceivedDisability\": \"Deafness or difficulty hearing\",\n            \"nonEditable\": false,\n            \"showWarning\": false,\n            \"showCitation\": false,\n            \"showInfieldCitation\": false,\n            \"showCustodialArrest\": false,\n            \"showSchoolName\": false,\n            \"showIsStudent\": false,\n            \"showReasonableSuspicion\": false,\n            \"showTrafficCode\": false,\n            \"showBasisForSearch\": false,\n            \"showBasisForSearchExplanantion\": false,\n            \"showBasisForPropertySeizure\": false,\n            \"showTypePropertySeized\": false,\n            \"showOfficerAssignOther\": false,\n            \"showEducationSubsection\": false,\n            \"officerAssignmentOther\": \"\",\n            \"educationCodeSubsection\": \"\",\n            \"contactType\": \"\",\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T08:23:24.2636549\",\n            \"createdDate\": \"2022-03-30T15:34:23.0548078\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"dojSubmissionStatus\": \"\",\n    \"ripaAddress\": \"\",\n    \"modifiedDate\": \"2022-04-01T08:23:24.3587259\",\n    \"createdDate\": \"2022-03-30T15:34:22.9743751\",\n    \"createdBy\": \"durandpeterson@leftasystems.org\",\n    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n    \"deleted\": false,\n    \"uniqueKey\": \"\"\n}"},{"id":"f23d6eed-b3bf-4cf3-975e-4346809f9515","name":"Incident Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/pass/:incidentId","host":["{{BaseUri}}"],"path":["api","pass",":incidentId"],"variable":[{"key":"incidentId","value":"-1","description":"The record Id of the desired Incident."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlccGFzc1wtMQ==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 20:23:06 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Instance not found for the supplied id!\"\n}"}],"_postman_id":"9356a1d4-c583-4e75-92ee-b25b869f3082"},{"name":"Create Field Investigation","id":"c95b00fe-6aa5-4167-aca3-acf993297f1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 95474,\r\n    \"status\": \"InReview\",\r\n    \"caseNumber\": \"TestCase-002\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"03/30/2022\",\r\n    \"incidentTime\": \"15:34:00\",\r\n    \"streetNumber\": \"1234\",\r\n    \"streetName\": \"Main\",\r\n    \"streetType\": \"Street\",\r\n    \"streetDirection\": \"NE\",\r\n    \"city\": \"Orlando\",\r\n    \"state\": \"WA\",\r\n    \"zip\": \"23124-4545\",\r\n    \"area\": \"District 741\",\r\n    \"sector\": \"North\",\r\n    \"reasonableSuspicion\": \"Taking Flight Upon Seeing Officer\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"reportType\": \"\",\r\n    \"subReportNumber\": null,\r\n    \"trackingId\": 9,\r\n    \"trackingYear\": 2022,\r\n    \"trackingNumber\": \"2022 - 9\",\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": null,\r\n    \"closestIntersection\": \"\",\r\n    \"closestExit\": \"\",\r\n    \"roadMarker\": \"\",\r\n    \"incidentDocumentAttached\": \"\",\r\n    \"isSchool\": null,\r\n    \"isStudent\": \"\",\r\n    \"hyperactivity\": \"\",\r\n    \"schoolName\": \"\",\r\n    \"locationOfStop\": \"\",\r\n    \"reasonPublicSchools\": \"\",\r\n    \"resultsPublicSchools\": \"\",\r\n    \"locationOfStopDetails\": \"\",\r\n    \"timeTaken\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"enforcements\": [\r\n        {\r\n            \"subjectId\": 1104,\r\n            \"encounterType\": \"Consensual Encounter\",\r\n            \"reasonForContact\": \"Loitering\",\r\n            \"obtainedConsent\": \"Yes\",\r\n            \"consentGiven\": \"Yes\",\r\n            \"reasonForSearch\": \"Lawfully Detained\",\r\n            \"propertySeized\": \"Yes\",\r\n            \"evidenceType\": \"Drugs\",\r\n            \"actionTaken\": \"Released Without Citation|||Traffic Citation Issued/Released\",\r\n            \"lengthOfContact\": \"11-15 min\",\r\n            \"arrested\": \"Yes\",\r\n            \"felony\": \"Yes\",\r\n            \"charges\": \"810.02 - Burglary.\",\r\n            \"nonEditable\": false,\r\n            \"trafficViolation\": \"\",\r\n            \"activities\": \"\",\r\n            \"reasonPublicSchools\": \"\",\r\n            \"trafficViolationSection\": \"\",\r\n            \"activitiesSection\": \"\",\r\n            \"reasonPublicSchoolSectionCode\": \"\",\r\n            \"basisOfSearchPublicSchools\": \"\",\r\n            \"actionTakenPublicSchools\": \"\",\r\n            \"contrabandEvidenceDiscovered\": \"\",\r\n            \"basisForPropertySeizure\": \"\",\r\n            \"basisForPropertySeizurePublicSchools\": \"\",\r\n            \"resultsOfStop\": \"\",\r\n            \"codeSectionOrdinance\": \"\",\r\n            \"resultsPublicSchools\": \"\",\r\n            \"narrative\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"enforcementChargeClassifications\": [\r\n                {\r\n                    \"charge\": \"810.02 - Burglary.\",\r\n                    \"chargeClasification1\": true,\r\n                    \"chargeClasification2\": false,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T08:23:24.2635279\",\r\n                    \"createdDate\": \"2022-03-30T16:15:11.1661908\",\r\n                    \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"deleted\": false,\r\n                    \"uniqueKey\": \"\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T08:23:24.2635157\",\r\n            \"createdDate\": \"2022-03-30T15:34:23.021865\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrative\": \"This is some great narrative.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-04-01T08:23:24.2635949\",\r\n            \"createdDate\": \"2022-03-30T15:34:23.0595263\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"officerId\": \"2000\",\r\n            \"name\": \"User, Test\",\r\n            \"division\": \"Six\",\r\n            \"unit\": \"Three\",\r\n            \"nonEditable\": false,\r\n            \"officerYearsWithAgency\": \"\",\r\n            \"officerTotalYearsInLawEnforcement\": \"\",\r\n            \"officerPermanentAssignment\": \"\",\r\n            \"race\": \"Hispanic/Latino\",\r\n            \"gender\": \"Unknown\",\r\n            \"age\": \"22-29\",\r\n            \"birthDate\": \"03/07/1980\",\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T08:23:24.263569\",\r\n            \"createdDate\": \"2022-03-30T15:34:23.031596\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"subjects\": [\r\n        {\r\n            \"lastName\": \"Smith\",\r\n            \"firstName\": \"Sara\",\r\n            \"middleName\": \"Jane\",\r\n            \"nameSuffix\": \"Mrs\",\r\n            \"aliases\": \"The Dude\",\r\n            \"streetNumber\": \"1234\",\r\n            \"streetName\": \"Main\",\r\n            \"streetDirection\": \"NE\",\r\n            \"unit\": \"1234__\",\r\n            \"streetType\": \"Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345-1234\",\r\n            \"homePhone\": \"111-111-1111 x111__\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"employer\": \"The Great Employment Agency\",\r\n            \"employerStreetNumber\": \"1234\",\r\n            \"employerStreetName\": \"Main\",\r\n            \"employerStreetDirection\": \"N\",\r\n            \"employerStreetType\": \"Street\",\r\n            \"employerCity\": \"Jacksonville\",\r\n            \"employerState\": \"FL\",\r\n            \"employerZip\": \"12345-1234\",\r\n            \"employerPhone\": \"111-111-1111 x111__\",\r\n            \"race\": \"Asian\",\r\n            \"ethnicity\": \"Asian\",\r\n            \"gender\": \"Pending\",\r\n            \"age\": \"40-50\",\r\n            \"birthDate\": \"03/01/1980\",\r\n            \"height\": \"5ft4-5ft7in\",\r\n            \"weight\": \"150-199\",\r\n            \"hairColor\": \"Black\",\r\n            \"eyeColor\": \"Brown\",\r\n            \"clothing\": \"Fully clothed\",\r\n            \"identificationMarks\": \"One Tattoo on the left body part.\",\r\n            \"photoTaken\": \"NA\",\r\n            \"photoPermissionGiven\": \"NA\",\r\n            \"fingerprintTaken\": \"Yes\",\r\n            \"fingerprintPermissionGiven\": \"Yes\",\r\n            \"attachment\": \"\",\r\n            \"gangCriteria\": \"Admits to gang membership\",\r\n            \"gangName\": \"Wu-Tang Clan\",\r\n            \"lengthOfInvolvement\": \"> 1 Year\",\r\n            \"nonEditable\": false,\r\n            \"subjectType\": \"\",\r\n            \"ssn\": \"\",\r\n            \"dln\": \"\",\r\n            \"licenseState\": \"\",\r\n            \"disablityOptions\": \"\",\r\n            \"hyperactivity\": \"\",\r\n            \"limitedEnglishFluency\": \"\",\r\n            \"isStudent\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T08:23:24.2634533\",\r\n            \"createdDate\": \"2022-03-30T15:34:23.0071793\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"vehicles\": [\r\n        {\r\n            \"type\": \"SUV\",\r\n            \"make\": \"Saab\",\r\n            \"model\": \"Some Model\",\r\n            \"year\": \"2011\",\r\n            \"tag\": \"FL1234\",\r\n            \"state\": \"PR\",\r\n            \"color\": \"Red\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T08:23:24.263487\",\r\n            \"createdDate\": \"2022-03-30T16:31:11.8948594\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"reviews\": [\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T08:23:24.4693989\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T08:23:24.4693989\",\r\n            \"createdDate\": \"2022-04-01T08:23:24.4692006\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        },\r\n        {\r\n            \"userId\": 95475,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T08:23:24.47429\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T08:23:24.47429\",\r\n            \"createdDate\": \"2022-04-01T08:23:24.474289\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"reviewFormValues\": [],\r\n    \"ripas\": [\r\n        {\r\n            \"stopDuration\": \"50\",\r\n            \"officerTotalYearsInLawEnforcement\": \"5\",\r\n            \"officerPermanentAssignment\": \"Compliance check\",\r\n            \"stopInResponseCallForService\": true,\r\n            \"blockNumber\": \"\",\r\n            \"streetName\": \"\",\r\n            \"closestIntersection\": \"\",\r\n            \"highwayAndClosestExit\": \"\",\r\n            \"roadMarker\": \"456\",\r\n            \"city\": \"Jacksonville\",\r\n            \"isSchool\": false,\r\n            \"isStudent\": false,\r\n            \"schoolName\": \"\",\r\n            \"stopReason\": \"Consensual Encounter resulting in a search\",\r\n            \"stopReasonTrafficCode\": \"\",\r\n            \"stopReasonableSuspicion\": \"\",\r\n            \"stopReasonableSuspicionPenalCode\": \"\",\r\n            \"stopBriefExplanation\": \"Reason\",\r\n            \"stopActions\": \"Curbside detention\",\r\n            \"askConsentSearchPerson\": true,\r\n            \"consentGivenSearchPerson\": true,\r\n            \"conductedSearchPerson\": true,\r\n            \"askConsentSearchProperty\": false,\r\n            \"conductedSearchProperty\": false,\r\n            \"propertySeizure\": true,\r\n            \"stopContrabandEvidenceDiscovered\": \"Firearm(s)\",\r\n            \"basisForSearch\": \"Consent given\",\r\n            \"basisForSearchExplanation\": \"The reason for the search.\",\r\n            \"basisForPropertySeizure\": \"Contraband\",\r\n            \"typeOfPropertySeized\": \"Ammunition\",\r\n            \"stopResults\": \"Citation or infraction\",\r\n            \"stopResultsWarningCode\": \"\",\r\n            \"stopResultsCitationCode\": \"RIPA Offense 1\",\r\n            \"stopResultsInFieldCiteCode\": \"\",\r\n            \"stopResultsCustodialArrestCode\": \"\",\r\n            \"perceivedRaceOrEthnicity\": \"Pacific Islander\",\r\n            \"perceivedGender\": \"Female\",\r\n            \"perceivedLGBT\": true,\r\n            \"perceivedAge\": 50,\r\n            \"limitedEnglishFluency\": true,\r\n            \"perceivedDisability\": \"Deafness or difficulty hearing\",\r\n            \"nonEditable\": false,\r\n            \"showWarning\": false,\r\n            \"showCitation\": false,\r\n            \"showInfieldCitation\": false,\r\n            \"showCustodialArrest\": false,\r\n            \"showSchoolName\": false,\r\n            \"showIsStudent\": false,\r\n            \"showReasonableSuspicion\": false,\r\n            \"showTrafficCode\": false,\r\n            \"showBasisForSearch\": false,\r\n            \"showBasisForSearchExplanantion\": false,\r\n            \"showBasisForPropertySeizure\": false,\r\n            \"showTypePropertySeized\": false,\r\n            \"showOfficerAssignOther\": false,\r\n            \"showEducationSubsection\": false,\r\n            \"officerAssignmentOther\": \"\",\r\n            \"educationCodeSubsection\": \"\",\r\n            \"contactType\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T08:23:24.2636549\",\r\n            \"createdDate\": \"2022-03-30T15:34:23.0548078\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"dojSubmissionStatus\": \"\",\r\n    \"ripaAddress\": \"\",\r\n    \"modifiedDate\": \"2022-04-01T08:23:24.3587259\",\r\n    \"createdDate\": \"2022-03-30T15:34:22.9743751\",\r\n    \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n    \"deleted\": false,\r\n    \"uniqueKey\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/pass","description":"<p>Create a new field investigation record. An error will be thrown if the supplied Case Number already exists in the system. You must ensure that each case number is unique.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","pass"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"ab8a0cec-43ca-4720-911c-746ae5fcb2a2","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 95474,\r\n    \"status\": \"InReview\",\r\n    \"caseNumber\": \"TestCase-002\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"03/30/2022\",\r\n    \"incidentTime\": \"15:34:00\",\r\n    \"streetNumber\": \"1234\",\r\n    \"streetName\": \"Main\",\r\n    \"streetType\": \"Street\",\r\n    \"streetDirection\": \"NE\",\r\n    \"city\": \"Orlando\",\r\n    \"state\": \"WA\",\r\n    \"zip\": \"23124-4545\",\r\n    \"area\": \"District 741\",\r\n    \"sector\": \"North\",\r\n    \"reasonableSuspicion\": \"Taking Flight Upon Seeing Officer\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"reportType\": \"\",\r\n    \"subReportNumber\": null,\r\n    \"trackingId\": 9,\r\n    \"trackingYear\": 2022,\r\n    \"trackingNumber\": \"2022 - 9\",\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": null,\r\n    \"closestIntersection\": \"\",\r\n    \"closestExit\": \"\",\r\n    \"roadMarker\": \"\",\r\n    \"incidentDocumentAttached\": \"\",\r\n    \"isSchool\": null,\r\n    \"isStudent\": \"\",\r\n    \"hyperactivity\": \"\",\r\n    \"schoolName\": \"\",\r\n    \"locationOfStop\": \"\",\r\n    \"reasonPublicSchools\": \"\",\r\n    \"resultsPublicSchools\": \"\",\r\n    \"locationOfStopDetails\": \"\",\r\n    \"timeTaken\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"enforcements\": [\r\n        {\r\n            \"subjectId\": 1104,\r\n            \"encounterType\": \"Consensual Encounter\",\r\n            \"reasonForContact\": \"Loitering\",\r\n            \"obtainedConsent\": \"Yes\",\r\n            \"consentGiven\": \"Yes\",\r\n            \"reasonForSearch\": \"Lawfully Detained\",\r\n            \"propertySeized\": \"Yes\",\r\n            \"evidenceType\": \"Drugs\",\r\n            \"actionTaken\": \"Released Without Citation|||Traffic Citation Issued/Released\",\r\n            \"lengthOfContact\": \"11-15 min\",\r\n            \"arrested\": \"Yes\",\r\n            \"felony\": \"Yes\",\r\n            \"charges\": \"810.02 - Burglary.\",\r\n            \"nonEditable\": false,\r\n            \"trafficViolation\": \"\",\r\n            \"activities\": \"\",\r\n            \"reasonPublicSchools\": \"\",\r\n            \"trafficViolationSection\": \"\",\r\n            \"activitiesSection\": \"\",\r\n            \"reasonPublicSchoolSectionCode\": \"\",\r\n            \"basisOfSearchPublicSchools\": \"\",\r\n            \"actionTakenPublicSchools\": \"\",\r\n            \"contrabandEvidenceDiscovered\": \"\",\r\n            \"basisForPropertySeizure\": \"\",\r\n            \"basisForPropertySeizurePublicSchools\": \"\",\r\n            \"resultsOfStop\": \"\",\r\n            \"codeSectionOrdinance\": \"\",\r\n            \"resultsPublicSchools\": \"\",\r\n            \"narrative\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"enforcementChargeClassifications\": [\r\n                {\r\n                    \"charge\": \"810.02 - Burglary.\",\r\n                    \"chargeClasification1\": true,\r\n                    \"chargeClasification2\": false,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T08:23:24.2635279\",\r\n                    \"createdDate\": \"2022-03-30T16:15:11.1661908\",\r\n                    \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"deleted\": false,\r\n                    \"uniqueKey\": \"\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T08:23:24.2635157\",\r\n            \"createdDate\": \"2022-03-30T15:34:23.021865\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrative\": \"This is some great narrative.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-04-01T08:23:24.2635949\",\r\n            \"createdDate\": \"2022-03-30T15:34:23.0595263\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"officerId\": \"2000\",\r\n            \"name\": \"User, Test\",\r\n            \"division\": \"Six\",\r\n            \"unit\": \"Three\",\r\n            \"nonEditable\": false,\r\n            \"officerYearsWithAgency\": \"\",\r\n            \"officerTotalYearsInLawEnforcement\": \"\",\r\n            \"officerPermanentAssignment\": \"\",\r\n            \"race\": \"Hispanic/Latino\",\r\n            \"gender\": \"Unknown\",\r\n            \"age\": \"22-29\",\r\n            \"birthDate\": \"03/07/1980\",\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T08:23:24.263569\",\r\n            \"createdDate\": \"2022-03-30T15:34:23.031596\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"subjects\": [\r\n        {\r\n            \"lastName\": \"Smith\",\r\n            \"firstName\": \"Sara\",\r\n            \"middleName\": \"Jane\",\r\n            \"nameSuffix\": \"Mrs\",\r\n            \"aliases\": \"The Dude\",\r\n            \"streetNumber\": \"1234\",\r\n            \"streetName\": \"Main\",\r\n            \"streetDirection\": \"NE\",\r\n            \"unit\": \"1234__\",\r\n            \"streetType\": \"Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345-1234\",\r\n            \"homePhone\": \"111-111-1111 x111__\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"employer\": \"The Great Employment Agency\",\r\n            \"employerStreetNumber\": \"1234\",\r\n            \"employerStreetName\": \"Main\",\r\n            \"employerStreetDirection\": \"N\",\r\n            \"employerStreetType\": \"Street\",\r\n            \"employerCity\": \"Jacksonville\",\r\n            \"employerState\": \"FL\",\r\n            \"employerZip\": \"12345-1234\",\r\n            \"employerPhone\": \"111-111-1111 x111__\",\r\n            \"race\": \"Asian\",\r\n            \"ethnicity\": \"Asian\",\r\n            \"gender\": \"Pending\",\r\n            \"age\": \"40-50\",\r\n            \"birthDate\": \"03/01/1980\",\r\n            \"height\": \"5ft4-5ft7in\",\r\n            \"weight\": \"150-199\",\r\n            \"hairColor\": \"Black\",\r\n            \"eyeColor\": \"Brown\",\r\n            \"clothing\": \"Fully clothed\",\r\n            \"identificationMarks\": \"One Tattoo on the left body part.\",\r\n            \"photoTaken\": \"NA\",\r\n            \"photoPermissionGiven\": \"NA\",\r\n            \"fingerprintTaken\": \"Yes\",\r\n            \"fingerprintPermissionGiven\": \"Yes\",\r\n            \"attachment\": \"\",\r\n            \"gangCriteria\": \"Admits to gang membership\",\r\n            \"gangName\": \"Wu-Tang Clan\",\r\n            \"lengthOfInvolvement\": \"> 1 Year\",\r\n            \"nonEditable\": false,\r\n            \"subjectType\": \"\",\r\n            \"ssn\": \"\",\r\n            \"dln\": \"\",\r\n            \"licenseState\": \"\",\r\n            \"disablityOptions\": \"\",\r\n            \"hyperactivity\": \"\",\r\n            \"limitedEnglishFluency\": \"\",\r\n            \"isStudent\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T08:23:24.2634533\",\r\n            \"createdDate\": \"2022-03-30T15:34:23.0071793\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"vehicles\": [\r\n        {\r\n            \"type\": \"SUV\",\r\n            \"make\": \"Saab\",\r\n            \"model\": \"Some Model\",\r\n            \"year\": \"2011\",\r\n            \"tag\": \"FL1234\",\r\n            \"state\": \"PR\",\r\n            \"color\": \"Red\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T08:23:24.263487\",\r\n            \"createdDate\": \"2022-03-30T16:31:11.8948594\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"reviews\": [\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T08:23:24.4693989\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T08:23:24.4693989\",\r\n            \"createdDate\": \"2022-04-01T08:23:24.4692006\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        },\r\n        {\r\n            \"userId\": 95475,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T08:23:24.47429\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T08:23:24.47429\",\r\n            \"createdDate\": \"2022-04-01T08:23:24.474289\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"reviewFormValues\": [],\r\n    \"ripas\": [\r\n        {\r\n            \"stopDuration\": \"50\",\r\n            \"officerTotalYearsInLawEnforcement\": \"5\",\r\n            \"officerPermanentAssignment\": \"Compliance check\",\r\n            \"stopInResponseCallForService\": true,\r\n            \"blockNumber\": \"\",\r\n            \"streetName\": \"\",\r\n            \"closestIntersection\": \"\",\r\n            \"highwayAndClosestExit\": \"\",\r\n            \"roadMarker\": \"456\",\r\n            \"city\": \"Jacksonville\",\r\n            \"isSchool\": false,\r\n            \"isStudent\": false,\r\n            \"schoolName\": \"\",\r\n            \"stopReason\": \"Consensual Encounter resulting in a search\",\r\n            \"stopReasonTrafficCode\": \"\",\r\n            \"stopReasonableSuspicion\": \"\",\r\n            \"stopReasonableSuspicionPenalCode\": \"\",\r\n            \"stopBriefExplanation\": \"Reason\",\r\n            \"stopActions\": \"Curbside detention\",\r\n            \"askConsentSearchPerson\": true,\r\n            \"consentGivenSearchPerson\": true,\r\n            \"conductedSearchPerson\": true,\r\n            \"askConsentSearchProperty\": false,\r\n            \"conductedSearchProperty\": false,\r\n            \"propertySeizure\": true,\r\n            \"stopContrabandEvidenceDiscovered\": \"Firearm(s)\",\r\n            \"basisForSearch\": \"Consent given\",\r\n            \"basisForSearchExplanation\": \"The reason for the search.\",\r\n            \"basisForPropertySeizure\": \"Contraband\",\r\n            \"typeOfPropertySeized\": \"Ammunition\",\r\n            \"stopResults\": \"Citation or infraction\",\r\n            \"stopResultsWarningCode\": \"\",\r\n            \"stopResultsCitationCode\": \"RIPA Offense 1\",\r\n            \"stopResultsInFieldCiteCode\": \"\",\r\n            \"stopResultsCustodialArrestCode\": \"\",\r\n            \"perceivedRaceOrEthnicity\": \"Pacific Islander\",\r\n            \"perceivedGender\": \"Female\",\r\n            \"perceivedLGBT\": true,\r\n            \"perceivedAge\": 50,\r\n            \"limitedEnglishFluency\": true,\r\n            \"perceivedDisability\": \"Deafness or difficulty hearing\",\r\n            \"nonEditable\": false,\r\n            \"showWarning\": false,\r\n            \"showCitation\": false,\r\n            \"showInfieldCitation\": false,\r\n            \"showCustodialArrest\": false,\r\n            \"showSchoolName\": false,\r\n            \"showIsStudent\": false,\r\n            \"showReasonableSuspicion\": false,\r\n            \"showTrafficCode\": false,\r\n            \"showBasisForSearch\": false,\r\n            \"showBasisForSearchExplanantion\": false,\r\n            \"showBasisForPropertySeizure\": false,\r\n            \"showTypePropertySeized\": false,\r\n            \"showOfficerAssignOther\": false,\r\n            \"showEducationSubsection\": false,\r\n            \"officerAssignmentOther\": \"\",\r\n            \"educationCodeSubsection\": \"\",\r\n            \"contactType\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T08:23:24.2636549\",\r\n            \"createdDate\": \"2022-03-30T15:34:23.0548078\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"dojSubmissionStatus\": \"\",\r\n    \"ripaAddress\": \"\",\r\n    \"modifiedDate\": \"2022-04-01T08:23:24.3587259\",\r\n    \"createdDate\": \"2022-03-30T15:34:22.9743751\",\r\n    \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n    \"deleted\": false,\r\n    \"uniqueKey\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/pass"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlccGFzcw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Apr 2022 18:52:58 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"incidentId\": 1097,\n    \"creator\": \"\",\n    \"reviewer\": \"\",\n    \"creatorId\": 8,\n    \"status\": \"InReview\",\n    \"caseNumber\": \"TestCase-002\",\n    \"relatedIncidentCase\": \"\",\n    \"incidentDate\": \"03/30/2022\",\n    \"incidentTime\": \"15:34:00\",\n    \"streetNumber\": \"1234\",\n    \"streetName\": \"Main\",\n    \"streetType\": \"Street\",\n    \"streetDirection\": \"NE\",\n    \"city\": \"Orlando\",\n    \"state\": \"WA\",\n    \"zip\": \"23124-4545\",\n    \"area\": \"District 741\",\n    \"sector\": \"North\",\n    \"reasonableSuspicion\": \"Taking Flight Upon Seeing Officer\",\n    \"routing\": \"Command Staff\",\n    \"deleteComments\": \"\",\n    \"reportType\": \"\",\n    \"subReportNumber\": null,\n    \"trackingId\": 10,\n    \"trackingYear\": 2022,\n    \"trackingNumber\": \"2022 - 10\",\n    \"nonEditable\": false,\n    \"sealed\": false,\n    \"involvedSupervisorReview\": null,\n    \"closestIntersection\": \"\",\n    \"closestExit\": \"\",\n    \"roadMarker\": \"\",\n    \"incidentDocumentAttached\": \"\",\n    \"isSchool\": null,\n    \"isStudent\": \"\",\n    \"hyperactivity\": \"\",\n    \"schoolName\": \"\",\n    \"locationOfStop\": \"\",\n    \"reasonPublicSchools\": \"\",\n    \"resultsPublicSchools\": \"\",\n    \"locationOfStopDetails\": \"\",\n    \"timeTaken\": \"\",\n    \"primaryReferenceId\": null,\n    \"enforcements\": [\n        {\n            \"enforcementId\": 1099,\n            \"incidentId\": 1097,\n            \"subjectId\": 1104,\n            \"encounterType\": \"Consensual Encounter\",\n            \"reasonForContact\": \"Loitering\",\n            \"obtainedConsent\": \"Yes\",\n            \"consentGiven\": \"Yes\",\n            \"reasonForSearch\": \"Lawfully Detained\",\n            \"propertySeized\": \"Yes\",\n            \"evidenceType\": \"Drugs\",\n            \"actionTaken\": \"Released Without Citation|||Traffic Citation Issued/Released\",\n            \"lengthOfContact\": \"11-15 min\",\n            \"arrested\": \"Yes\",\n            \"felony\": \"Yes\",\n            \"charges\": \"810.02 - Burglary.\",\n            \"nonEditable\": false,\n            \"trafficViolation\": \"\",\n            \"activities\": \"\",\n            \"reasonPublicSchools\": \"\",\n            \"trafficViolationSection\": \"\",\n            \"activitiesSection\": \"\",\n            \"reasonPublicSchoolSectionCode\": \"\",\n            \"basisOfSearchPublicSchools\": \"\",\n            \"actionTakenPublicSchools\": \"\",\n            \"contrabandEvidenceDiscovered\": \"\",\n            \"basisForPropertySeizure\": \"\",\n            \"basisForPropertySeizurePublicSchools\": \"\",\n            \"resultsOfStop\": \"\",\n            \"codeSectionOrdinance\": \"\",\n            \"resultsPublicSchools\": \"\",\n            \"narrative\": \"\",\n            \"primaryReferenceId\": null,\n            \"enforcementChargeClassifications\": [\n                {\n                    \"enforcementChargeClassificationId\": 9,\n                    \"enforcementId\": 1099,\n                    \"charge\": \"810.02 - Burglary.\",\n                    \"chargeClasification1\": true,\n                    \"chargeClasification2\": false,\n                    \"chargeClasification3\": false,\n                    \"chargeClasification4\": false,\n                    \"chargeClasification5\": false,\n                    \"chargeClasification6\": \"\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T14:52:58.7090164\",\n                    \"createdDate\": \"2022-04-01T14:52:58.7089479\",\n                    \"createdBy\": \"apiTest\",\n                    \"modifiedBy\": \"apiTest\",\n                    \"deleted\": false,\n                    \"uniqueKey\": \"\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T14:52:58.7082032\",\n            \"createdDate\": \"2022-04-01T14:52:58.7082024\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"narratives\": [\n        {\n            \"narrativeId\": 1097,\n            \"incidentId\": 1097,\n            \"narrative\": \"This is some great narrative.\",\n            \"nonEditable\": false,\n            \"modifiedDate\": \"2022-04-01T14:52:58.782954\",\n            \"createdDate\": \"2022-04-01T14:52:58.7829535\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"officers\": [\n        {\n            \"incidentOfficerId\": 1100,\n            \"incidentId\": 1097,\n            \"officerId\": \"2000\",\n            \"name\": \"User, Test\",\n            \"division\": \"Six\",\n            \"unit\": \"Three\",\n            \"nonEditable\": false,\n            \"officerYearsWithAgency\": \"\",\n            \"officerTotalYearsInLawEnforcement\": \"\",\n            \"officerPermanentAssignment\": \"\",\n            \"race\": \"Hispanic/Latino\",\n            \"gender\": \"Unknown\",\n            \"age\": \"22-29\",\n            \"birthDate\": \"03/07/1980\",\n            \"bodyWornCamera\": \"\",\n            \"activated\": \"\",\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T14:52:58.7176575\",\n            \"createdDate\": \"2022-04-01T14:52:58.717657\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"subjects\": [\n        {\n            \"subjectId\": 1105,\n            \"incidentId\": 1097,\n            \"lastName\": \"Smith\",\n            \"firstName\": \"Sara\",\n            \"middleName\": \"Jane\",\n            \"nameSuffix\": \"Mrs\",\n            \"aliases\": \"The Dude\",\n            \"streetNumber\": \"1234\",\n            \"streetName\": \"Main\",\n            \"streetDirection\": \"NE\",\n            \"unit\": \"1234__\",\n            \"streetType\": \"Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345-1234\",\n            \"homePhone\": \"111-111-1111 x111__\",\n            \"cellPhone\": \"222-222-2222 x_____\",\n            \"employer\": \"The Great Employment Agency\",\n            \"employerStreetNumber\": \"1234\",\n            \"employerStreetName\": \"Main\",\n            \"employerStreetDirection\": \"N\",\n            \"employerStreetType\": \"Street\",\n            \"employerCity\": \"Jacksonville\",\n            \"employerState\": \"FL\",\n            \"employerZip\": \"12345-1234\",\n            \"employerPhone\": \"111-111-1111 x111__\",\n            \"race\": \"Asian\",\n            \"ethnicity\": \"Asian\",\n            \"gender\": \"Pending\",\n            \"age\": \"40-50\",\n            \"birthDate\": \"03/01/1980\",\n            \"height\": \"5ft4-5ft7in\",\n            \"weight\": \"150-199\",\n            \"hairColor\": \"Black\",\n            \"eyeColor\": \"Brown\",\n            \"clothing\": \"Fully clothed\",\n            \"identificationMarks\": \"One Tattoo on the left body part.\",\n            \"photoTaken\": \"NA\",\n            \"photoPermissionGiven\": \"NA\",\n            \"fingerprintTaken\": \"Yes\",\n            \"fingerprintPermissionGiven\": \"Yes\",\n            \"attachment\": \"\",\n            \"gangCriteria\": \"Admits to gang membership\",\n            \"gangName\": \"Wu-Tang Clan\",\n            \"lengthOfInvolvement\": \"> 1 Year\",\n            \"nonEditable\": false,\n            \"subjectType\": \"\",\n            \"ssn\": \"\",\n            \"dln\": \"\",\n            \"licenseState\": \"\",\n            \"disablityOptions\": \"\",\n            \"hyperactivity\": \"\",\n            \"limitedEnglishFluency\": \"\",\n            \"isStudent\": \"\",\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T14:52:58.6885378\",\n            \"createdDate\": \"2022-04-01T14:52:58.6885373\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"vehicles\": [\n        {\n            \"vehicleId\": 17,\n            \"incidentId\": 1097,\n            \"type\": \"SUV\",\n            \"make\": \"Saab\",\n            \"model\": \"Some Model\",\n            \"year\": \"2011\",\n            \"tag\": \"FL1234\",\n            \"state\": \"PR\",\n            \"color\": \"Red\",\n            \"nonEditable\": false,\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T14:52:58.6951778\",\n            \"createdDate\": \"2022-04-01T14:52:58.6951774\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"reviews\": [],\n    \"reviewFormValues\": [],\n    \"ripas\": [\n        {\n            \"ripaId\": 51,\n            \"incidentId\": 1097,\n            \"stopDuration\": \"50\",\n            \"officerTotalYearsInLawEnforcement\": \"5\",\n            \"officerPermanentAssignment\": \"Compliance check\",\n            \"stopInResponseCallForService\": true,\n            \"blockNumber\": \"\",\n            \"streetName\": \"\",\n            \"closestIntersection\": \"\",\n            \"highwayAndClosestExit\": \"\",\n            \"roadMarker\": \"456\",\n            \"city\": \"Jacksonville\",\n            \"isSchool\": false,\n            \"isStudent\": false,\n            \"schoolName\": \"\",\n            \"stopReason\": \"Consensual Encounter resulting in a search\",\n            \"stopReasonTrafficCode\": \"\",\n            \"stopReasonableSuspicion\": \"\",\n            \"stopReasonableSuspicionPenalCode\": \"\",\n            \"stopBriefExplanation\": \"Reason\",\n            \"stopActions\": \"Curbside detention\",\n            \"askConsentSearchPerson\": true,\n            \"consentGivenSearchPerson\": true,\n            \"conductedSearchPerson\": true,\n            \"askConsentSearchProperty\": false,\n            \"conductedSearchProperty\": false,\n            \"propertySeizure\": true,\n            \"stopContrabandEvidenceDiscovered\": \"Firearm(s)\",\n            \"basisForSearch\": \"Consent given\",\n            \"basisForSearchExplanation\": \"The reason for the search.\",\n            \"basisForPropertySeizure\": \"Contraband\",\n            \"typeOfPropertySeized\": \"Ammunition\",\n            \"stopResults\": \"Citation or infraction\",\n            \"stopResultsWarningCode\": \"\",\n            \"stopResultsCitationCode\": \"RIPA Offense 1\",\n            \"stopResultsInFieldCiteCode\": \"\",\n            \"stopResultsCustodialArrestCode\": \"\",\n            \"perceivedRaceOrEthnicity\": \"Pacific Islander\",\n            \"perceivedGender\": \"Female\",\n            \"perceivedLGBT\": true,\n            \"perceivedAge\": 50,\n            \"limitedEnglishFluency\": true,\n            \"perceivedDisability\": \"Deafness or difficulty hearing\",\n            \"nonEditable\": false,\n            \"showWarning\": false,\n            \"showCitation\": false,\n            \"showInfieldCitation\": false,\n            \"showCustodialArrest\": false,\n            \"showSchoolName\": false,\n            \"showIsStudent\": false,\n            \"showReasonableSuspicion\": false,\n            \"showTrafficCode\": false,\n            \"showBasisForSearch\": false,\n            \"showBasisForSearchExplanantion\": false,\n            \"showBasisForPropertySeizure\": false,\n            \"showTypePropertySeized\": false,\n            \"showOfficerAssignOther\": false,\n            \"showEducationSubsection\": false,\n            \"officerAssignmentOther\": \"\",\n            \"educationCodeSubsection\": \"\",\n            \"contactType\": \"\",\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T14:52:58.7777373\",\n            \"createdDate\": \"2022-04-01T14:52:58.7777368\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"dojSubmissionStatus\": \"\",\n    \"ripaAddress\": \"\",\n    \"modifiedDate\": \"2022-04-01T14:52:58.6642748\",\n    \"createdDate\": \"2022-04-01T14:52:58.6642743\",\n    \"createdBy\": \"apiTest\",\n    \"modifiedBy\": \"apiTest\",\n    \"deleted\": false,\n    \"uniqueKey\": \"\"\n}"},{"id":"2e6079c5-8bd8-4732-800d-7b5753a17f23","name":"Case File Already Exists","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 7931,\r\n    \"status\": \"Editing\",\r\n    \"caseNumber\": \"MyCaseNumber-000\",\r\n    \"relatedIncidentCase\": \"90345.A18\",\r\n    \"incidentDate\": \"11/19/2019\",\r\n    \"incidentTime\": \"14:06:00\",\r\n    \"streetNumber\": \"2532\",\r\n    \"streetName\": \"Courtney\",\r\n    \"streetType\": \"St\",\r\n    \"streetDirection\": \"NE\",\r\n    \"city\": \"San Diego\",\r\n    \"state\": \"OR\",\r\n    \"zip\": \"32334-____\",\r\n    \"area\": \"Zone 2\",\r\n    \"sector\": \"North\",\r\n    \"reasonableSuspicion\": \"Matching Description Of Wanted Person\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"reportType\": \"\",\r\n    \"subReportNumber\": null,\r\n    \"trackingId\": 1,\r\n    \"trackingYear\": 2019,\r\n    \"trackingNumber\": \"2019 - 1\",\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": null,\r\n    \"closestIntersection\": \"\",\r\n    \"closestExit\": \"\",\r\n    \"roadMarker\": \"\",\r\n    \"incidentDocumentAttached\": \"\",\r\n    \"isSchool\": null,\r\n    \"isStudent\": \"\",\r\n    \"hyperactivity\": \"\",\r\n    \"schoolName\": \"\",\r\n    \"locationOfStop\": \"\",\r\n    \"reasonPublicSchools\": \"\",\r\n    \"resultsPublicSchools\": \"\",\r\n    \"locationOfStopDetails\": \"\",\r\n    \"timeTaken\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"enforcements\": [\r\n        {\r\n            \"subjectId\": 1,\r\n            \"encounterType\": \"\",\r\n            \"reasonForContact\": \"\",\r\n            \"obtainedConsent\": \"\",\r\n            \"consentGiven\": \"\",\r\n            \"reasonForSearch\": \"\",\r\n            \"propertySeized\": \"\",\r\n            \"evidenceType\": \"\",\r\n            \"actionTaken\": \"\",\r\n            \"lengthOfContact\": \"\",\r\n            \"arrested\": \"\",\r\n            \"felony\": \"\",\r\n            \"charges\": \"\",\r\n            \"nonEditable\": false,\r\n            \"trafficViolation\": \"\",\r\n            \"activities\": \"\",\r\n            \"reasonPublicSchools\": \"\",\r\n            \"trafficViolationSection\": \"\",\r\n            \"activitiesSection\": \"\",\r\n            \"reasonPublicSchoolSectionCode\": \"\",\r\n            \"basisOfSearchPublicSchools\": \"\",\r\n            \"actionTakenPublicSchools\": \"\",\r\n            \"contrabandEvidenceDiscovered\": \"\",\r\n            \"basisForPropertySeizure\": \"\",\r\n            \"basisForPropertySeizurePublicSchools\": \"\",\r\n            \"resultsOfStop\": \"\",\r\n            \"codeSectionOrdinance\": \"\",\r\n            \"resultsPublicSchools\": \"\",\r\n            \"narrative\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"enforcementChargeClassifications\": [],\r\n            \"modifiedDate\": \"2019-12-15T17:10:35.148824\",\r\n            \"createdDate\": \"2019-11-19T09:06:28.6449218\",\r\n            \"createdBy\": \"mattjarvis@leftasystems.org\",\r\n            \"modifiedBy\": \"mattjarvis@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrative\": \"Agencies are not required to adjust or change their reporting procedures to conform to the software, instead, this highly adaptable application is customized to suit each agency’s procedures, policies, terminology and use of force continuum, etc. Administrators can easily modify the application as reporting procedures change and because LEFTA Systems’ software continues to grow with an agency, the need for future software purchases is eliminated. Made for Cops by Cops, FACTS is highly user and in-the-field friendly and a critical component of the SHIELD Suite. FACTS software not only helps to substantially mitigate liability for officers in the field and their agency but can also be an effective tool in bridging law enforcement agencies and the communities they serve. Numerous reports and hundreds of statistics are immediately available to management as soon as an officer enters incident information. Utilizing these statistical data, management can easily review how officers are applying force. What type of resistance did the officer encounter? What type of force was used? Was the subject or the officer injured and how serious was the injury? What was the racial correlation between the subject and the officer? Which types of calls involve the highest rate of use of force incidents? What percentage of subjects involved in the use of force incidents have mental health issues? Is one officer using force more often than other officers? When and where do most incidents occur and are certain types of the response being overused (i.e. Taser©, pepper spray, impact weapons, takedown techniques, etc.)?\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2019-12-15T17:10:35.1489424\",\r\n            \"createdDate\": \"2019-11-19T09:06:28.5011586\",\r\n            \"createdBy\": \"mattjarvis@leftasystems.org\",\r\n            \"modifiedBy\": \"mattjarvis@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"officerId\": \"3000\",\r\n            \"name\": \"Matt Jarvis\",\r\n            \"division\": \"\",\r\n            \"unit\": \"\",\r\n            \"nonEditable\": false,\r\n            \"officerYearsWithAgency\": \"\",\r\n            \"officerTotalYearsInLawEnforcement\": \"\",\r\n            \"officerPermanentAssignment\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"age\": \"\",\r\n            \"birthDate\": \"\",\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2019-12-15T17:10:35.148901\",\r\n            \"createdDate\": \"2019-11-19T09:06:28.5647867\",\r\n            \"createdBy\": \"mattjarvis@leftasystems.org\",\r\n            \"modifiedBy\": \"mattjarvis@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"subjects\": [\r\n        {\r\n            \"lastName\": \"Fields\",\r\n            \"firstName\": \"Martha\",\r\n            \"middleName\": \"\",\r\n            \"nameSuffix\": \"\",\r\n            \"aliases\": \"Marti\",\r\n            \"streetNumber\": \"4570\",\r\n            \"streetName\": \"Wingate\",\r\n            \"streetDirection\": \"SE\",\r\n            \"unit\": \"94____\",\r\n            \"streetType\": \"Loop\",\r\n            \"city\": \"Davenport\",\r\n            \"state\": \"MS\",\r\n            \"zip\": \"84566-____\",\r\n            \"homePhone\": \"\",\r\n            \"cellPhone\": \"\",\r\n            \"employer\": \"\",\r\n            \"employerStreetNumber\": \"\",\r\n            \"employerStreetName\": \"\",\r\n            \"employerStreetDirection\": \"\",\r\n            \"employerStreetType\": \"\",\r\n            \"employerCity\": \"\",\r\n            \"employerState\": \"\",\r\n            \"employerZip\": \"\",\r\n            \"employerPhone\": \"\",\r\n            \"race\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"gender\": \"\",\r\n            \"age\": \"\",\r\n            \"birthDate\": \"\",\r\n            \"height\": \"\",\r\n            \"weight\": \"\",\r\n            \"hairColor\": \"\",\r\n            \"eyeColor\": \"\",\r\n            \"clothing\": \"\",\r\n            \"identificationMarks\": \"\",\r\n            \"photoTaken\": \"\",\r\n            \"photoPermissionGiven\": \"\",\r\n            \"fingerprintTaken\": \"\",\r\n            \"fingerprintPermissionGiven\": \"\",\r\n            \"attachment\": \"\",\r\n            \"gangCriteria\": \"\",\r\n            \"gangName\": \"\",\r\n            \"lengthOfInvolvement\": \"\",\r\n            \"nonEditable\": false,\r\n            \"subjectType\": \"\",\r\n            \"ssn\": \"\",\r\n            \"dln\": \"\",\r\n            \"licenseState\": \"\",\r\n            \"disablityOptions\": \"\",\r\n            \"hyperactivity\": \"\",\r\n            \"limitedEnglishFluency\": \"\",\r\n            \"isStudent\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2019-12-15T17:10:35.1487396\",\r\n            \"createdDate\": \"2019-11-19T09:06:28.6037148\",\r\n            \"createdBy\": \"mattjarvis@leftasystems.org\",\r\n            \"modifiedBy\": \"mattjarvis@leftasystems.org\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"vehicles\": [],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [],\r\n    \"ripas\": [],\r\n    \"dojSubmissionStatus\": \"\",\r\n    \"ripaAddress\": \"\",\r\n    \"modifiedDate\": \"2019-12-15T17:10:35.1490089\",\r\n    \"createdDate\": \"2019-11-19T09:06:28.4019253\",\r\n    \"createdBy\": \"mattjarvis@leftasystems.org\",\r\n    \"modifiedBy\": \"mattjarvis@leftasystems.org\",\r\n    \"deleted\": false,\r\n    \"uniqueKey\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/pass"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlccGFzcw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 20:29:12 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"Supplied Incident Case Number already exists!\"\n}"}],"_postman_id":"c95b00fe-6aa5-4167-aca3-acf993297f1a"},{"name":"Update Field Investigation","id":"5ff4cd1f-4bf5-4773-b55a-017a40223a6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": 1097,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"InReview\",\r\n    \"caseNumber\": \"TestCase-002\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"03/30/2022\",\r\n    \"incidentTime\": \"15:34:00\",\r\n    \"streetNumber\": \"1234\",\r\n    \"streetName\": \"Main\",\r\n    \"streetType\": \"Street\",\r\n    \"streetDirection\": \"NE\",\r\n    \"city\": \"Orlando\",\r\n    \"state\": \"WA\",\r\n    \"zip\": \"23124-4545\",\r\n    \"area\": \"District 741\",\r\n    \"sector\": \"North\",\r\n    \"reasonableSuspicion\": \"Taking Flight Upon Seeing Officer\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"reportType\": \"\",\r\n    \"subReportNumber\": null,\r\n    \"trackingId\": 10,\r\n    \"trackingYear\": 2022,\r\n    \"trackingNumber\": \"2022 - 10\",\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": null,\r\n    \"closestIntersection\": \"\",\r\n    \"closestExit\": \"\",\r\n    \"roadMarker\": \"\",\r\n    \"incidentDocumentAttached\": \"\",\r\n    \"isSchool\": null,\r\n    \"isStudent\": \"\",\r\n    \"hyperactivity\": \"\",\r\n    \"schoolName\": \"\",\r\n    \"locationOfStop\": \"\",\r\n    \"reasonPublicSchools\": \"\",\r\n    \"resultsPublicSchools\": \"\",\r\n    \"locationOfStopDetails\": \"\",\r\n    \"timeTaken\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"enforcements\": [\r\n        {\r\n            \"enforcementId\": 1099,\r\n            \"incidentId\": 1097,\r\n            \"subjectId\": 1104,\r\n            \"encounterType\": \"Consensual Encounter\",\r\n            \"reasonForContact\": \"Loitering\",\r\n            \"obtainedConsent\": \"Yes\",\r\n            \"consentGiven\": \"Yes\",\r\n            \"reasonForSearch\": \"Lawfully Detained\",\r\n            \"propertySeized\": \"Yes\",\r\n            \"evidenceType\": \"Drugs\",\r\n            \"actionTaken\": \"Released Without Citation|||Traffic Citation Issued/Released\",\r\n            \"lengthOfContact\": \"11-15 min\",\r\n            \"arrested\": \"Yes\",\r\n            \"felony\": \"Yes\",\r\n            \"charges\": \"810.02 - Burglary.\",\r\n            \"nonEditable\": false,\r\n            \"trafficViolation\": \"\",\r\n            \"activities\": \"\",\r\n            \"reasonPublicSchools\": \"\",\r\n            \"trafficViolationSection\": \"\",\r\n            \"activitiesSection\": \"\",\r\n            \"reasonPublicSchoolSectionCode\": \"\",\r\n            \"basisOfSearchPublicSchools\": \"\",\r\n            \"actionTakenPublicSchools\": \"\",\r\n            \"contrabandEvidenceDiscovered\": \"\",\r\n            \"basisForPropertySeizure\": \"\",\r\n            \"basisForPropertySeizurePublicSchools\": \"\",\r\n            \"resultsOfStop\": \"\",\r\n            \"codeSectionOrdinance\": \"\",\r\n            \"resultsPublicSchools\": \"\",\r\n            \"narrative\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"enforcementChargeClassifications\": [\r\n                {\r\n                    \"enforcementChargeClassificationId\": 9,\r\n                    \"enforcementId\": 1099,\r\n                    \"charge\": \"810.02 - Burglary.\",\r\n                    \"chargeClasification1\": true,\r\n                    \"chargeClasification2\": false,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T14:52:58.7090164\",\r\n                    \"createdDate\": \"2022-04-01T14:52:58.7089479\",\r\n                    \"createdBy\": \"apiTest\",\r\n                    \"modifiedBy\": \"apiTest\",\r\n                    \"deleted\": false,\r\n                    \"uniqueKey\": \"\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T14:52:58.7082032\",\r\n            \"createdDate\": \"2022-04-01T14:52:58.7082024\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 1097,\r\n            \"incidentId\": 1097,\r\n            \"narrative\": \"This is some great narrative.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-04-01T14:52:58.782954\",\r\n            \"createdDate\": \"2022-04-01T14:52:58.7829535\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"incidentOfficerId\": 1100,\r\n            \"incidentId\": 1097,\r\n            \"officerId\": \"2000\",\r\n            \"name\": \"User, Test\",\r\n            \"division\": \"Six\",\r\n            \"unit\": \"Three\",\r\n            \"nonEditable\": false,\r\n            \"officerYearsWithAgency\": \"\",\r\n            \"officerTotalYearsInLawEnforcement\": \"\",\r\n            \"officerPermanentAssignment\": \"\",\r\n            \"race\": \"Hispanic/Latino\",\r\n            \"gender\": \"Unknown\",\r\n            \"age\": \"22-29\",\r\n            \"birthDate\": \"03/07/1980\",\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T14:52:58.7176575\",\r\n            \"createdDate\": \"2022-04-01T14:52:58.717657\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"subjects\": [\r\n        {\r\n            \"subjectId\": 1105,\r\n            \"incidentId\": 1097,\r\n            \"lastName\": \"Smith\",\r\n            \"firstName\": \"Sara\",\r\n            \"middleName\": \"Jane\",\r\n            \"nameSuffix\": \"Mrs\",\r\n            \"aliases\": \"The Dude\",\r\n            \"streetNumber\": \"1234\",\r\n            \"streetName\": \"Main\",\r\n            \"streetDirection\": \"NE\",\r\n            \"unit\": \"1234__\",\r\n            \"streetType\": \"Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345-1234\",\r\n            \"homePhone\": \"111-111-1111 x111__\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"employer\": \"The Great Employment Agency\",\r\n            \"employerStreetNumber\": \"1234\",\r\n            \"employerStreetName\": \"Main\",\r\n            \"employerStreetDirection\": \"N\",\r\n            \"employerStreetType\": \"Street\",\r\n            \"employerCity\": \"Jacksonville\",\r\n            \"employerState\": \"FL\",\r\n            \"employerZip\": \"12345-1234\",\r\n            \"employerPhone\": \"111-111-1111 x111__\",\r\n            \"race\": \"Asian\",\r\n            \"ethnicity\": \"Asian\",\r\n            \"gender\": \"Pending\",\r\n            \"age\": \"40-50\",\r\n            \"birthDate\": \"03/01/1980\",\r\n            \"height\": \"5ft4-5ft7in\",\r\n            \"weight\": \"150-199\",\r\n            \"hairColor\": \"Black\",\r\n            \"eyeColor\": \"Brown\",\r\n            \"clothing\": \"Fully clothed\",\r\n            \"identificationMarks\": \"One Tattoo on the left body part.\",\r\n            \"photoTaken\": \"NA\",\r\n            \"photoPermissionGiven\": \"NA\",\r\n            \"fingerprintTaken\": \"Yes\",\r\n            \"fingerprintPermissionGiven\": \"Yes\",\r\n            \"attachment\": \"\",\r\n            \"gangCriteria\": \"Admits to gang membership\",\r\n            \"gangName\": \"Wu-Tang Clan\",\r\n            \"lengthOfInvolvement\": \"> 1 Year\",\r\n            \"nonEditable\": false,\r\n            \"subjectType\": \"\",\r\n            \"ssn\": \"\",\r\n            \"dln\": \"\",\r\n            \"licenseState\": \"\",\r\n            \"disablityOptions\": \"\",\r\n            \"hyperactivity\": \"\",\r\n            \"limitedEnglishFluency\": \"\",\r\n            \"isStudent\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T14:52:58.6885378\",\r\n            \"createdDate\": \"2022-04-01T14:52:58.6885373\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"vehicles\": [\r\n        {\r\n            \"vehicleId\": 17,\r\n            \"incidentId\": 1097,\r\n            \"type\": \"SUV\",\r\n            \"make\": \"Saab\",\r\n            \"model\": \"Some Model\",\r\n            \"year\": \"2011\",\r\n            \"tag\": \"FL1234\",\r\n            \"state\": \"PR\",\r\n            \"color\": \"Red\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T14:52:58.6951778\",\r\n            \"createdDate\": \"2022-04-01T14:52:58.6951774\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [],\r\n    \"ripas\": [\r\n        {\r\n            \"ripaId\": 51,\r\n            \"incidentId\": 1097,\r\n            \"stopDuration\": \"50\",\r\n            \"officerTotalYearsInLawEnforcement\": \"5\",\r\n            \"officerPermanentAssignment\": \"Compliance check\",\r\n            \"stopInResponseCallForService\": true,\r\n            \"blockNumber\": \"\",\r\n            \"streetName\": \"\",\r\n            \"closestIntersection\": \"\",\r\n            \"highwayAndClosestExit\": \"\",\r\n            \"roadMarker\": \"456\",\r\n            \"city\": \"Jacksonville\",\r\n            \"isSchool\": false,\r\n            \"isStudent\": false,\r\n            \"schoolName\": \"\",\r\n            \"stopReason\": \"Consensual Encounter resulting in a search\",\r\n            \"stopReasonTrafficCode\": \"\",\r\n            \"stopReasonableSuspicion\": \"\",\r\n            \"stopReasonableSuspicionPenalCode\": \"\",\r\n            \"stopBriefExplanation\": \"Reason\",\r\n            \"stopActions\": \"Curbside detention\",\r\n            \"askConsentSearchPerson\": true,\r\n            \"consentGivenSearchPerson\": true,\r\n            \"conductedSearchPerson\": true,\r\n            \"askConsentSearchProperty\": false,\r\n            \"conductedSearchProperty\": false,\r\n            \"propertySeizure\": true,\r\n            \"stopContrabandEvidenceDiscovered\": \"Firearm(s)\",\r\n            \"basisForSearch\": \"Consent given\",\r\n            \"basisForSearchExplanation\": \"The reason for the search.\",\r\n            \"basisForPropertySeizure\": \"Contraband\",\r\n            \"typeOfPropertySeized\": \"Ammunition\",\r\n            \"stopResults\": \"Citation or infraction\",\r\n            \"stopResultsWarningCode\": \"\",\r\n            \"stopResultsCitationCode\": \"RIPA Offense 1\",\r\n            \"stopResultsInFieldCiteCode\": \"\",\r\n            \"stopResultsCustodialArrestCode\": \"\",\r\n            \"perceivedRaceOrEthnicity\": \"Pacific Islander\",\r\n            \"perceivedGender\": \"Female\",\r\n            \"perceivedLGBT\": true,\r\n            \"perceivedAge\": 50,\r\n            \"limitedEnglishFluency\": true,\r\n            \"perceivedDisability\": \"Deafness or difficulty hearing\",\r\n            \"nonEditable\": false,\r\n            \"showWarning\": false,\r\n            \"showCitation\": false,\r\n            \"showInfieldCitation\": false,\r\n            \"showCustodialArrest\": false,\r\n            \"showSchoolName\": false,\r\n            \"showIsStudent\": false,\r\n            \"showReasonableSuspicion\": false,\r\n            \"showTrafficCode\": false,\r\n            \"showBasisForSearch\": false,\r\n            \"showBasisForSearchExplanantion\": false,\r\n            \"showBasisForPropertySeizure\": false,\r\n            \"showTypePropertySeized\": false,\r\n            \"showOfficerAssignOther\": false,\r\n            \"showEducationSubsection\": false,\r\n            \"officerAssignmentOther\": \"\",\r\n            \"educationCodeSubsection\": \"\",\r\n            \"contactType\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T14:52:58.7777373\",\r\n            \"createdDate\": \"2022-04-01T14:52:58.7777368\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"dojSubmissionStatus\": \"\",\r\n    \"ripaAddress\": \"\",\r\n    \"modifiedDate\": \"2022-04-01T14:52:58.6642748\",\r\n    \"createdDate\": \"2022-04-01T14:52:58.6642743\",\r\n    \"createdBy\": \"apiTest\",\r\n    \"modifiedBy\": \"apiTest\",\r\n    \"deleted\": false,\r\n    \"uniqueKey\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/pass","description":"<p>Update an existing field investigation record. An error will be thrown if an Incident with the supplied Incident Id cannot be found within the system. You must ensure that the Incident Id exists.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","pass"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"34e3770b-10b5-41cb-83bb-9e025e76580f","name":"Success","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": 1097,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"InReview\",\r\n    \"caseNumber\": \"TestCase-002\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"03/30/2022\",\r\n    \"incidentTime\": \"15:34:00\",\r\n    \"streetNumber\": \"1234\",\r\n    \"streetName\": \"Main\",\r\n    \"streetType\": \"Street\",\r\n    \"streetDirection\": \"NE\",\r\n    \"city\": \"Orlando\",\r\n    \"state\": \"WA\",\r\n    \"zip\": \"23124-4545\",\r\n    \"area\": \"District 741\",\r\n    \"sector\": \"North\",\r\n    \"reasonableSuspicion\": \"Taking Flight Upon Seeing Officer\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"reportType\": \"\",\r\n    \"subReportNumber\": null,\r\n    \"trackingId\": 10,\r\n    \"trackingYear\": 2022,\r\n    \"trackingNumber\": \"2022 - 10\",\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": null,\r\n    \"closestIntersection\": \"\",\r\n    \"closestExit\": \"\",\r\n    \"roadMarker\": \"\",\r\n    \"incidentDocumentAttached\": \"\",\r\n    \"isSchool\": null,\r\n    \"isStudent\": \"\",\r\n    \"hyperactivity\": \"\",\r\n    \"schoolName\": \"\",\r\n    \"locationOfStop\": \"\",\r\n    \"reasonPublicSchools\": \"\",\r\n    \"resultsPublicSchools\": \"\",\r\n    \"locationOfStopDetails\": \"\",\r\n    \"timeTaken\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"enforcements\": [\r\n        {\r\n            \"enforcementId\": 1099,\r\n            \"incidentId\": 1097,\r\n            \"subjectId\": 1104,\r\n            \"encounterType\": \"Consensual Encounter\",\r\n            \"reasonForContact\": \"Loitering\",\r\n            \"obtainedConsent\": \"Yes\",\r\n            \"consentGiven\": \"Yes\",\r\n            \"reasonForSearch\": \"Lawfully Detained\",\r\n            \"propertySeized\": \"Yes\",\r\n            \"evidenceType\": \"Drugs\",\r\n            \"actionTaken\": \"Released Without Citation|||Traffic Citation Issued/Released\",\r\n            \"lengthOfContact\": \"11-15 min\",\r\n            \"arrested\": \"Yes\",\r\n            \"felony\": \"Yes\",\r\n            \"charges\": \"810.02 - Burglary.\",\r\n            \"nonEditable\": false,\r\n            \"trafficViolation\": \"\",\r\n            \"activities\": \"\",\r\n            \"reasonPublicSchools\": \"\",\r\n            \"trafficViolationSection\": \"\",\r\n            \"activitiesSection\": \"\",\r\n            \"reasonPublicSchoolSectionCode\": \"\",\r\n            \"basisOfSearchPublicSchools\": \"\",\r\n            \"actionTakenPublicSchools\": \"\",\r\n            \"contrabandEvidenceDiscovered\": \"\",\r\n            \"basisForPropertySeizure\": \"\",\r\n            \"basisForPropertySeizurePublicSchools\": \"\",\r\n            \"resultsOfStop\": \"\",\r\n            \"codeSectionOrdinance\": \"\",\r\n            \"resultsPublicSchools\": \"\",\r\n            \"narrative\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"enforcementChargeClassifications\": [\r\n                {\r\n                    \"enforcementChargeClassificationId\": 9,\r\n                    \"enforcementId\": 1099,\r\n                    \"charge\": \"810.02 - Burglary.\",\r\n                    \"chargeClasification1\": true,\r\n                    \"chargeClasification2\": false,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T14:52:58.7090164\",\r\n                    \"createdDate\": \"2022-04-01T14:52:58.7089479\",\r\n                    \"createdBy\": \"apiTest\",\r\n                    \"modifiedBy\": \"apiTest\",\r\n                    \"deleted\": false,\r\n                    \"uniqueKey\": \"\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T14:52:58.7082032\",\r\n            \"createdDate\": \"2022-04-01T14:52:58.7082024\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 1097,\r\n            \"incidentId\": 1097,\r\n            \"narrative\": \"This is some great narrative.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-04-01T14:52:58.782954\",\r\n            \"createdDate\": \"2022-04-01T14:52:58.7829535\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"incidentOfficerId\": 1100,\r\n            \"incidentId\": 1097,\r\n            \"officerId\": \"2000\",\r\n            \"name\": \"User, Test\",\r\n            \"division\": \"Six\",\r\n            \"unit\": \"Three\",\r\n            \"nonEditable\": false,\r\n            \"officerYearsWithAgency\": \"\",\r\n            \"officerTotalYearsInLawEnforcement\": \"\",\r\n            \"officerPermanentAssignment\": \"\",\r\n            \"race\": \"Hispanic/Latino\",\r\n            \"gender\": \"Unknown\",\r\n            \"age\": \"22-29\",\r\n            \"birthDate\": \"03/07/1980\",\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T14:52:58.7176575\",\r\n            \"createdDate\": \"2022-04-01T14:52:58.717657\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"subjects\": [\r\n        {\r\n            \"subjectId\": 1105,\r\n            \"incidentId\": 1097,\r\n            \"lastName\": \"Smith\",\r\n            \"firstName\": \"Sara\",\r\n            \"middleName\": \"Jane\",\r\n            \"nameSuffix\": \"Mrs\",\r\n            \"aliases\": \"The Dude\",\r\n            \"streetNumber\": \"1234\",\r\n            \"streetName\": \"Main\",\r\n            \"streetDirection\": \"NE\",\r\n            \"unit\": \"1234__\",\r\n            \"streetType\": \"Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345-1234\",\r\n            \"homePhone\": \"111-111-1111 x111__\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"employer\": \"The Great Employment Agency\",\r\n            \"employerStreetNumber\": \"1234\",\r\n            \"employerStreetName\": \"Main\",\r\n            \"employerStreetDirection\": \"N\",\r\n            \"employerStreetType\": \"Street\",\r\n            \"employerCity\": \"Jacksonville\",\r\n            \"employerState\": \"FL\",\r\n            \"employerZip\": \"12345-1234\",\r\n            \"employerPhone\": \"111-111-1111 x111__\",\r\n            \"race\": \"Asian\",\r\n            \"ethnicity\": \"Asian\",\r\n            \"gender\": \"Pending\",\r\n            \"age\": \"40-50\",\r\n            \"birthDate\": \"03/01/1980\",\r\n            \"height\": \"5ft4-5ft7in\",\r\n            \"weight\": \"150-199\",\r\n            \"hairColor\": \"Black\",\r\n            \"eyeColor\": \"Brown\",\r\n            \"clothing\": \"Fully clothed\",\r\n            \"identificationMarks\": \"One Tattoo on the left body part.\",\r\n            \"photoTaken\": \"NA\",\r\n            \"photoPermissionGiven\": \"NA\",\r\n            \"fingerprintTaken\": \"Yes\",\r\n            \"fingerprintPermissionGiven\": \"Yes\",\r\n            \"attachment\": \"\",\r\n            \"gangCriteria\": \"Admits to gang membership\",\r\n            \"gangName\": \"Wu-Tang Clan\",\r\n            \"lengthOfInvolvement\": \"> 1 Year\",\r\n            \"nonEditable\": false,\r\n            \"subjectType\": \"\",\r\n            \"ssn\": \"\",\r\n            \"dln\": \"\",\r\n            \"licenseState\": \"\",\r\n            \"disablityOptions\": \"\",\r\n            \"hyperactivity\": \"\",\r\n            \"limitedEnglishFluency\": \"\",\r\n            \"isStudent\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T14:52:58.6885378\",\r\n            \"createdDate\": \"2022-04-01T14:52:58.6885373\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"vehicles\": [\r\n        {\r\n            \"vehicleId\": 17,\r\n            \"incidentId\": 1097,\r\n            \"type\": \"SUV\",\r\n            \"make\": \"Saab\",\r\n            \"model\": \"Some Model\",\r\n            \"year\": \"2011\",\r\n            \"tag\": \"FL1234\",\r\n            \"state\": \"PR\",\r\n            \"color\": \"Red\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T14:52:58.6951778\",\r\n            \"createdDate\": \"2022-04-01T14:52:58.6951774\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [],\r\n    \"ripas\": [\r\n        {\r\n            \"ripaId\": 51,\r\n            \"incidentId\": 1097,\r\n            \"stopDuration\": \"50\",\r\n            \"officerTotalYearsInLawEnforcement\": \"5\",\r\n            \"officerPermanentAssignment\": \"Compliance check\",\r\n            \"stopInResponseCallForService\": true,\r\n            \"blockNumber\": \"\",\r\n            \"streetName\": \"\",\r\n            \"closestIntersection\": \"\",\r\n            \"highwayAndClosestExit\": \"\",\r\n            \"roadMarker\": \"456\",\r\n            \"city\": \"Jacksonville\",\r\n            \"isSchool\": false,\r\n            \"isStudent\": false,\r\n            \"schoolName\": \"\",\r\n            \"stopReason\": \"Consensual Encounter resulting in a search\",\r\n            \"stopReasonTrafficCode\": \"\",\r\n            \"stopReasonableSuspicion\": \"\",\r\n            \"stopReasonableSuspicionPenalCode\": \"\",\r\n            \"stopBriefExplanation\": \"Reason\",\r\n            \"stopActions\": \"Curbside detention\",\r\n            \"askConsentSearchPerson\": true,\r\n            \"consentGivenSearchPerson\": true,\r\n            \"conductedSearchPerson\": true,\r\n            \"askConsentSearchProperty\": false,\r\n            \"conductedSearchProperty\": false,\r\n            \"propertySeizure\": true,\r\n            \"stopContrabandEvidenceDiscovered\": \"Firearm(s)\",\r\n            \"basisForSearch\": \"Consent given\",\r\n            \"basisForSearchExplanation\": \"The reason for the search.\",\r\n            \"basisForPropertySeizure\": \"Contraband\",\r\n            \"typeOfPropertySeized\": \"Ammunition\",\r\n            \"stopResults\": \"Citation or infraction\",\r\n            \"stopResultsWarningCode\": \"\",\r\n            \"stopResultsCitationCode\": \"RIPA Offense 1\",\r\n            \"stopResultsInFieldCiteCode\": \"\",\r\n            \"stopResultsCustodialArrestCode\": \"\",\r\n            \"perceivedRaceOrEthnicity\": \"Pacific Islander\",\r\n            \"perceivedGender\": \"Female\",\r\n            \"perceivedLGBT\": true,\r\n            \"perceivedAge\": 50,\r\n            \"limitedEnglishFluency\": true,\r\n            \"perceivedDisability\": \"Deafness or difficulty hearing\",\r\n            \"nonEditable\": false,\r\n            \"showWarning\": false,\r\n            \"showCitation\": false,\r\n            \"showInfieldCitation\": false,\r\n            \"showCustodialArrest\": false,\r\n            \"showSchoolName\": false,\r\n            \"showIsStudent\": false,\r\n            \"showReasonableSuspicion\": false,\r\n            \"showTrafficCode\": false,\r\n            \"showBasisForSearch\": false,\r\n            \"showBasisForSearchExplanantion\": false,\r\n            \"showBasisForPropertySeizure\": false,\r\n            \"showTypePropertySeized\": false,\r\n            \"showOfficerAssignOther\": false,\r\n            \"showEducationSubsection\": false,\r\n            \"officerAssignmentOther\": \"\",\r\n            \"educationCodeSubsection\": \"\",\r\n            \"contactType\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T14:52:58.7777373\",\r\n            \"createdDate\": \"2022-04-01T14:52:58.7777368\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"dojSubmissionStatus\": \"\",\r\n    \"ripaAddress\": \"\",\r\n    \"modifiedDate\": \"2022-04-01T14:52:58.6642748\",\r\n    \"createdDate\": \"2022-04-01T14:52:58.6642743\",\r\n    \"createdBy\": \"apiTest\",\r\n    \"modifiedBy\": \"apiTest\",\r\n    \"deleted\": false,\r\n    \"uniqueKey\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/pass"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlccGFzcw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Apr 2022 18:55:09 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"incidentId\": 1097,\n    \"creator\": \"\",\n    \"reviewer\": \"\",\n    \"creatorId\": 8,\n    \"status\": \"InReview\",\n    \"caseNumber\": \"TestCase-002\",\n    \"relatedIncidentCase\": \"\",\n    \"incidentDate\": \"03/30/2022\",\n    \"incidentTime\": \"15:34:00\",\n    \"streetNumber\": \"1234\",\n    \"streetName\": \"Main\",\n    \"streetType\": \"Street\",\n    \"streetDirection\": \"NE\",\n    \"city\": \"Orlando\",\n    \"state\": \"WA\",\n    \"zip\": \"23124-4545\",\n    \"area\": \"District 741\",\n    \"sector\": \"North\",\n    \"reasonableSuspicion\": \"Taking Flight Upon Seeing Officer\",\n    \"routing\": \"Command Staff\",\n    \"deleteComments\": \"\",\n    \"reportType\": \"\",\n    \"subReportNumber\": null,\n    \"trackingId\": 10,\n    \"trackingYear\": 2022,\n    \"trackingNumber\": \"2022 - 10\",\n    \"nonEditable\": false,\n    \"sealed\": false,\n    \"involvedSupervisorReview\": null,\n    \"closestIntersection\": \"\",\n    \"closestExit\": \"\",\n    \"roadMarker\": \"\",\n    \"incidentDocumentAttached\": \"\",\n    \"isSchool\": null,\n    \"isStudent\": \"\",\n    \"hyperactivity\": \"\",\n    \"schoolName\": \"\",\n    \"locationOfStop\": \"\",\n    \"reasonPublicSchools\": \"\",\n    \"resultsPublicSchools\": \"\",\n    \"locationOfStopDetails\": \"\",\n    \"timeTaken\": \"\",\n    \"primaryReferenceId\": null,\n    \"enforcements\": [\n        {\n            \"enforcementId\": 1099,\n            \"incidentId\": 1097,\n            \"subjectId\": 1104,\n            \"encounterType\": \"Consensual Encounter\",\n            \"reasonForContact\": \"Loitering\",\n            \"obtainedConsent\": \"Yes\",\n            \"consentGiven\": \"Yes\",\n            \"reasonForSearch\": \"Lawfully Detained\",\n            \"propertySeized\": \"Yes\",\n            \"evidenceType\": \"Drugs\",\n            \"actionTaken\": \"Released Without Citation|||Traffic Citation Issued/Released\",\n            \"lengthOfContact\": \"11-15 min\",\n            \"arrested\": \"Yes\",\n            \"felony\": \"Yes\",\n            \"charges\": \"810.02 - Burglary.\",\n            \"nonEditable\": false,\n            \"trafficViolation\": \"\",\n            \"activities\": \"\",\n            \"reasonPublicSchools\": \"\",\n            \"trafficViolationSection\": \"\",\n            \"activitiesSection\": \"\",\n            \"reasonPublicSchoolSectionCode\": \"\",\n            \"basisOfSearchPublicSchools\": \"\",\n            \"actionTakenPublicSchools\": \"\",\n            \"contrabandEvidenceDiscovered\": \"\",\n            \"basisForPropertySeizure\": \"\",\n            \"basisForPropertySeizurePublicSchools\": \"\",\n            \"resultsOfStop\": \"\",\n            \"codeSectionOrdinance\": \"\",\n            \"resultsPublicSchools\": \"\",\n            \"narrative\": \"\",\n            \"primaryReferenceId\": null,\n            \"enforcementChargeClassifications\": [\n                {\n                    \"enforcementChargeClassificationId\": 9,\n                    \"enforcementId\": 1099,\n                    \"charge\": \"810.02 - Burglary.\",\n                    \"chargeClasification1\": true,\n                    \"chargeClasification2\": false,\n                    \"chargeClasification3\": false,\n                    \"chargeClasification4\": false,\n                    \"chargeClasification5\": false,\n                    \"chargeClasification6\": \"\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T14:55:09.8321536\",\n                    \"createdDate\": \"2022-04-01T14:52:58.7089479\",\n                    \"createdBy\": \"apiTest\",\n                    \"modifiedBy\": \"apiTest\",\n                    \"deleted\": false,\n                    \"uniqueKey\": \"\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T14:55:09.8312623\",\n            \"createdDate\": \"2022-04-01T14:52:58.7082024\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"narratives\": [\n        {\n            \"narrativeId\": 1097,\n            \"incidentId\": 1097,\n            \"narrative\": \"This is some great narrative.\",\n            \"nonEditable\": false,\n            \"modifiedDate\": \"2022-04-01T14:55:09.8339607\",\n            \"createdDate\": \"2022-04-01T14:52:58.7829535\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"officers\": [\n        {\n            \"incidentOfficerId\": 1100,\n            \"incidentId\": 1097,\n            \"officerId\": \"2000\",\n            \"name\": \"User, Test\",\n            \"division\": \"Six\",\n            \"unit\": \"Three\",\n            \"nonEditable\": false,\n            \"officerYearsWithAgency\": \"\",\n            \"officerTotalYearsInLawEnforcement\": \"\",\n            \"officerPermanentAssignment\": \"\",\n            \"race\": \"Hispanic/Latino\",\n            \"gender\": \"Unknown\",\n            \"age\": \"22-29\",\n            \"birthDate\": \"03/07/1980\",\n            \"bodyWornCamera\": \"\",\n            \"activated\": \"\",\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T14:55:09.8331901\",\n            \"createdDate\": \"2022-04-01T14:52:58.717657\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"subjects\": [\n        {\n            \"subjectId\": 1105,\n            \"incidentId\": 1097,\n            \"lastName\": \"Smith\",\n            \"firstName\": \"Sara\",\n            \"middleName\": \"Jane\",\n            \"nameSuffix\": \"Mrs\",\n            \"aliases\": \"The Dude\",\n            \"streetNumber\": \"1234\",\n            \"streetName\": \"Main\",\n            \"streetDirection\": \"NE\",\n            \"unit\": \"1234__\",\n            \"streetType\": \"Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345-1234\",\n            \"homePhone\": \"111-111-1111 x111__\",\n            \"cellPhone\": \"222-222-2222 x_____\",\n            \"employer\": \"The Great Employment Agency\",\n            \"employerStreetNumber\": \"1234\",\n            \"employerStreetName\": \"Main\",\n            \"employerStreetDirection\": \"N\",\n            \"employerStreetType\": \"Street\",\n            \"employerCity\": \"Jacksonville\",\n            \"employerState\": \"FL\",\n            \"employerZip\": \"12345-1234\",\n            \"employerPhone\": \"111-111-1111 x111__\",\n            \"race\": \"Asian\",\n            \"ethnicity\": \"Asian\",\n            \"gender\": \"Pending\",\n            \"age\": \"40-50\",\n            \"birthDate\": \"03/01/1980\",\n            \"height\": \"5ft4-5ft7in\",\n            \"weight\": \"150-199\",\n            \"hairColor\": \"Black\",\n            \"eyeColor\": \"Brown\",\n            \"clothing\": \"Fully clothed\",\n            \"identificationMarks\": \"One Tattoo on the left body part.\",\n            \"photoTaken\": \"NA\",\n            \"photoPermissionGiven\": \"NA\",\n            \"fingerprintTaken\": \"Yes\",\n            \"fingerprintPermissionGiven\": \"Yes\",\n            \"attachment\": \"\",\n            \"gangCriteria\": \"Admits to gang membership\",\n            \"gangName\": \"Wu-Tang Clan\",\n            \"lengthOfInvolvement\": \"> 1 Year\",\n            \"nonEditable\": false,\n            \"subjectType\": \"\",\n            \"ssn\": \"\",\n            \"dln\": \"\",\n            \"licenseState\": \"\",\n            \"disablityOptions\": \"\",\n            \"hyperactivity\": \"\",\n            \"limitedEnglishFluency\": \"\",\n            \"isStudent\": \"\",\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T14:55:09.8292343\",\n            \"createdDate\": \"2022-04-01T14:52:58.6885373\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"vehicles\": [\n        {\n            \"vehicleId\": 17,\n            \"incidentId\": 1097,\n            \"type\": \"SUV\",\n            \"make\": \"Saab\",\n            \"model\": \"Some Model\",\n            \"year\": \"2011\",\n            \"tag\": \"FL1234\",\n            \"state\": \"PR\",\n            \"color\": \"Red\",\n            \"nonEditable\": false,\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T14:55:09.8299646\",\n            \"createdDate\": \"2022-04-01T14:52:58.6951774\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"reviews\": [],\n    \"reviewFormValues\": [],\n    \"ripas\": [\n        {\n            \"ripaId\": 51,\n            \"incidentId\": 1097,\n            \"stopDuration\": \"50\",\n            \"officerTotalYearsInLawEnforcement\": \"5\",\n            \"officerPermanentAssignment\": \"Compliance check\",\n            \"stopInResponseCallForService\": true,\n            \"blockNumber\": \"\",\n            \"streetName\": \"\",\n            \"closestIntersection\": \"\",\n            \"highwayAndClosestExit\": \"\",\n            \"roadMarker\": \"456\",\n            \"city\": \"Jacksonville\",\n            \"isSchool\": false,\n            \"isStudent\": false,\n            \"schoolName\": \"\",\n            \"stopReason\": \"Consensual Encounter resulting in a search\",\n            \"stopReasonTrafficCode\": \"\",\n            \"stopReasonableSuspicion\": \"\",\n            \"stopReasonableSuspicionPenalCode\": \"\",\n            \"stopBriefExplanation\": \"Reason\",\n            \"stopActions\": \"Curbside detention\",\n            \"askConsentSearchPerson\": true,\n            \"consentGivenSearchPerson\": true,\n            \"conductedSearchPerson\": true,\n            \"askConsentSearchProperty\": false,\n            \"conductedSearchProperty\": false,\n            \"propertySeizure\": true,\n            \"stopContrabandEvidenceDiscovered\": \"Firearm(s)\",\n            \"basisForSearch\": \"Consent given\",\n            \"basisForSearchExplanation\": \"The reason for the search.\",\n            \"basisForPropertySeizure\": \"Contraband\",\n            \"typeOfPropertySeized\": \"Ammunition\",\n            \"stopResults\": \"Citation or infraction\",\n            \"stopResultsWarningCode\": \"\",\n            \"stopResultsCitationCode\": \"RIPA Offense 1\",\n            \"stopResultsInFieldCiteCode\": \"\",\n            \"stopResultsCustodialArrestCode\": \"\",\n            \"perceivedRaceOrEthnicity\": \"Pacific Islander\",\n            \"perceivedGender\": \"Female\",\n            \"perceivedLGBT\": true,\n            \"perceivedAge\": 50,\n            \"limitedEnglishFluency\": true,\n            \"perceivedDisability\": \"Deafness or difficulty hearing\",\n            \"nonEditable\": false,\n            \"showWarning\": false,\n            \"showCitation\": false,\n            \"showInfieldCitation\": false,\n            \"showCustodialArrest\": false,\n            \"showSchoolName\": false,\n            \"showIsStudent\": false,\n            \"showReasonableSuspicion\": false,\n            \"showTrafficCode\": false,\n            \"showBasisForSearch\": false,\n            \"showBasisForSearchExplanantion\": false,\n            \"showBasisForPropertySeizure\": false,\n            \"showTypePropertySeized\": false,\n            \"showOfficerAssignOther\": false,\n            \"showEducationSubsection\": false,\n            \"officerAssignmentOther\": \"\",\n            \"educationCodeSubsection\": \"\",\n            \"contactType\": \"\",\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T14:55:09.8346274\",\n            \"createdDate\": \"2022-04-01T14:52:58.7777368\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false,\n            \"uniqueKey\": \"\"\n        }\n    ],\n    \"dojSubmissionStatus\": \"\",\n    \"ripaAddress\": \"\",\n    \"modifiedDate\": \"2022-04-01T14:55:09.8347875\",\n    \"createdDate\": \"2022-04-01T14:52:58.6642743\",\n    \"createdBy\": \"apiTest\",\n    \"modifiedBy\": \"apiTest\",\n    \"deleted\": false,\n    \"uniqueKey\": \"\"\n}"},{"id":"c7d5e9ae-3348-461e-bc4d-4a120fa6cd93","name":"Case Number Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": 90,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"Editing\",\r\n    \"caseNumber\": \"MyCaseNumber-002\",\r\n    \"relatedIncidentCase\": \"90345.A18\",\r\n    \"incidentDate\": \"11/19/2019\",\r\n    \"incidentTime\": \"14:06:00\",\r\n    \"streetNumber\": \"2532\",\r\n    \"streetName\": \"Courtney\",\r\n    \"streetType\": \"St\",\r\n    \"streetDirection\": \"NE\",\r\n    \"city\": \"San Diego\",\r\n    \"state\": \"OR\",\r\n    \"zip\": \"32334-____\",\r\n    \"area\": \"Zone 2\",\r\n    \"sector\": \"North\",\r\n    \"reasonableSuspicion\": \"Matching Description Of Wanted Person\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"reportType\": \"\",\r\n    \"subReportNumber\": null,\r\n    \"trackingId\": 5,\r\n    \"trackingYear\": 2022,\r\n    \"trackingNumber\": \"2022 - 5\",\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": null,\r\n    \"closestIntersection\": \"\",\r\n    \"closestExit\": \"\",\r\n    \"roadMarker\": \"\",\r\n    \"incidentDocumentAttached\": \"\",\r\n    \"isSchool\": null,\r\n    \"isStudent\": \"\",\r\n    \"hyperactivity\": \"\",\r\n    \"schoolName\": \"\",\r\n    \"locationOfStop\": \"\",\r\n    \"reasonPublicSchools\": \"\",\r\n    \"resultsPublicSchools\": \"\",\r\n    \"locationOfStopDetails\": \"\",\r\n    \"timeTaken\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"enforcements\": [\r\n        {\r\n            \"enforcementId\": 92,\r\n            \"incidentId\": 90,\r\n            \"subjectId\": 1,\r\n            \"encounterType\": \"\",\r\n            \"reasonForContact\": \"\",\r\n            \"obtainedConsent\": \"\",\r\n            \"consentGiven\": \"\",\r\n            \"reasonForSearch\": \"\",\r\n            \"propertySeized\": \"\",\r\n            \"evidenceType\": \"\",\r\n            \"actionTaken\": \"\",\r\n            \"lengthOfContact\": \"\",\r\n            \"arrested\": \"\",\r\n            \"felony\": \"\",\r\n            \"charges\": \"\",\r\n            \"nonEditable\": false,\r\n            \"trafficViolation\": \"\",\r\n            \"activities\": \"\",\r\n            \"reasonPublicSchools\": \"\",\r\n            \"trafficViolationSection\": \"\",\r\n            \"activitiesSection\": \"\",\r\n            \"reasonPublicSchoolSectionCode\": \"\",\r\n            \"basisOfSearchPublicSchools\": \"\",\r\n            \"actionTakenPublicSchools\": \"\",\r\n            \"contrabandEvidenceDiscovered\": \"\",\r\n            \"basisForPropertySeizure\": \"\",\r\n            \"basisForPropertySeizurePublicSchools\": \"\",\r\n            \"resultsOfStop\": \"\",\r\n            \"codeSectionOrdinance\": \"\",\r\n            \"resultsPublicSchools\": \"\",\r\n            \"narrative\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"enforcementChargeClassifications\": [],\r\n            \"modifiedDate\": \"2022-03-18T16:28:08.043261\",\r\n            \"createdDate\": \"2022-03-18T16:28:08.0432606\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 90,\r\n            \"incidentId\": 90,\r\n            \"narrative\": \"Agencies are not required to adjust or change their reporting procedures to conform to the software, instead, this highly adaptable application is customized to suit each agency’s procedures, policies, terminology and use of force continuum, etc. Administrators can easily modify the application as reporting procedures change and because LEFTA Systems’ software continues to grow with an agency, the need for future software purchases is eliminated. Made for Cops by Cops, FACTS is highly user and in-the-field friendly and a critical component of the SHIELD Suite. FACTS software not only helps to substantially mitigate liability for officers in the field and their agency but can also be an effective tool in bridging law enforcement agencies and the communities they serve. Numerous reports and hundreds of statistics are immediately available to management as soon as an officer enters incident information. Utilizing these statistical data, management can easily review how officers are applying force. What type of resistance did the officer encounter? What type of force was used? Was the subject or the officer injured and how serious was the injury? What was the racial correlation between the subject and the officer? Which types of calls involve the highest rate of use of force incidents? What percentage of subjects involved in the use of force incidents have mental health issues? Is one officer using force more often than other officers? When and where do most incidents occur and are certain types of the response being overused (i.e. Taser©, pepper spray, impact weapons, takedown techniques, etc.)?\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-03-18T16:28:08.1015651\",\r\n            \"createdDate\": \"2022-03-18T16:28:08.1015647\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"incidentOfficerId\": 93,\r\n            \"incidentId\": 90,\r\n            \"officerId\": \"3000\",\r\n            \"name\": \"Matt Jarvis\",\r\n            \"division\": \"\",\r\n            \"unit\": \"\",\r\n            \"nonEditable\": false,\r\n            \"officerYearsWithAgency\": \"\",\r\n            \"officerTotalYearsInLawEnforcement\": \"\",\r\n            \"officerPermanentAssignment\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"age\": \"\",\r\n            \"birthDate\": \"\",\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-18T16:28:08.0513091\",\r\n            \"createdDate\": \"2022-03-18T16:28:08.0513086\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"subjects\": [\r\n        {\r\n            \"subjectId\": 98,\r\n            \"incidentId\": 90,\r\n            \"lastName\": \"Fields\",\r\n            \"firstName\": \"Martha\",\r\n            \"middleName\": \"\",\r\n            \"nameSuffix\": \"\",\r\n            \"aliases\": \"Marti\",\r\n            \"streetNumber\": \"4570\",\r\n            \"streetName\": \"Wingate\",\r\n            \"streetDirection\": \"SE\",\r\n            \"unit\": \"94____\",\r\n            \"streetType\": \"Loop\",\r\n            \"city\": \"Davenport\",\r\n            \"state\": \"MS\",\r\n            \"zip\": \"84566-____\",\r\n            \"homePhone\": \"\",\r\n            \"cellPhone\": \"\",\r\n            \"employer\": \"\",\r\n            \"employerStreetNumber\": \"\",\r\n            \"employerStreetName\": \"\",\r\n            \"employerStreetDirection\": \"\",\r\n            \"employerStreetType\": \"\",\r\n            \"employerCity\": \"\",\r\n            \"employerState\": \"\",\r\n            \"employerZip\": \"\",\r\n            \"employerPhone\": \"\",\r\n            \"race\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"gender\": \"\",\r\n            \"age\": \"\",\r\n            \"birthDate\": \"\",\r\n            \"height\": \"\",\r\n            \"weight\": \"\",\r\n            \"hairColor\": \"\",\r\n            \"eyeColor\": \"\",\r\n            \"clothing\": \"\",\r\n            \"identificationMarks\": \"\",\r\n            \"photoTaken\": \"\",\r\n            \"photoPermissionGiven\": \"\",\r\n            \"fingerprintTaken\": \"\",\r\n            \"fingerprintPermissionGiven\": \"\",\r\n            \"attachment\": \"\",\r\n            \"gangCriteria\": \"\",\r\n            \"gangName\": \"\",\r\n            \"lengthOfInvolvement\": \"\",\r\n            \"nonEditable\": false,\r\n            \"subjectType\": \"\",\r\n            \"ssn\": \"\",\r\n            \"dln\": \"\",\r\n            \"licenseState\": \"\",\r\n            \"disablityOptions\": \"\",\r\n            \"hyperactivity\": \"\",\r\n            \"limitedEnglishFluency\": \"\",\r\n            \"isStudent\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-18T16:28:08.0310145\",\r\n            \"createdDate\": \"2022-03-18T16:28:08.031014\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"vehicles\": [],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [],\r\n    \"ripas\": [],\r\n    \"dojSubmissionStatus\": \"\",\r\n    \"ripaAddress\": \"\",\r\n    \"modifiedDate\": \"2022-03-18T16:28:08.0095553\",\r\n    \"createdDate\": \"2022-03-18T16:28:08.0095548\",\r\n    \"createdBy\": \"apiTest\",\r\n    \"modifiedBy\": \"apiTest\",\r\n    \"deleted\": false,\r\n    \"uniqueKey\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/pass"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlccGFzcw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 20:31:17 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Supplied Incident Case Number doesn't exists!\"\n}"},{"id":"396e14bb-9404-45fa-a4c4-6afb31283589","name":"Incident Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": 92,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"Editing\",\r\n    \"caseNumber\": \"MyCaseNumber-001\",\r\n    \"relatedIncidentCase\": \"90345.A18\",\r\n    \"incidentDate\": \"11/19/2019\",\r\n    \"incidentTime\": \"14:06:00\",\r\n    \"streetNumber\": \"2532\",\r\n    \"streetName\": \"Courtney\",\r\n    \"streetType\": \"St\",\r\n    \"streetDirection\": \"NE\",\r\n    \"city\": \"San Diego\",\r\n    \"state\": \"OR\",\r\n    \"zip\": \"32334-____\",\r\n    \"area\": \"Zone 2\",\r\n    \"sector\": \"North\",\r\n    \"reasonableSuspicion\": \"Matching Description Of Wanted Person\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"reportType\": \"\",\r\n    \"subReportNumber\": null,\r\n    \"trackingId\": 5,\r\n    \"trackingYear\": 2022,\r\n    \"trackingNumber\": \"2022 - 5\",\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"involvedSupervisorReview\": null,\r\n    \"closestIntersection\": \"\",\r\n    \"closestExit\": \"\",\r\n    \"roadMarker\": \"\",\r\n    \"incidentDocumentAttached\": \"\",\r\n    \"isSchool\": null,\r\n    \"isStudent\": \"\",\r\n    \"hyperactivity\": \"\",\r\n    \"schoolName\": \"\",\r\n    \"locationOfStop\": \"\",\r\n    \"reasonPublicSchools\": \"\",\r\n    \"resultsPublicSchools\": \"\",\r\n    \"locationOfStopDetails\": \"\",\r\n    \"timeTaken\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"enforcements\": [\r\n        {\r\n            \"enforcementId\": 92,\r\n            \"incidentId\": 90,\r\n            \"subjectId\": 1,\r\n            \"encounterType\": \"\",\r\n            \"reasonForContact\": \"\",\r\n            \"obtainedConsent\": \"\",\r\n            \"consentGiven\": \"\",\r\n            \"reasonForSearch\": \"\",\r\n            \"propertySeized\": \"\",\r\n            \"evidenceType\": \"\",\r\n            \"actionTaken\": \"\",\r\n            \"lengthOfContact\": \"\",\r\n            \"arrested\": \"\",\r\n            \"felony\": \"\",\r\n            \"charges\": \"\",\r\n            \"nonEditable\": false,\r\n            \"trafficViolation\": \"\",\r\n            \"activities\": \"\",\r\n            \"reasonPublicSchools\": \"\",\r\n            \"trafficViolationSection\": \"\",\r\n            \"activitiesSection\": \"\",\r\n            \"reasonPublicSchoolSectionCode\": \"\",\r\n            \"basisOfSearchPublicSchools\": \"\",\r\n            \"actionTakenPublicSchools\": \"\",\r\n            \"contrabandEvidenceDiscovered\": \"\",\r\n            \"basisForPropertySeizure\": \"\",\r\n            \"basisForPropertySeizurePublicSchools\": \"\",\r\n            \"resultsOfStop\": \"\",\r\n            \"codeSectionOrdinance\": \"\",\r\n            \"resultsPublicSchools\": \"\",\r\n            \"narrative\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"enforcementChargeClassifications\": [],\r\n            \"modifiedDate\": \"2022-03-18T16:28:08.043261\",\r\n            \"createdDate\": \"2022-03-18T16:28:08.0432606\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 90,\r\n            \"incidentId\": 90,\r\n            \"narrative\": \"Agencies are not required to adjust or change their reporting procedures to conform to the software, instead, this highly adaptable application is customized to suit each agency’s procedures, policies, terminology and use of force continuum, etc. Administrators can easily modify the application as reporting procedures change and because LEFTA Systems’ software continues to grow with an agency, the need for future software purchases is eliminated. Made for Cops by Cops, FACTS is highly user and in-the-field friendly and a critical component of the SHIELD Suite. FACTS software not only helps to substantially mitigate liability for officers in the field and their agency but can also be an effective tool in bridging law enforcement agencies and the communities they serve. Numerous reports and hundreds of statistics are immediately available to management as soon as an officer enters incident information. Utilizing these statistical data, management can easily review how officers are applying force. What type of resistance did the officer encounter? What type of force was used? Was the subject or the officer injured and how serious was the injury? What was the racial correlation between the subject and the officer? Which types of calls involve the highest rate of use of force incidents? What percentage of subjects involved in the use of force incidents have mental health issues? Is one officer using force more often than other officers? When and where do most incidents occur and are certain types of the response being overused (i.e. Taser©, pepper spray, impact weapons, takedown techniques, etc.)?\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-03-18T16:28:08.1015651\",\r\n            \"createdDate\": \"2022-03-18T16:28:08.1015647\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"incidentOfficerId\": 93,\r\n            \"incidentId\": 90,\r\n            \"officerId\": \"3000\",\r\n            \"name\": \"Matt Jarvis\",\r\n            \"division\": \"\",\r\n            \"unit\": \"\",\r\n            \"nonEditable\": false,\r\n            \"officerYearsWithAgency\": \"\",\r\n            \"officerTotalYearsInLawEnforcement\": \"\",\r\n            \"officerPermanentAssignment\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"age\": \"\",\r\n            \"birthDate\": \"\",\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-18T16:28:08.0513091\",\r\n            \"createdDate\": \"2022-03-18T16:28:08.0513086\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"subjects\": [\r\n        {\r\n            \"subjectId\": 98,\r\n            \"incidentId\": 90,\r\n            \"lastName\": \"Fields\",\r\n            \"firstName\": \"Martha\",\r\n            \"middleName\": \"\",\r\n            \"nameSuffix\": \"\",\r\n            \"aliases\": \"Marti\",\r\n            \"streetNumber\": \"4570\",\r\n            \"streetName\": \"Wingate\",\r\n            \"streetDirection\": \"SE\",\r\n            \"unit\": \"94____\",\r\n            \"streetType\": \"Loop\",\r\n            \"city\": \"Davenport\",\r\n            \"state\": \"MS\",\r\n            \"zip\": \"84566-____\",\r\n            \"homePhone\": \"\",\r\n            \"cellPhone\": \"\",\r\n            \"employer\": \"\",\r\n            \"employerStreetNumber\": \"\",\r\n            \"employerStreetName\": \"\",\r\n            \"employerStreetDirection\": \"\",\r\n            \"employerStreetType\": \"\",\r\n            \"employerCity\": \"\",\r\n            \"employerState\": \"\",\r\n            \"employerZip\": \"\",\r\n            \"employerPhone\": \"\",\r\n            \"race\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"gender\": \"\",\r\n            \"age\": \"\",\r\n            \"birthDate\": \"\",\r\n            \"height\": \"\",\r\n            \"weight\": \"\",\r\n            \"hairColor\": \"\",\r\n            \"eyeColor\": \"\",\r\n            \"clothing\": \"\",\r\n            \"identificationMarks\": \"\",\r\n            \"photoTaken\": \"\",\r\n            \"photoPermissionGiven\": \"\",\r\n            \"fingerprintTaken\": \"\",\r\n            \"fingerprintPermissionGiven\": \"\",\r\n            \"attachment\": \"\",\r\n            \"gangCriteria\": \"\",\r\n            \"gangName\": \"\",\r\n            \"lengthOfInvolvement\": \"\",\r\n            \"nonEditable\": false,\r\n            \"subjectType\": \"\",\r\n            \"ssn\": \"\",\r\n            \"dln\": \"\",\r\n            \"licenseState\": \"\",\r\n            \"disablityOptions\": \"\",\r\n            \"hyperactivity\": \"\",\r\n            \"limitedEnglishFluency\": \"\",\r\n            \"isStudent\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-18T16:28:08.0310145\",\r\n            \"createdDate\": \"2022-03-18T16:28:08.031014\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false,\r\n            \"uniqueKey\": \"\"\r\n        }\r\n    ],\r\n    \"vehicles\": [],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [],\r\n    \"ripas\": [],\r\n    \"dojSubmissionStatus\": \"\",\r\n    \"ripaAddress\": \"\",\r\n    \"modifiedDate\": \"2022-03-18T16:28:08.0095553\",\r\n    \"createdDate\": \"2022-03-18T16:28:08.0095548\",\r\n    \"createdBy\": \"apiTest\",\r\n    \"modifiedBy\": \"apiTest\",\r\n    \"deleted\": false,\r\n    \"uniqueKey\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/pass"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlccGFzcw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 20:32:28 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Instance not found for the supplied id!\"\n}"}],"_postman_id":"5ff4cd1f-4bf5-4773-b55a-017a40223a6a"}],"id":"bd459db7-0eef-490a-a1e6-a47f0e80527c","description":"<p>Through the LEFTA Systems PASS API, you can interact with SHIELD Portal's Field Investigation application to interact with investigation incidents and its related entities.</p>\n","event":[{"listen":"prerequest","script":{"id":"fa4d9c67-2763-4f36-a512-0f79d1d4a4c3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"81e81ad8-7b12-46d9-a0fe-852980bc36b9","type":"text/javascript","exec":[""]}}],"_postman_id":"bd459db7-0eef-490a-a1e6-a47f0e80527c","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}}},{"name":"FACTS : Use of Force","item":[{"name":"Get a List of Incidents","id":"be6ffd02-f512-444f-8754-7abe2d0cd1a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/facts?start_date=10-20-2012&end_date=03-15-2022","description":"<p>Get a list of use of force incidents based of the supplied filter criteria. None of the child entities will be populated on search results.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","facts"],"host":["{{BaseUri}}"],"query":[{"description":{"content":"<p>Filter results by incidentDate to include only records after this date.</p>\n","type":"text/plain"},"key":"start_date","value":"10-20-2012"},{"description":{"content":"<p>Filter results by incidentDate to include only records before this date.</p>\n","type":"text/plain"},"key":"end_date","value":"03-15-2022"}],"variable":[]}},"response":[{"id":"ee039cea-5203-425d-a81f-51a68ea459a0","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/facts?start_date=10-20-2012&end_date=03-15-2022","host":["{{BaseUri}}"],"path":["api","facts"],"query":[{"key":"start_date","value":"10-20-2012","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2022","description":"Filter results to include only records before this date."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcZmFjdHM=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 17:33:19 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"incidentId\": 1,\n        \"creator\": \"John Miller\",\n        \"reviewer\": \"\",\n        \"creatorId\": 0,\n        \"status\": \"Completed\",\n        \"fdleSubmissionStatus\": \"\",\n        \"incidentCaseNumber\": \"ValReview\",\n        \"relatedIncidentCase\": \"\",\n        \"incidentDate\": \"12/29/2012\",\n        \"incidentTime\": \"00:00:00\",\n        \"reportDate\": \"12/29/2012\",\n        \"reportTime\": \"00:00:00\",\n        \"incidentSupervisorNotified\": \"\",\n        \"incidentSupervisorNumber\": \"\",\n        \"incidentSupervisorNotifiedTime\": \"00:00:00\",\n        \"incidentSupervisorArrivedTime\": \"00:00:00\",\n        \"incidentVideoAttached\": \"\",\n        \"incidentDocumentAttached\": \"\",\n        \"incidentAddress\": \"4658 Commander Dr \",\n        \"city\": \"Orlando\",\n        \"state\": \"FL\",\n        \"area\": \"\",\n        \"district\": \"\",\n        \"sector\": \"\",\n        \"subsector\": \"\",\n        \"locationTypeApartment\": false,\n        \"locationTypeResidence\": false,\n        \"locationTypeHotelMotel\": false,\n        \"locationTypeRestaurantBar\": false,\n        \"locationTypeParkingLot\": false,\n        \"locationTypeOpenField\": false,\n        \"locationTypeWoodedArea\": false,\n        \"locationTypeOther\": false,\n        \"lightingConditionsDaylight\": false,\n        \"lightingConditionsDusk\": false,\n        \"lightingConditionsDawn\": false,\n        \"lightingConditionsDarkLighted\": false,\n        \"lightingConditionsDarkNotLighted\": false,\n        \"lightingConditionsDarkUnknownLighting\": false,\n        \"lightingConditionsOther\": false,\n        \"weatherConditionsClear\": false,\n        \"weatherConditionsCloudy\": false,\n        \"weatherConditionsRain\": false,\n        \"weatherConditionsSnow\": false,\n        \"weatherConditionsWindy\": false,\n        \"weatherConditionsFogSmokeSmog\": false,\n        \"weatherConditionsSleetHail\": false,\n        \"weatherConditionsOther\": false,\n        \"locationType\": \"\",\n        \"lightingCondition\": \"\",\n        \"weatherCondition\": \"\",\n        \"involvedOfficer\": true,\n        \"involvedSuspect\": true,\n        \"involvedVictim\": false,\n        \"involvedWitness\": false,\n        \"involvedVehicle\": false,\n        \"involvedProperty\": false,\n        \"involvedInmate\": false,\n        \"involvedNarrative\": true,\n        \"involvedSupervisorReview\": null,\n        \"responseToResistanceEcd\": true,\n        \"responseToResistanceChemicalAgents\": false,\n        \"responseToResistanceImpactWeapons\": false,\n        \"responseToResistanceImpactMunitions\": false,\n        \"responseToResistanceK9\": true,\n        \"responseToResistanceHands\": false,\n        \"responseToResistanceTakedowns\": true,\n        \"responseToResistanceFirearms\": false,\n        \"responseToResistanceStopsticks\": false,\n        \"responseToResistanceOther\": false,\n        \"supervisorName\": \"\",\n        \"managerNotified\": \"\",\n        \"managerName\": \"\",\n        \"managerNotifiedTime\": null,\n        \"managerArrivedTime\": null,\n        \"reasonForUseOfForce\": \"\",\n        \"reasonForUseOfForceOther\": \"\",\n        \"incidentType\": \"\",\n        \"incidentTypeOther\": \"\",\n        \"trackingId\": null,\n        \"trackingYear\": null,\n        \"trackingNumber\": \"\",\n        \"subReportNumber\": null,\n        \"historical\": true,\n        \"oldCreatorName\": \"John Miller\",\n        \"routing\": \"\",\n        \"deleteComments\": \"\",\n        \"reportType\": \"\",\n        \"nonEditable\": false,\n        \"sealed\": false,\n        \"searchNarrative\": \"\",\n        \"incidentAddress2\": \"\",\n        \"zipCode\": \"\",\n        \"latitude\": \"\",\n        \"longitude\": \"\",\n        \"incidentAmbush\": \"\",\n        \"leoApproachSuspect\": \"\",\n        \"initialContactReason\": \"\",\n        \"forceResults\": \"\",\n        \"dontKnowRelatedIncidentCase\": \"\",\n        \"totalOfficersOwnAgencyApplyForce\": null,\n        \"dontKnowTotalOfficersOwnAgencyApplyForce\": \"\",\n        \"totalOfficersAllAgencyApplyForce\": null,\n        \"dontKnowTotalOfficersAllAgencyApplyForce\": \"\",\n        \"totalSuspectsDeceasedOrInjured\": null,\n        \"dontKnowTotalSuspectsDeceasedOrInjured\": \"\",\n        \"didOtherAgencyApplyForce\": false,\n        \"totalOtherAgencyApplyForce\": null,\n        \"otherAgencyCaseNumber\": \"\",\n        \"otherAgencyORI\": \"\",\n        \"dontKnowAddress\": \"\",\n        \"seniorOfficerPresent\": \"\",\n        \"seniorOfficerName\": \"\",\n        \"seniorOfficerNotifiedTime\": null,\n        \"seniorOfficerArrivedTime\": null,\n        \"incidentCategory\": \"\",\n        \"howmanyOfficersonCall\": \"\",\n        \"streetNumber\": \"\",\n        \"preDirectional\": \"\",\n        \"streetType\": \"\",\n        \"postDirectional\": \"\",\n        \"lethal\": false,\n        \"servicesRendered\": \"\",\n        \"primaryReferenceId\": null,\n        \"chemicals\": [],\n        \"ecds\": [],\n        \"firearms\": [],\n        \"hands\": [],\n        \"inmates\": [],\n        \"k9s\": [],\n        \"munitions\": [],\n        \"narratives\": [],\n        \"officers\": [],\n        \"properties\": [],\n        \"stopSticks\": [],\n        \"suspects\": [],\n        \"takedowns\": [],\n        \"vehicles\": [],\n        \"victims\": [],\n        \"weapons\": [],\n        \"witnesses\": [],\n        \"reviews\": [],\n        \"reviewFormValues\": [],\n        \"modifiedDate\": \"2017-08-22T10:10:35.01\",\n        \"createdDate\": \"2012-12-29T15:11:05.96\"\n    },\n    {\n        \"incidentId\": 2,\n        \"creator\": \"Ofc. Alex Kempinski\",\n        \"reviewer\": \"\",\n        \"creatorId\": 0,\n        \"status\": \"Completed\",\n        \"fdleSubmissionStatus\": \"\",\n        \"incidentCaseNumber\": \"2013-01\",\n        \"relatedIncidentCase\": \"\",\n        \"incidentDate\": \"01/01/2013\",\n        \"incidentTime\": \"04:30:00\",\n        \"reportDate\": \"01/01/2013\",\n        \"reportTime\": \"05:10:00\",\n        \"incidentSupervisorNotified\": \"Yes\",\n        \"incidentSupervisorNumber\": \"\",\n        \"incidentSupervisorNotifiedTime\": \"04:50:00\",\n        \"incidentSupervisorArrivedTime\": \"05:00:00\",\n        \"incidentVideoAttached\": \"No\",\n        \"incidentDocumentAttached\": \"No\",\n        \"incidentAddress\": \"701 San Jose Blvd\",\n        \"city\": \"Orlando (city limits)\",\n        \"state\": \"FL\",\n        \"area\": \"Zone 1\",\n        \"district\": \"North\",\n        \"sector\": \"A-1\",\n        \"subsector\": \"\",\n        \"locationTypeApartment\": false,\n        \"locationTypeResidence\": false,\n        \"locationTypeHotelMotel\": false,\n        \"locationTypeRestaurantBar\": false,\n        \"locationTypeParkingLot\": true,\n        \"locationTypeOpenField\": false,\n        \"locationTypeWoodedArea\": false,\n        \"locationTypeOther\": false,\n        \"lightingConditionsDaylight\": false,\n        \"lightingConditionsDusk\": false,\n        \"lightingConditionsDawn\": false,\n        \"lightingConditionsDarkLighted\": true,\n        \"lightingConditionsDarkNotLighted\": false,\n        \"lightingConditionsDarkUnknownLighting\": false,\n        \"lightingConditionsOther\": false,\n        \"weatherConditionsClear\": false,\n        \"weatherConditionsCloudy\": true,\n        \"weatherConditionsRain\": false,\n        \"weatherConditionsSnow\": false,\n        \"weatherConditionsWindy\": false,\n        \"weatherConditionsFogSmokeSmog\": false,\n        \"weatherConditionsSleetHail\": false,\n        \"weatherConditionsOther\": false,\n        \"locationType\": \"\",\n        \"lightingCondition\": \"\",\n        \"weatherCondition\": \"\",\n        \"involvedOfficer\": true,\n        \"involvedSuspect\": true,\n        \"involvedVictim\": false,\n        \"involvedWitness\": false,\n        \"involvedVehicle\": false,\n        \"involvedProperty\": false,\n        \"involvedInmate\": false,\n        \"involvedNarrative\": true,\n        \"involvedSupervisorReview\": null,\n        \"responseToResistanceEcd\": true,\n        \"responseToResistanceChemicalAgents\": true,\n        \"responseToResistanceImpactWeapons\": true,\n        \"responseToResistanceImpactMunitions\": false,\n        \"responseToResistanceK9\": true,\n        \"responseToResistanceHands\": false,\n        \"responseToResistanceTakedowns\": true,\n        \"responseToResistanceFirearms\": false,\n        \"responseToResistanceStopsticks\": false,\n        \"responseToResistanceOther\": false,\n        \"supervisorName\": \"John Mitchel\",\n        \"managerNotified\": \"No\",\n        \"managerName\": \"\",\n        \"managerNotifiedTime\": \"00:00:00\",\n        \"managerArrivedTime\": \"00:00:00\",\n        \"reasonForUseOfForce\": \"\",\n        \"reasonForUseOfForceOther\": \"\",\n        \"incidentType\": \"\",\n        \"incidentTypeOther\": \"\",\n        \"trackingId\": null,\n        \"trackingYear\": null,\n        \"trackingNumber\": \"\",\n        \"subReportNumber\": null,\n        \"historical\": true,\n        \"oldCreatorName\": \"Ofc. Alex Kempinski\",\n        \"routing\": \"\",\n        \"deleteComments\": \"\",\n        \"reportType\": \"\",\n        \"nonEditable\": false,\n        \"sealed\": false,\n        \"searchNarrative\": \"\",\n        \"incidentAddress2\": \"\",\n        \"zipCode\": \"\",\n        \"latitude\": \"\",\n        \"longitude\": \"\",\n        \"incidentAmbush\": \"\",\n        \"leoApproachSuspect\": \"\",\n        \"initialContactReason\": \"\",\n        \"forceResults\": \"\",\n        \"dontKnowRelatedIncidentCase\": \"\",\n        \"totalOfficersOwnAgencyApplyForce\": null,\n        \"dontKnowTotalOfficersOwnAgencyApplyForce\": \"\",\n        \"totalOfficersAllAgencyApplyForce\": null,\n        \"dontKnowTotalOfficersAllAgencyApplyForce\": \"\",\n        \"totalSuspectsDeceasedOrInjured\": null,\n        \"dontKnowTotalSuspectsDeceasedOrInjured\": \"\",\n        \"didOtherAgencyApplyForce\": false,\n        \"totalOtherAgencyApplyForce\": null,\n        \"otherAgencyCaseNumber\": \"\",\n        \"otherAgencyORI\": \"\",\n        \"dontKnowAddress\": \"\",\n        \"seniorOfficerPresent\": \"\",\n        \"seniorOfficerName\": \"\",\n        \"seniorOfficerNotifiedTime\": null,\n        \"seniorOfficerArrivedTime\": null,\n        \"incidentCategory\": \"\",\n        \"howmanyOfficersonCall\": \"\",\n        \"streetNumber\": \"\",\n        \"preDirectional\": \"\",\n        \"streetType\": \"\",\n        \"postDirectional\": \"\",\n        \"lethal\": false,\n        \"servicesRendered\": \"\",\n        \"primaryReferenceId\": null,\n        \"chemicals\": [],\n        \"ecds\": [],\n        \"firearms\": [],\n        \"hands\": [],\n        \"inmates\": [],\n        \"k9s\": [],\n        \"munitions\": [],\n        \"narratives\": [],\n        \"officers\": [],\n        \"properties\": [],\n        \"stopSticks\": [],\n        \"suspects\": [],\n        \"takedowns\": [],\n        \"vehicles\": [],\n        \"victims\": [],\n        \"weapons\": [],\n        \"witnesses\": [],\n        \"reviews\": [],\n        \"reviewFormValues\": [],\n        \"modifiedDate\": \"2013-06-15T14:12:12.063\",\n        \"createdDate\": \"2012-12-29T15:44:52.52\"\n    }\n]"},{"id":"f516539b-cd86-451f-9b66-f3428c9084da","name":"Invalid End Date","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"{{BaseUri}}/api/facts?start_date=10-20-2005&end_date=03-15-2025","host":["{{BaseUri}}"],"path":["api","facts"],"query":[{"key":"start_date","value":"10-20-2005","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2025","description":"Filter results to include only records before this date."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 18:58:47 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"End date cannot be greater than the current date!\"\n}"},{"id":"d164151c-27d9-4297-9fa8-18a3b53031f6","name":"Invalid Start Date","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/facts?start_date=10-20-2001&end_date=03-15-2022","host":["{{BaseUri}}"],"path":["api","facts"],"query":[{"key":"start_date","value":"10-20-2001","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2022","description":"Filter results to include only records before this date."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 18:59:58 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"Start date cannot be more than 20 years prior to the current date!\"\n}"}],"_postman_id":"be6ffd02-f512-444f-8754-7abe2d0cd1a6"},{"name":"Get Use of Force Incident","id":"6bf505bc-ed70-4207-b5d9-9e4f6b3441ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/facts/:incidentId","description":"<p>Get a detailed use of force incident with relationships based of the supplied Id. An error will be thrown if the supplied Id does not match any existing records. It is recommended you get the Id from the search API method.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","facts",":incidentId"],"host":["{{BaseUri}}"],"query":[],"variable":[{"description":{"content":"<p>The record Id of the desired Incident.</p>\n","type":"text/plain"},"type":"any","value":"17390","key":"incidentId"}]}},"response":[{"id":"d2e054c9-3133-4a7d-bad1-cea8dad48d5b","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/facts/:incidentId","host":["{{BaseUri}}"],"path":["api","facts",":incidentId"],"variable":[{"key":"incidentId","value":"17390","description":"The record Id of the desired Incident."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcZmFjdHNcMTczOTA=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Apr 2022 19:04:57 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"incidentId\": 17390,\n    \"creator\": \"\",\n    \"reviewer\": \"\",\n    \"creatorId\": 95474,\n    \"status\": \"InReview\",\n    \"fdleSubmissionStatus\": \"\",\n    \"incidentCaseNumber\": \"TestCase-001\",\n    \"relatedIncidentCase\": \"\",\n    \"incidentDate\": \"03/01/2022\",\n    \"incidentTime\": \"12:12:00\",\n    \"reportDate\": \"03/30/2022\",\n    \"reportTime\": \"16:38:00\",\n    \"incidentSupervisorNotified\": \"Yes\",\n    \"incidentSupervisorNumber\": \"\",\n    \"incidentSupervisorNotifiedTime\": \"12:12:00\",\n    \"incidentSupervisorArrivedTime\": \"13:12:00\",\n    \"incidentVideoAttached\": \"\",\n    \"incidentDocumentAttached\": \"\",\n    \"incidentAddress\": \"1234 Main Street\",\n    \"city\": \"Tampa\",\n    \"state\": \"FL\",\n    \"area\": \"District 731\",\n    \"district\": \"East\",\n    \"sector\": \"A-2\",\n    \"subsector\": \"Bravo - 1\",\n    \"locationTypeApartment\": false,\n    \"locationTypeResidence\": false,\n    \"locationTypeHotelMotel\": false,\n    \"locationTypeRestaurantBar\": false,\n    \"locationTypeParkingLot\": false,\n    \"locationTypeOpenField\": false,\n    \"locationTypeWoodedArea\": false,\n    \"locationTypeOther\": false,\n    \"lightingConditionsDaylight\": false,\n    \"lightingConditionsDusk\": false,\n    \"lightingConditionsDawn\": false,\n    \"lightingConditionsDarkLighted\": false,\n    \"lightingConditionsDarkNotLighted\": false,\n    \"lightingConditionsDarkUnknownLighting\": false,\n    \"lightingConditionsOther\": false,\n    \"weatherConditionsClear\": false,\n    \"weatherConditionsCloudy\": false,\n    \"weatherConditionsRain\": false,\n    \"weatherConditionsSnow\": false,\n    \"weatherConditionsWindy\": false,\n    \"weatherConditionsFogSmokeSmog\": false,\n    \"weatherConditionsSleetHail\": false,\n    \"weatherConditionsOther\": false,\n    \"locationType\": \"Camp/ Campground (42)\",\n    \"lightingCondition\": \"\",\n    \"weatherCondition\": \"\",\n    \"involvedOfficer\": true,\n    \"involvedSuspect\": true,\n    \"involvedVictim\": true,\n    \"involvedWitness\": true,\n    \"involvedVehicle\": true,\n    \"involvedProperty\": true,\n    \"involvedInmate\": true,\n    \"involvedNarrative\": true,\n    \"involvedSupervisorReview\": true,\n    \"responseToResistanceEcd\": true,\n    \"responseToResistanceChemicalAgents\": true,\n    \"responseToResistanceImpactWeapons\": true,\n    \"responseToResistanceImpactMunitions\": true,\n    \"responseToResistanceK9\": true,\n    \"responseToResistanceHands\": true,\n    \"responseToResistanceTakedowns\": true,\n    \"responseToResistanceFirearms\": true,\n    \"responseToResistanceStopsticks\": true,\n    \"responseToResistanceOther\": false,\n    \"supervisorName\": \"John T. Goodman\",\n    \"managerNotified\": \"\",\n    \"managerName\": \"\",\n    \"managerNotifiedTime\": null,\n    \"managerArrivedTime\": null,\n    \"reasonForUseOfForce\": \"Destroy Animal\",\n    \"reasonForUseOfForceOther\": \"\",\n    \"incidentType\": \"Burglary\",\n    \"incidentTypeOther\": \"\",\n    \"trackingId\": 24,\n    \"trackingYear\": 2022,\n    \"trackingNumber\": \"2022 - 24\",\n    \"subReportNumber\": null,\n    \"historical\": false,\n    \"oldCreatorName\": \"\",\n    \"routing\": \"Command Staff\",\n    \"deleteComments\": \"\",\n    \"reportType\": \"\",\n    \"nonEditable\": false,\n    \"sealed\": false,\n    \"searchNarrative\": \"\",\n    \"incidentAddress2\": \"\",\n    \"zipCode\": \"\",\n    \"latitude\": \"\",\n    \"longitude\": \"\",\n    \"incidentAmbush\": \"\",\n    \"leoApproachSuspect\": \"\",\n    \"initialContactReason\": \"\",\n    \"forceResults\": \"\",\n    \"dontKnowRelatedIncidentCase\": \"\",\n    \"totalOfficersOwnAgencyApplyForce\": null,\n    \"dontKnowTotalOfficersOwnAgencyApplyForce\": \"\",\n    \"totalOfficersAllAgencyApplyForce\": null,\n    \"dontKnowTotalOfficersAllAgencyApplyForce\": \"\",\n    \"totalSuspectsDeceasedOrInjured\": null,\n    \"dontKnowTotalSuspectsDeceasedOrInjured\": \"\",\n    \"didOtherAgencyApplyForce\": false,\n    \"totalOtherAgencyApplyForce\": null,\n    \"otherAgencyCaseNumber\": \"\",\n    \"otherAgencyORI\": \"\",\n    \"dontKnowAddress\": \"\",\n    \"seniorOfficerPresent\": \"\",\n    \"seniorOfficerName\": \"\",\n    \"seniorOfficerNotifiedTime\": null,\n    \"seniorOfficerArrivedTime\": null,\n    \"incidentCategory\": \"\",\n    \"howmanyOfficersonCall\": \"\",\n    \"streetNumber\": \"\",\n    \"preDirectional\": \"\",\n    \"streetType\": \"\",\n    \"postDirectional\": \"\",\n    \"lethal\": false,\n    \"servicesRendered\": \"\",\n    \"primaryReferenceId\": null,\n    \"chemicals\": [\n        {\n            \"chemicalId\": 17156,\n            \"incidentId\": 17390,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"chemicalAgentTypeUsed\": \"MK-9 Handheld\",\n            \"chemicalSerialNumber\": \"\",\n            \"chemicalLotNumber\": \"\",\n            \"chemicalDurationOfSprayInSeconds1\": \"2 seconds\",\n            \"chemicalDurationOfSprayInSeconds2\": \"\",\n            \"chemicalDurationOfSprayInSeconds3\": \"\",\n            \"chemicalDurationOfSprayInSeconds4\": \"\",\n            \"chemicalDurationOfSprayInSeconds5\": \"\",\n            \"chemicalDurationOfSprayInSeconds6\": \"\",\n            \"chemicalDurationOfSprayInSeconds7\": \"\",\n            \"chemicalDurationOfSprayInSeconds8\": \"\",\n            \"chemicalDurationOfSprayInSeconds9\": \"\",\n            \"chemicalDurationOfSprayInSeconds10\": \"\",\n            \"chemicalDurationOfSprayInSeconds11\": \"\",\n            \"chemicalDurationOfSprayInSeconds12\": \"\",\n            \"chemicalDurationOfSprayInSeconds13\": \"\",\n            \"chemicalDurationOfSprayInSeconds14\": \"\",\n            \"chemicalDurationOfSprayInSeconds15\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect1\": \"16-20 feet\",\n            \"chemicalDistanceSprayDeployedFromSuspect2\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect3\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect4\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect5\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect6\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect7\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect8\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect9\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect10\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect11\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect12\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect13\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect14\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect15\": \"\",\n            \"chemicalBodyPartsSprayed1\": \"Face\",\n            \"chemicalBodyPartsSprayed2\": \"\",\n            \"chemicalBodyPartsSprayed3\": \"\",\n            \"chemicalBodyPartsSprayed4\": \"\",\n            \"chemicalBodyPartsSprayed5\": \"\",\n            \"chemicalBodyPartsSprayed6\": \"\",\n            \"chemicalBodyPartsSprayed7\": \"\",\n            \"chemicalBodyPartsSprayed8\": \"\",\n            \"chemicalBodyPartsSprayed9\": \"\",\n            \"chemicalBodyPartsSprayed10\": \"\",\n            \"chemicalBodyPartsSprayed11\": \"\",\n            \"chemicalBodyPartsSprayed12\": \"\",\n            \"chemicalBodyPartsSprayed13\": \"\",\n            \"chemicalBodyPartsSprayed14\": \"\",\n            \"chemicalBodyPartsSprayed15\": \"\",\n            \"chemicalSuspectDecontaminated\": \"Yes\",\n            \"chemicalSuspectDecontaminatedTime\": \"12:12:00\",\n            \"chemicalSuspectDecontaminatedBy\": \"The Decontaminator\",\n            \"chemicalHowSuspectDecontaminated\": \"Eye Drops\",\n            \"chemicalSuspectCompliedAfter\": \"No\",\n            \"sprayDuration\": 1,\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"chemicalOnlyDisplayed\": \"No\",\n            \"structure\": \"\",\n            \"primaryReferenceId\": null,\n            \"chemicalPointsOfContact\": [\n                {\n                    \"chemicalPointOfContactId\": 9071,\n                    \"chemicalId\": 17156,\n                    \"pointType\": \"Neck\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1555462\",\n                    \"createdDate\": \"2022-03-31T08:40:29.1226425\"\n                },\n                {\n                    \"chemicalPointOfContactId\": 9072,\n                    \"chemicalId\": 17156,\n                    \"pointType\": \"Face\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1555452\",\n                    \"createdDate\": \"2022-03-31T08:40:29.1127161\"\n                }\n            ],\n            \"modifiedDate\": \"2022-03-31T10:27:10.1555396\",\n            \"createdDate\": \"2022-03-31T08:39:19.2020386\"\n        }\n    ],\n    \"ecds\": [\n        {\n            \"ecdId\": 17158,\n            \"incidentId\": 17390,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"ecdDeploymentType\": \"Probes\",\n            \"ecdSerialNumber\": \"\",\n            \"ecdCartridgeNumber1\": \"\",\n            \"ecdCartridgeNumber2\": \"\",\n            \"ecdContactMade\": \"Yes\",\n            \"ecdNumberofContactsMade\": \"\",\n            \"ecdDeploymentDuration1\": \"4-6 sec\",\n            \"ecdDeploymentDistance1\": \"4-9 feet\",\n            \"ecdProbe1Connected1\": \"Yes\",\n            \"ecdProbe2Connected1\": \"No\",\n            \"ecdDeploymentDuration2\": \"10-12 sec\",\n            \"ecdDeploymentDistance2\": \"10-15 feet\",\n            \"ecdProbe1Connected2\": \"Yes\",\n            \"ecdProbe2Connected2\": \"Yes\",\n            \"ecdDeploymentDuration3\": \"\",\n            \"ecdDeploymentDistance3\": \"\",\n            \"ecdProbe1Connected3\": \"\",\n            \"ecdProbe2Connected3\": \"\",\n            \"ecdDeploymentDuration4\": \"\",\n            \"ecdDeploymentDistance4\": \"\",\n            \"ecdProbe1Connected4\": \"\",\n            \"ecdProbe2Connected4\": \"\",\n            \"ecdDeploymentDuration5\": \"\",\n            \"ecdDeploymentDistance5\": \"\",\n            \"ecdProbe1Connected5\": \"\",\n            \"ecdProbe2Connected5\": \"\",\n            \"ecdDeploymentDuration6\": \"\",\n            \"ecdDeploymentDistance6\": \"\",\n            \"ecdProbe1Connected6\": \"\",\n            \"ecdProbe2Connected6\": \"\",\n            \"ecdDeploymentDuration7\": \"\",\n            \"ecdDeploymentDistance7\": \"\",\n            \"ecdProbe1Connected7\": \"\",\n            \"ecdProbe2Connected7\": \"\",\n            \"ecdDeploymentDuration8\": \"\",\n            \"ecdDeploymentDistance8\": \"\",\n            \"ecdProbe1Connected8\": \"\",\n            \"ecdProbe2Connected8\": \"\",\n            \"ecdDeploymentDuration9\": \"\",\n            \"ecdDeploymentDistance9\": \"\",\n            \"ecdProbe1Connected9\": \"\",\n            \"ecdProbe2Connected9\": \"\",\n            \"ecdDeploymentDuration10\": \"\",\n            \"ecdDeploymentDistance10\": \"\",\n            \"ecdProbe1Connected10\": \"\",\n            \"ecdProbe2Connected10\": \"\",\n            \"ecdDeploymentDuration11\": \"\",\n            \"ecdDeploymentDistance11\": \"\",\n            \"ecdProbe1Connected11\": \"\",\n            \"ecdProbe2Connected11\": \"\",\n            \"ecdDeploymentDuration12\": \"\",\n            \"ecdDeploymentDistance12\": \"\",\n            \"ecdProbe1Connected12\": \"\",\n            \"ecdProbe2Connected12\": \"\",\n            \"ecdDeploymentDuration13\": \"\",\n            \"ecdDeploymentDistance13\": \"\",\n            \"ecdProbe1Connected13\": \"\",\n            \"ecdProbe2Connected13\": \"\",\n            \"ecdDeploymentDuration14\": \"\",\n            \"ecdDeploymentDistance14\": \"\",\n            \"ecdProbe1Connected14\": \"\",\n            \"ecdProbe2Connected14\": \"\",\n            \"ecdDeploymentDuration15\": \"\",\n            \"ecdDeploymentDistance15\": \"\",\n            \"ecdProbe1Connected15\": \"\",\n            \"ecdProbe2Connected15\": \"\",\n            \"ecdProbePenetratedSuspectSkin\": \"Yes\",\n            \"ecdProbesRemovedBy\": \"Officer Jimmy\",\n            \"ecdSuspectCompliedAfter\": \"Yes\",\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"deploymentFrequency\": 2,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"ecdOnlyDisplayed\": \"No\",\n            \"suspectIncapacitated\": \"\",\n            \"primaryReferenceId\": null,\n            \"ecdPointOfContact\": [\n                {\n                    \"ecdPointOfContactId\": 9072,\n                    \"ecdId\": 17158,\n                    \"pointType\": \"Forearm (back/left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.15551\",\n                    \"createdDate\": \"2022-03-31T08:32:29.6557426\"\n                },\n                {\n                    \"ecdPointOfContactId\": 9073,\n                    \"ecdId\": 17158,\n                    \"pointType\": \"Upper Arm(right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1555082\",\n                    \"createdDate\": \"2022-03-31T08:32:29.6492869\"\n                },\n                {\n                    \"ecdPointOfContactId\": 9074,\n                    \"ecdId\": 17158,\n                    \"pointType\": \"Forearm (front/left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1555093\",\n                    \"createdDate\": \"2022-03-31T08:32:29.6556623\"\n                }\n            ],\n            \"modifiedDate\": \"2022-03-31T10:27:10.1555022\",\n            \"createdDate\": \"2022-03-31T08:29:48.0305239\"\n        }\n    ],\n    \"firearms\": [\n        {\n            \"firearmId\": 16092,\n            \"incidentId\": 17390,\n            \"firearmDisplayedOnly\": \"No\",\n            \"firearmSuspectCompliedAfter\": \"\",\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"firearmMake\": \"Glock\",\n            \"firearmModel\": \"Shootmaster17\",\n            \"firearmSerialNumber\": \"AB123456\",\n            \"firearmDepartmentIssued\": \"Yes\",\n            \"firearmPurpose\": \"Primary\",\n            \"firearmNumberOfShotsFired\": \"\",\n            \"firearmShootingPosition\": \"\",\n            \"firearmStrongHandUsed\": \"Yes\",\n            \"firearmWeakHandUsed\": \"No\",\n            \"firearmReload\": \"\",\n            \"firearmAmmoMake\": \"10mm\",\n            \"firearmMalfunction\": \"\",\n            \"firearmOfficerConcealment\": \"From concealment.\",\n            \"firearmOfficerCover\": \"Under cover.\",\n            \"pointsOfContact\": \"\",\n            \"deployedByOfficer\": \"\",\n            \"deployedAtSuspect\": \"\",\n            \"accidentalDischarge\": \"\",\n            \"negligentDischarge\": \"\",\n            \"numberOfShotsFired\": \"02\",\n            \"distanceOfShotsfired\": \"\",\n            \"handUsedForFiring\": \"Both\",\n            \"shootingPosition\": \"Kneeling\",\n            \"wasIssuedWeaponUsed\": \"Yes\",\n            \"didOfficerHaveToReload\": \"Yes\",\n            \"firedBehindCover\": \"Yes\",\n            \"firedFromConcealment\": \"Yes\",\n            \"wasFirearmUnloaded\": \"\",\n            \"didFirearmMalfunction\": \"No\",\n            \"wasFirearmUnholstered\": \"\",\n            \"suspectComplyAfterFirearmUsed\": \"Yes\",\n            \"shotDistance\": \"02:1 foot,1-3 feet\",\n            \"pointsOfContact1\": \"\",\n            \"firearmUseSuspectCompliedAfter\": \"\",\n            \"didOfficerDischargeWeapon\": \"\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"primaryReferenceId\": null,\n            \"firearmPointsOfContact\": [\n                {\n                    \"firearmPointOfContactId\": 8025,\n                    \"firearmId\": 16092,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1558017\",\n                    \"createdDate\": \"2022-03-31T10:22:16.9349977\"\n                },\n                {\n                    \"firearmPointOfContactId\": 8026,\n                    \"firearmId\": 16092,\n                    \"pointType\": \"Stomach\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1558033\",\n                    \"createdDate\": \"2022-03-31T10:22:16.9461693\"\n                },\n                {\n                    \"firearmPointOfContactId\": 8027,\n                    \"firearmId\": 16092,\n                    \"pointType\": \"Groin\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1558041\",\n                    \"createdDate\": \"2022-03-31T10:22:16.9463278\"\n                }\n            ],\n            \"modifiedDate\": \"2022-03-31T10:27:10.1557198\",\n            \"createdDate\": \"2022-03-31T10:19:31.2143932\"\n        }\n    ],\n    \"hands\": [\n        {\n            \"handId\": 4004,\n            \"incidentId\": 17390,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"handsTypeUsed\": \"Hands type 1\",\n            \"handsSuspectCompliedAfter\": \"No\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"handOnlyDisplayed\": \"\",\n            \"totalNumberOfStrikes\": \"\",\n            \"primaryReferenceId\": null,\n            \"handPointsOfContact\": [\n                {\n                    \"handPointOfContactId\": 2003,\n                    \"handId\": 4004,\n                    \"pointType\": \"Head\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556672\",\n                    \"createdDate\": \"2022-03-31T10:10:21.7260934\"\n                },\n                {\n                    \"handPointOfContactId\": 2004,\n                    \"handId\": 4004,\n                    \"pointType\": \"Upper Arm(left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556662\",\n                    \"createdDate\": \"2022-03-31T10:10:21.706868\"\n                }\n            ],\n            \"modifiedDate\": \"2022-03-31T10:27:10.1556615\",\n            \"createdDate\": \"2022-03-31T10:09:59.2724364\"\n        }\n    ],\n    \"inmates\": [\n        {\n            \"inmateId\": 10091,\n            \"incidentId\": 17390,\n            \"suspectName\": \"\",\n            \"inmateNumber\": \"645\",\n            \"inmateDetentionFacility\": \"Juvenile Detention\",\n            \"officerName\": \"\",\n            \"restraintsUsed\": \"One-Piece Restraints\",\n            \"restraintsUsedOther\": \"\",\n            \"reasonForceWasApplied\": \"Prevent Escape\",\n            \"reasonForceWasAppliedOther\": \"\",\n            \"restrainedHours\": \"11\",\n            \"restrainedMinute\": \"45\",\n            \"inmateHaveWeapon\": \"Yes\",\n            \"cell\": \"In the cell\",\n            \"nonEditable\": false,\n            \"inmateDetentionClassification\": \"\",\n            \"suspectBookingNumber\": \"\",\n            \"jailViolations\": \"\",\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-03-31T10:27:10.1554781\",\n            \"createdDate\": \"2022-03-31T08:26:24.139984\"\n        }\n    ],\n    \"k9s\": [\n        {\n            \"k9Id\": 11076,\n            \"incidentId\": 17390,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"k9name\": \"Fluffy\",\n            \"k9breed\": \"German Shepherd\",\n            \"k9type\": \"Cross Certified\",\n            \"k9typeOtherDescription\": \"\",\n            \"k9reasonDeployed\": \"Citizen Protection\",\n            \"k9nnumberBites\": \"02\",\n            \"k9suspectCompliedAfter\": \"No\",\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"k9OnlyDisplayed\": \"No\",\n            \"k9Category\": \"\",\n            \"primaryReferenceId\": null,\n            \"k9PointOfContactId\": [\n                {\n                    \"k9PointOfContactId\": 4022,\n                    \"k9Id\": 11076,\n                    \"pointType\": \"Face\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556388\",\n                    \"createdDate\": \"2022-03-31T10:07:25.3513747\"\n                },\n                {\n                    \"k9PointOfContactId\": 4023,\n                    \"k9Id\": 11076,\n                    \"pointType\": \"Head\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556401\",\n                    \"createdDate\": \"2022-03-31T10:07:25.3594875\"\n                }\n            ],\n            \"modifiedDate\": \"2022-03-31T10:27:10.155634\",\n            \"createdDate\": \"2022-03-31T10:06:22.9930873\"\n        }\n    ],\n    \"munitions\": [\n        {\n            \"munitionId\": 4016,\n            \"incidentId\": 17390,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"munitionSuspectHit\": \"Yes\",\n            \"munitionWeaponMake\": \"Impact munitions weapon make 1\",\n            \"munitionSerialNumber\": \"D123456\",\n            \"munitionDeploymentType\": \"Impact munitions deployment type 1\",\n            \"munitionExactImpact\": \"Yes\",\n            \"munitionContactMade\": \"Yes\",\n            \"munitionDeploymentDistance1\": \"3-5 feet\",\n            \"munitionNumberOfRounds1\": \"02\",\n            \"munitionCaliberUsed1\": \"Caliber 2\",\n            \"munitionDeploymentDistance2\": \"16-20 feet\",\n            \"munitionNumberOfRounds2\": \"01\",\n            \"munitionCaliberUsed2\": \"Caliber 1\",\n            \"munitionDeploymentDistance3\": \"\",\n            \"munitionNumberOfRounds3\": \"\",\n            \"munitionCaliberUsed3\": \"\",\n            \"munitionDeploymentDistance4\": \"\",\n            \"munitionNumberOfRounds4\": \"\",\n            \"munitionCaliberUsed4\": \"\",\n            \"munitionDeploymentDistance5\": \"\",\n            \"munitionNumberOfRounds5\": \"\",\n            \"munitionCaliberUsed5\": \"\",\n            \"munitionDeploymentDistance6\": \"\",\n            \"munitionNumberOfRounds6\": \"\",\n            \"munitionCaliberUsed6\": \"\",\n            \"munitionDeploymentDistance7\": \"\",\n            \"munitionNumberOfRounds7\": \"\",\n            \"munitionCaliberUsed7\": \"\",\n            \"munitionDeploymentDistance8\": \"\",\n            \"munitionNumberOfRounds8\": \"\",\n            \"munitionCaliberUsed8\": \"\",\n            \"munitionDeploymentDistance9\": \"\",\n            \"munitionNumberOfRounds9\": \"\",\n            \"munitionCaliberUsed9\": \"\",\n            \"munitionDeploymentDistance10\": \"\",\n            \"munitionNumberOfRounds10\": \"\",\n            \"munitionCaliberUsed10\": \"\",\n            \"munitionDeploymentDistance11\": \"\",\n            \"munitionNumberOfRounds11\": \"\",\n            \"munitionCaliberUsed11\": \"\",\n            \"munitionDeploymentDistance12\": \"\",\n            \"munitionNumberOfRounds12\": \"\",\n            \"munitionCaliberUsed12\": \"\",\n            \"munitionCaliberUsed13\": \"\",\n            \"munitionDeploymentDistance13\": \"\",\n            \"munitionNumberOfRounds13\": \"\",\n            \"munitionCaliberUsed14\": \"\",\n            \"munitionDeploymentDistance14\": \"\",\n            \"munitionNumberOfRounds14\": \"\",\n            \"munitionCaliberUsed15\": \"\",\n            \"munitionDeploymentDistance15\": \"\",\n            \"munitionNumberOfRounds15\": \"\",\n            \"munitionSuspectCompliedAfter\": \"No\",\n            \"deploymentFrequency\": 2,\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"munitionOnlyDisplayed\": \"No\",\n            \"primaryReferenceId\": null,\n            \"munitionPointsOfContact\": [\n                {\n                    \"munitionPointOfContactId\": 2006,\n                    \"munitionId\": 4016,\n                    \"pointType\": \"Hamstring (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556094\",\n                    \"createdDate\": \"2022-03-31T10:03:26.807794\"\n                },\n                {\n                    \"munitionPointOfContactId\": 2007,\n                    \"munitionId\": 4016,\n                    \"pointType\": \"Hand (left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556085\",\n                    \"createdDate\": \"2022-03-31T10:03:26.8076683\"\n                },\n                {\n                    \"munitionPointOfContactId\": 2008,\n                    \"munitionId\": 4016,\n                    \"pointType\": \"Thigh (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556077\",\n                    \"createdDate\": \"2022-03-31T10:03:26.8074169\"\n                },\n                {\n                    \"munitionPointOfContactId\": 2009,\n                    \"munitionId\": 4016,\n                    \"pointType\": \"Palm (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556067\",\n                    \"createdDate\": \"2022-03-31T10:03:26.7950936\"\n                }\n            ],\n            \"modifiedDate\": \"2022-03-31T10:27:10.1556017\",\n            \"createdDate\": \"2022-03-31T10:02:16.7749472\"\n        }\n    ],\n    \"narratives\": [\n        {\n            \"narrativeId\": 16222,\n            \"incidentId\": 17390,\n            \"narrative\": \"This is one great narrative.\",\n            \"nonEditable\": false,\n            \"modifiedDate\": \"2022-03-31T10:27:10.1605455\",\n            \"createdDate\": \"2022-03-30T16:38:53.7344588\"\n        }\n    ],\n    \"officers\": [\n        {\n            \"incidentOfficerId\": 17379,\n            \"incidentId\": 17390,\n            \"officerId\": \"1\",\n            \"firstName\": \"Durand\",\n            \"middleName\": \"\",\n            \"lastName\": \"Peterson\",\n            \"officerPrimary\": \"Yes\",\n            \"officerOnDuty\": \"Yes\",\n            \"officerPermanentAssignment\": \"North Sector\",\n            \"officerInUniform\": \"Yes\",\n            \"address\": \"\",\n            \"city\": \"\",\n            \"state\": \"\",\n            \"race\": \"Native Hawaiian or Other Pacific Islander\",\n            \"gender\": \"Male\",\n            \"dateOfBirth\": \"\",\n            \"age\": \"35\",\n            \"height\": \"5ft 4in\",\n            \"weight\": \"150\",\n            \"build\": \"\",\n            \"officerYearsWithAgency\": \"12\",\n            \"officerTotalYearsInLawEnforcement\": \"12\",\n            \"education\": \"16\",\n            \"officerInjured\": \"Yes\",\n            \"officerInjuryType\": \"Gunshot\",\n            \"officerInjurySeverity\": \"Fatal injury\",\n            \"officerHowInjuryOccurred\": \"Other Suspect\",\n            \"officerMedicalTreatmentReceived\": \"Yes\",\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\n            \"officerTransported\": \"Yes\",\n            \"officerTransportedBy\": \"EMS\",\n            \"officerTransportedTo\": \"The Hospital\",\n            \"officerTransportedTime\": \"12:12:00\",\n            \"officerInjuryPhotos\": \"\",\n            \"officerInjuryPhotosTakenBy\": \"\",\n            \"pointsOfContact\": \"\",\n            \"cit\": \"\",\n            \"nonEditable\": false,\n            \"deescalation\": \"Maximized the use of cover or concealment to reduce exposure to potential threats by placing the officer in a safer position\",\n            \"bodyWornCamera\": \"Yes\",\n            \"activated\": \"Yes\",\n            \"didOfficerUseForce\": \"\",\n            \"employmentFullTime\": \"\",\n            \"dontKnowAge\": \"\",\n            \"dontKnowHeight\": \"\",\n            \"dontKnowWeight\": \"\",\n            \"dontKnowYearsOfService\": \"\",\n            \"leoInjuredNIBRSIncidentNumber\": \"\",\n            \"dontKnowLEOInjuredNIBRSIncidentNumber\": \"\",\n            \"officerMedicalTreatmentReceivedByDropdown\": \"\",\n            \"officerTransportedByDropDown\": \"\",\n            \"officerTransportedToDropDown\": \"\",\n            \"primaryReferenceId\": null,\n            \"officerPointsOfContact\": [\n                {\n                    \"officerPointOfContactId\": 4108,\n                    \"officerId\": 17379,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553148\",\n                    \"createdDate\": \"2022-03-31T07:27:07.9672071\"\n                },\n                {\n                    \"officerPointOfContactId\": 4109,\n                    \"officerId\": 17379,\n                    \"pointType\": \"Upper Back\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553234\",\n                    \"createdDate\": \"2022-03-31T07:27:07.9838475\"\n                },\n                {\n                    \"officerPointOfContactId\": 4110,\n                    \"officerId\": 17379,\n                    \"pointType\": \"Lower Back\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553243\",\n                    \"createdDate\": \"2022-03-31T07:27:07.9839961\"\n                }\n            ],\n            \"victimRelationshipsToOfficer\": [\n                {\n                    \"victimsRelationshipToOfficerId\": 8065,\n                    \"victimId\": 9058,\n                    \"officerId\": 17379,\n                    \"victimRelationshipToPrimaryOfficer\": \"Not Applicable\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553742\",\n                    \"createdDate\": \"2022-03-31T07:55:38.1119273\"\n                }\n            ],\n            \"witnessRelationshipsToOfficer\": [\n                {\n                    \"witnessRelationshiptoOfficerId\": 8081,\n                    \"witnessId\": 9072,\n                    \"officerId\": 17379,\n                    \"witnessRelationshipToPrimaryOfficer\": \"Student\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1554101\",\n                    \"createdDate\": \"2022-03-31T08:10:38.2610567\"\n                }\n            ],\n            \"modifiedDate\": \"2022-03-31T10:27:10.1553081\",\n            \"createdDate\": \"2022-03-30T16:38:53.730113\"\n        }\n    ],\n    \"properties\": [\n        {\n            \"propertyId\": 5023,\n            \"incidentId\": 17390,\n            \"owner\": \"Sara Smith (Witness)\",\n            \"propertyType\": \"LEGO Collection\",\n            \"propertyValue\": \"5.36\",\n            \"propertyOwnerName\": \"\",\n            \"propertyOwnerAddress\": \"\",\n            \"city\": \"\",\n            \"state\": \"\",\n            \"propertyOwnerEmail\": \"\",\n            \"propertyOwnerPhone1\": \"\",\n            \"propertyOwnerPhone2\": \"\",\n            \"race\": \"\",\n            \"gender\": \"\",\n            \"propertyOwnerDateOfBirth\": \"\",\n            \"age\": \"\",\n            \"nonEditable\": false,\n            \"propertyCategory\": \"\",\n            \"propertyMethod\": \"\",\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-03-31T10:27:10.155458\",\n            \"createdDate\": \"2022-03-31T08:24:50.1622924\"\n        }\n    ],\n    \"stopSticks\": [\n        {\n            \"stopStickId\": 9070,\n            \"incidentId\": 17390,\n            \"officerName\": \"Durand Peterson\",\n            \"vehicleType\": \"Car\",\n            \"vehicleMake\": \"Mercury\",\n            \"vehicleModel\": \"Hooptie\",\n            \"vehicleYear\": \"1992\",\n            \"vehicleTag\": \"FL1234\",\n            \"stopstickOfficerTrainedInTechnique\": \"Yes\",\n            \"stopstickInvolvedStopSticksUsed\": \"Yes\",\n            \"stopstickPitManeuverUsed\": \"Yes\",\n            \"stopstickBoxinTechniqueUsed\": \"Yes\",\n            \"interventionUsed\": \"Intervention Used\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"stopstickOnlyDisplayed\": \"\",\n            \"state\": \"FL\",\n            \"primaryReferenceId\": null,\n            \"stopStickInfo\": [\n                {\n                    \"stopStickInfoId\": 8057,\n                    \"stopStickId\": 9070,\n                    \"stopstickInvolvedStopStickNumber\": \"Stick of Justice\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.159785\",\n                    \"createdDate\": \"2022-03-31T10:26:43.8557914\"\n                },\n                {\n                    \"stopStickInfoId\": 8058,\n                    \"stopStickId\": 9070,\n                    \"stopstickInvolvedStopStickNumber\": \"Stick of Truth\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1597918\",\n                    \"createdDate\": \"2022-03-31T10:26:54.2577357\"\n                }\n            ],\n            \"modifiedDate\": \"2022-03-31T10:27:10.1579897\",\n            \"createdDate\": \"2022-03-31T10:25:48.1043358\"\n        }\n    ],\n    \"suspects\": [\n        {\n            \"suspectId\": 16291,\n            \"incidentId\": 17390,\n            \"firstName\": \"John\",\n            \"middleName\": \"Jason\",\n            \"lastName\": \"Smith\",\n            \"suspectAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"race\": \"White\",\n            \"gender\": \"Male\",\n            \"suspectDateOfBirth\": \"03/01/1980\",\n            \"age\": \"\",\n            \"height\": \"5ft 6in\",\n            \"weight\": \" 171-180\",\n            \"build\": \"Thin\",\n            \"education\": \"\",\n            \"suspectActionsPresence\": true,\n            \"suspectActionsPassiveResistance\": true,\n            \"suspectActionsVerbalResistance\": true,\n            \"suspectActionsActiveAggression\": true,\n            \"suspectActionsAggressivePhysical\": true,\n            \"suspectActionsAggravatedPhysical\": true,\n            \"suspectActionsOther\": false,\n            \"suspectOfficersResponsePresence\": true,\n            \"suspectOfficersResponsePassiveResistance\": true,\n            \"suspectOfficersResponseVerbalResistance\": true,\n            \"suspectOfficersResponseAggression\": true,\n            \"suspectOfficersResponseAggravatedPhysical\": true,\n            \"suspectOfficersResponseOther\": false,\n            \"suspectOfficersResponseLevel7\": null,\n            \"suspectOfficersResponseLevel8\": null,\n            \"suspectWeaponUsedHands\": true,\n            \"suspectWeaponUsedBluntObject\": true,\n            \"suspectWeaponUsedEdgedObject\": true,\n            \"suspectWeaponUsedFirearm\": true,\n            \"suspectWeaponUsedOther\": true,\n            \"suspectArrested\": \"Yes\",\n            \"suspectWhyNotArrested\": \"\",\n            \"suspectArrestCharge\": \"28-1911 Failure to yield\",\n            \"suspectArrestedForFelony\": \"\",\n            \"suspectArresteeDeliveredTo\": \"\",\n            \"suspectJailNumber\": \"\",\n            \"suspectConditionPriorMellow\": false,\n            \"suspectConditionPriorDepressed\": false,\n            \"suspectConditionPriorAngry\": false,\n            \"suspectConditionPriorDisoriented\": true,\n            \"suspectConditionPriorDrugs\": true,\n            \"suspectConditionPriorAlcohol\": false,\n            \"suspectConditionPriorFighting\": false,\n            \"suspectConditionPriorOther\": false,\n            \"suspectConditionPostMellow\": true,\n            \"suspectConditionPostDepressed\": true,\n            \"suspectConditionPostAngry\": false,\n            \"suspectConditionPostDisoriented\": false,\n            \"suspectConditionPostDrugs\": false,\n            \"suspectConditionPostAlcohol\": false,\n            \"suspectConditionPostFighting\": false,\n            \"suspectConditionPostOther\": false,\n            \"suspectConditionPriorComment\": \"\",\n            \"suspectConditionPostComment\": \"\",\n            \"suspectInjured\": \"Yes\",\n            \"suspectInjuryType\": \"Gunshot\",\n            \"suspectInjurySeverity\": \"Fatal\",\n            \"howInjuryOccurredToSuspect\": \"Other Suspect\",\n            \"medicalTreatmentOfSuspect\": \"Yes\",\n            \"medicalTreatmentOfSuspectBy\": \"The Doctor\",\n            \"suspectTransported\": \"Yes\",\n            \"suspectTransportedBy\": \"EMS\",\n            \"suspectTransportedTo\": \"The Hospital\",\n            \"suspectTransportedTime\": \"12:12:00\",\n            \"suspectInjuryPhotos\": \"\",\n            \"suspectInjuryPhotosTakenBy\": \"\",\n            \"pointsOfContact\": \"\",\n            \"suspectExhibitsSignsofExcitedDelirium\": \"Yes\",\n            \"deliriumSignsDisplayed\": \"Incoherent Speech\",\n            \"suspectShowedSignsofMentalIllness\": \"Yes\",\n            \"showedSignsMentalIllness\": \"Depression\",\n            \"showedSignsMentalIllnessothers\": \"\",\n            \"rank1\": 1,\n            \"rank2\": 2,\n            \"rank3\": 4,\n            \"rank4\": 3,\n            \"rank5\": 6,\n            \"rank6\": 5,\n            \"rank7\": null,\n            \"rank8\": 1,\n            \"rank9\": 2,\n            \"rank10\": 5,\n            \"rank11\": 3,\n            \"rank12\": 4,\n            \"rank13\": null,\n            \"rank14\": null,\n            \"rank15\": null,\n            \"comments\": \"\",\n            \"nonEditable\": false,\n            \"arrestDate\": \"03/06/2022\",\n            \"arrestTime\": \"12:12:00\",\n            \"suspectForceCategory\": \"\",\n            \"suspectResistedType\": \"\",\n            \"suspectThreatPerson\": \"\",\n            \"estimatedAgeRange\": \"\",\n            \"dontKnowAge\": \"\",\n            \"knownImpairment\": \"\",\n            \"knownImpairmentType\": \"\",\n            \"suspectResisted\": \"\",\n            \"suspectArmed\": \"\",\n            \"dontKnowCharges\": \"\",\n            \"ethnicity\": \"\",\n            \"suspectTransportedByDropDown\": \"\",\n            \"suspectTransportedToDropDown\": \"\",\n            \"threatFactors\": \"\",\n            \"deEscalation\": \"\",\n            \"suspectWeaponUsedOption6\": null,\n            \"suspectWeaponUsedOption7\": null,\n            \"suspectWeaponUsedOption8\": null,\n            \"suspectWeaponUsedOption9\": null,\n            \"suspectDisabilities\": \"\",\n            \"knowledgeofSuspectDisability\": \"\",\n            \"mobilityDevices\": \"\",\n            \"remoteInterpreterUsed\": \"\",\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\n            \"suspectCategory\": \"\",\n            \"suffix\": \"\",\n            \"genderIdentify\": \"\",\n            \"inmateNumber\": \"\",\n            \"custodyLocation\": \"\",\n            \"civilianDistance\": \"\",\n            \"civilianResistance\": \"\",\n            \"primaryReferenceId\": null,\n            \"suspectPointsOfContact\": [\n                {\n                    \"suspectPointOfContactId\": 9202,\n                    \"suspectId\": 16291,\n                    \"pointType\": \"Face\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1552525\",\n                    \"createdDate\": \"2022-03-31T07:51:55.762061\"\n                },\n                {\n                    \"suspectPointOfContactId\": 9203,\n                    \"suspectId\": 16291,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1552539\",\n                    \"createdDate\": \"2022-03-31T07:51:55.7712345\"\n                },\n                {\n                    \"suspectPointOfContactId\": 9204,\n                    \"suspectId\": 16291,\n                    \"pointType\": \"Upper Arm (back/left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1552548\",\n                    \"createdDate\": \"2022-03-31T07:51:55.7713131\"\n                },\n                {\n                    \"suspectPointOfContactId\": 9205,\n                    \"suspectId\": 16291,\n                    \"pointType\": \"Heel (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1552559\",\n                    \"createdDate\": \"2022-03-31T07:51:55.7713485\"\n                }\n            ],\n            \"victimsRelationshipToSuspects\": [\n                {\n                    \"victimRelationshipToSuspectId\": 8078,\n                    \"victimId\": 9058,\n                    \"suspectId\": 16291,\n                    \"victimRelationshipToSuspect\": \"Friend\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553785\",\n                    \"createdDate\": \"2022-03-31T07:55:38.1255588\"\n                }\n            ],\n            \"witnessesRelationshipToSuspects\": [\n                {\n                    \"witnessRelationshipToSuspectId\": 8066,\n                    \"witnessId\": 9072,\n                    \"suspectId\": 16291,\n                    \"witnessRelationshipToSuspect\": \"Grandchild\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1554144\",\n                    \"createdDate\": \"2022-03-31T08:10:38.2719561\"\n                }\n            ],\n            \"suspectChargeClassifications\": [\n                {\n                    \"suspectChargeClassificationId\": 4089,\n                    \"suspectId\": 16291,\n                    \"charge\": \"28-1911 Failure to yield\",\n                    \"chargeClasification1\": false,\n                    \"chargeClasification2\": true,\n                    \"chargeClasification3\": false,\n                    \"chargeClasification4\": false,\n                    \"chargeClasification5\": false,\n                    \"chargeClasification6\": \"\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1552747\",\n                    \"createdDate\": \"2022-03-31T07:46:55.2992666\"\n                }\n            ],\n            \"modifiedDate\": \"2022-03-31T10:27:10.1552441\",\n            \"createdDate\": \"2022-03-31T07:38:33.8188774\"\n        }\n    ],\n    \"takedowns\": [\n        {\n            \"takedownId\": 11069,\n            \"incidentId\": 17390,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"takedownTypeUsed\": \"Leg Sweep\",\n            \"takedownSuspectCompliedAfter\": \"No\",\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"takedownOnlyDisplayed\": \"\",\n            \"primaryReferenceId\": null,\n            \"takedownPointsOfContact\": [\n                {\n                    \"takedownPointOfContactId\": 1002,\n                    \"takedownId\": 11069,\n                    \"pointType\": \"Hip (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.155694\",\n                    \"createdDate\": \"2022-03-31T10:13:18.6983448\"\n                },\n                {\n                    \"takedownPointOfContactId\": 1003,\n                    \"takedownId\": 11069,\n                    \"pointType\": \"Glutes\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556962\",\n                    \"createdDate\": \"2022-03-31T10:13:18.7054275\"\n                },\n                {\n                    \"takedownPointOfContactId\": 1004,\n                    \"takedownId\": 11069,\n                    \"pointType\": \"Groin\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556953\",\n                    \"createdDate\": \"2022-03-31T10:13:18.70534\"\n                }\n            ],\n            \"modifiedDate\": \"2022-03-31T10:27:10.1556891\",\n            \"createdDate\": \"2022-03-31T10:12:50.0678837\"\n        }\n    ],\n    \"vehicles\": [\n        {\n            \"vehicleId\": 10104,\n            \"incidentId\": 17390,\n            \"driver\": \"John Smith (Suspect)\",\n            \"owner\": \"John Smith (Suspect)\",\n            \"passengers\": \"John Smith (Suspect)\",\n            \"vehicleType\": \"Motorcycle\",\n            \"vehicleMake\": \"BMW\",\n            \"vehicleModel\": \"Motormaster 8000\",\n            \"year\": \"2019\",\n            \"vehicleTag\": \"FL1234\",\n            \"state\": \"FL\",\n            \"vehicleSpeedDuringIncident\": \"41-50 MPH\",\n            \"nonEditable\": false,\n            \"vehicleDamage\": \"\",\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-03-31T10:27:10.1554392\",\n            \"createdDate\": \"2022-03-31T08:20:26.3587222\"\n        }\n    ],\n    \"victims\": [\n        {\n            \"victimId\": 9058,\n            \"incidentId\": 17390,\n            \"firstName\": \"Sara\",\n            \"middleName\": \"Jane\",\n            \"lastName\": \"Smith\",\n            \"victimAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"victimEmail\": \"sarasmith@gmail.com\",\n            \"victimPhone1\": \"111-111-1111 x11111\",\n            \"victimPhone2\": \"222-222-2222 x_____\",\n            \"race\": \"Hispanic/Latino\",\n            \"gender\": \"Female\",\n            \"victimDateOfBirth\": \"03/01/1980\",\n            \"age\": \"\",\n            \"suspectName1\": \"\",\n            \"victimRelationshipToSuspect1\": \"\",\n            \"officerName1\": \"\",\n            \"victimRelationshipToPrimaryOfficer1\": \"\",\n            \"suspectName2\": \"\",\n            \"victimRelationshipToSuspect2\": \"\",\n            \"officerName2\": \"\",\n            \"victimRelationshipToPrimaryOfficer2\": \"\",\n            \"suspectName3\": \"\",\n            \"victimRelationshipToSuspect3\": \"\",\n            \"officerName3\": \"\",\n            \"victimRelationshipToPrimaryOfficer3\": \"\",\n            \"suspectName4\": \"\",\n            \"victimRelationshipToSuspect4\": \"\",\n            \"officerName4\": \"\",\n            \"victimRelationshipToPrimaryOfficer4\": \"\",\n            \"suspectName5\": \"\",\n            \"victimRelationshipToSuspect5\": \"\",\n            \"officerName5\": \"\",\n            \"victimRelationshipToPrimaryOfficer5\": \"\",\n            \"victimInjured\": \"Yes\",\n            \"victimInjuryType\": \"Blunt Trauma\",\n            \"victimInjurySeverity\": \"Non-Incapacitating\",\n            \"victimHowInjuryToVictimOccurred\": \"Suspect's Actions\",\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\n            \"victimTransported\": \"Yes\",\n            \"victimTransportedBy\": \"EMS\",\n            \"victimTransportedTo\": \"The Hospital\",\n            \"victimTransportedTime\": \"12:12:00\",\n            \"victimInjuryPhotos\": \"\",\n            \"victimInjuryPhotosTakenBy\": \"\",\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"officerRole\": \"\",\n            \"outsideAgency\": \"\",\n            \"victimMedicalTreatmentOfVictimByDropdown\": \"\",\n            \"victimTransportedByDropDown\": \"\",\n            \"victimTransportedToDropDown\": \"\",\n            \"victimInUniform\": \"\",\n            \"primaryReferenceId\": null,\n            \"victimPointsOfContact\": [\n                {\n                    \"victimPointOfContactId\": 1009,\n                    \"victimId\": 9058,\n                    \"pointType\": \"Palm (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553661\",\n                    \"createdDate\": \"2022-03-31T07:57:03.5657655\"\n                },\n                {\n                    \"victimPointOfContactId\": 1010,\n                    \"victimId\": 9058,\n                    \"pointType\": \"Forearm (front/right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553651\",\n                    \"createdDate\": \"2022-03-31T07:57:03.5541222\"\n                }\n            ],\n            \"victimRelationshipsToOfficer\": [\n                {\n                    \"victimsRelationshipToOfficerId\": 8065,\n                    \"victimId\": 9058,\n                    \"officerId\": 17379,\n                    \"victimRelationshipToPrimaryOfficer\": \"Not Applicable\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553742\",\n                    \"createdDate\": \"2022-03-31T07:55:38.1119273\"\n                }\n            ],\n            \"victimRelationshipsToSuspect\": [\n                {\n                    \"victimRelationshipToSuspectId\": 8078,\n                    \"victimId\": 9058,\n                    \"suspectId\": 16291,\n                    \"victimRelationshipToSuspect\": \"Friend\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553785\",\n                    \"createdDate\": \"2022-03-31T07:55:38.1255588\"\n                }\n            ],\n            \"witnessRelationshipsToVictim\": [\n                {\n                    \"witnessRelationshipToVictimId\": 5048,\n                    \"witnessId\": 9072,\n                    \"victimId\": 9058,\n                    \"witnessRelationshipToVictim\": \"Stranger\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1554184\",\n                    \"createdDate\": \"2022-03-31T08:10:38.293565\"\n                }\n            ],\n            \"modifiedDate\": \"2022-03-31T10:27:10.1553581\",\n            \"createdDate\": \"2022-03-31T07:53:09.935196\"\n        }\n    ],\n    \"weapons\": [\n        {\n            \"weaponId\": 14077,\n            \"incidentId\": 17390,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"weaponTypeUsed\": \"Flashlight\",\n            \"weaponTotalNumberOfStrikes\": \"16\",\n            \"weaponBodyPartMadeContactWith1\": \"\",\n            \"weaponDurationOfImpactCountInSeconds1\": \"\",\n            \"weaponBodyPartMadeContactWith2\": \"\",\n            \"weaponDurationOfImpactCountInSeconds2\": \"\",\n            \"weaponBodyPartMadeContactWith3\": \"\",\n            \"weaponDurationOfImpactCountInSeconds3\": \"\",\n            \"weaponBodyPartMadeContactWith4\": \"\",\n            \"weaponDurationOfImpactCountInSeconds4\": \"\",\n            \"weaponBodyPartMadeContactWith5\": \"\",\n            \"weaponDurationOfImpactCountInSeconds5\": \"\",\n            \"weaponBodyPartMadeContactWith6\": \"\",\n            \"weaponDurationOfImpactCountInSeconds6\": \"\",\n            \"weaponBodyPartMadeContactWith7\": \"\",\n            \"weaponDurationOfImpactCountInSeconds7\": \"\",\n            \"weaponBodyPartMadeContactWith8\": \"\",\n            \"weaponDurationOfImpactCountInSeconds8\": \"\",\n            \"weaponBodyPartMadeContactWith9\": \"\",\n            \"weaponDurationOfImpactCountInSeconds9\": \"\",\n            \"weaponBodyPartMadeContactWith10\": \"\",\n            \"weaponDurationOfImpactCountInSeconds10\": \"\",\n            \"weaponBodyPartMadeContactWith11\": \"\",\n            \"weaponDurationOfImpactCountInSeconds11\": \"\",\n            \"weaponBodyPartMadeContactWith12\": \"\",\n            \"weaponDurationOfImpactCountInSeconds12\": \"\",\n            \"weaponBodyPartMadeContactWith13\": \"\",\n            \"weaponDurationOfImpactCountInSeconds13\": \"\",\n            \"weaponBodyPartMadeContactWith14\": \"\",\n            \"weaponDurationOfImpactCountInSeconds14\": \"\",\n            \"weaponBodyPartMadeContactWith15\": \"\",\n            \"weaponDurationOfImpactCountInSeconds15\": \"\",\n            \"weaponSuspectCompliedAfter\": \"Yes\",\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"impactContact\": 1,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"weaponOnlyDisplayed\": \"No\",\n            \"bodyPartsAimedFor\": \"\",\n            \"primaryReferenceId\": null,\n            \"weaponPointOfContact\": [\n                {\n                    \"weaponPointOfContactId\": 5023,\n                    \"weaponId\": 14077,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1555769\",\n                    \"createdDate\": \"2022-03-31T09:59:20.1319928\"\n                },\n                {\n                    \"weaponPointOfContactId\": 5024,\n                    \"weaponId\": 14077,\n                    \"pointType\": \"Upper Arm(right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.155576\",\n                    \"createdDate\": \"2022-03-31T09:59:20.1237622\"\n                }\n            ],\n            \"modifiedDate\": \"2022-03-31T10:27:10.1555708\",\n            \"createdDate\": \"2022-03-31T09:57:57.1988885\"\n        }\n    ],\n    \"witnesses\": [\n        {\n            \"witnessId\": 9072,\n            \"incidentId\": 17390,\n            \"firstName\": \"Sara\",\n            \"middleName\": \"Jane\",\n            \"lastName\": \"Smith\",\n            \"witnessAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"witnessEmail\": \"sarasmith@gmail.com\",\n            \"witnessPhone1\": \"111-111-1111 x111__\",\n            \"witnessPhone2\": \"222-222-2222 x_____\",\n            \"race\": \"Black\",\n            \"gender\": \"Female\",\n            \"witnessDateOfBirth\": \"03/01/1980\",\n            \"suspectName1\": \"\",\n            \"witnessRelationshipToSuspect1\": \"\",\n            \"officerName1\": \"\",\n            \"witnessRelationshipToPrimaryOfficer1\": \"\",\n            \"victimName1\": \"\",\n            \"witnessRelationshipToVictim1\": \"\",\n            \"suspectName2\": \"\",\n            \"witnessRelationshipToSuspect2\": \"\",\n            \"officerName2\": \"\",\n            \"witnessRelationshipToPrimaryOfficer2\": \"\",\n            \"victimName2\": \"\",\n            \"witnessRelationshipToVictim2\": \"\",\n            \"suspectName3\": \"\",\n            \"witnessRelationshipToSuspect3\": \"\",\n            \"officerName3\": \"\",\n            \"witnessRelationshipToPrimaryOfficer3\": \"\",\n            \"victimName3\": \"\",\n            \"witnessRelationshipToVictim3\": \"\",\n            \"suspectName4\": \"\",\n            \"witnessRelationshipToSuspect4\": \"\",\n            \"officerName4\": \"\",\n            \"witnessRelationshipToPrimaryOfficer4\": \"\",\n            \"victimName4\": \"\",\n            \"witnessRelationshipToVictim4\": \"\",\n            \"suspectName5\": \"\",\n            \"witnessRelationshipToSuspect5\": \"\",\n            \"officerName5\": \"\",\n            \"witnessRelationshipToPrimaryOfficer5\": \"\",\n            \"victimName5\": \"\",\n            \"witnessRelationshipToVictim5\": \"\",\n            \"nonEditable\": false,\n            \"primaryReferenceId\": null,\n            \"witnessRelationshipsToOfficer\": [\n                {\n                    \"witnessRelationshiptoOfficerId\": 8081,\n                    \"witnessId\": 9072,\n                    \"officerId\": 17379,\n                    \"witnessRelationshipToPrimaryOfficer\": \"Student\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1554101\",\n                    \"createdDate\": \"2022-03-31T08:10:38.2610567\"\n                }\n            ],\n            \"witnessRelationshipsToSuspect\": [\n                {\n                    \"witnessRelationshipToSuspectId\": 8066,\n                    \"witnessId\": 9072,\n                    \"suspectId\": 16291,\n                    \"witnessRelationshipToSuspect\": \"Grandchild\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1554144\",\n                    \"createdDate\": \"2022-03-31T08:10:38.2719561\"\n                }\n            ],\n            \"witnessRelationshipsToVictim\": [\n                {\n                    \"witnessRelationshipToVictimId\": 5048,\n                    \"witnessId\": 9072,\n                    \"victimId\": 9058,\n                    \"witnessRelationshipToVictim\": \"Stranger\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1554184\",\n                    \"createdDate\": \"2022-03-31T08:10:38.293565\"\n                }\n            ],\n            \"modifiedDate\": \"2022-03-31T10:27:10.1554048\",\n            \"createdDate\": \"2022-03-31T08:10:17.7254053\"\n        }\n    ],\n    \"reviews\": [\n        {\n            \"reviewId\": 7209,\n            \"incidentId\": 17390,\n            \"userId\": 95474,\n            \"action\": \"Approve\",\n            \"message\": \"\",\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T08:14:36.0446614\",\n            \"reviewGroupId\": 0,\n            \"modifiedDate\": \"2022-04-01T08:14:36.0446614\",\n            \"createdDate\": \"2022-04-01T08:14:36.0444879\"\n        },\n        {\n            \"reviewId\": 7210,\n            \"incidentId\": 17390,\n            \"userId\": 95475,\n            \"action\": \"Sent\",\n            \"message\": \"\",\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T08:14:36.0506334\",\n            \"reviewGroupId\": 0,\n            \"modifiedDate\": \"2022-04-01T08:14:36.0506334\",\n            \"createdDate\": \"2022-04-01T08:14:36.0506323\"\n        }\n    ],\n    \"reviewFormValues\": [\n        {\n            \"reviewFormValueId\": 5370,\n            \"title\": \"Supervisor assessment of incident:\",\n            \"type\": \"Textarea\",\n            \"value\": \"\",\n            \"ordinal\": 1,\n            \"indent\": 0,\n            \"helpSeg\": \"\",\n            \"formValue\": \"\",\n            \"incidentId\": 17390,\n            \"modifiedDate\": \"2022-03-30T16:38:53.7398424\",\n            \"createdDate\": \"2022-03-30T16:38:53.7397978\"\n        },\n        {\n            \"reviewFormValueId\": 5371,\n            \"title\": \"RECOMMENDATION\",\n            \"type\": \"Header\",\n            \"value\": \"\",\n            \"ordinal\": 2,\n            \"indent\": 1,\n            \"helpSeg\": \"\",\n            \"formValue\": \"\",\n            \"incidentId\": 17390,\n            \"modifiedDate\": \"2022-03-30T16:38:53.739932\",\n            \"createdDate\": \"2022-03-30T16:38:53.7399318\"\n        },\n        {\n            \"reviewFormValueId\": 5372,\n            \"title\": \"Was policy violated?\",\n            \"type\": \"Checkbox\",\n            \"value\": \"Yes|||No\",\n            \"ordinal\": 3,\n            \"indent\": 2,\n            \"helpSeg\": \"\",\n            \"formValue\": \"\",\n            \"incidentId\": 17390,\n            \"modifiedDate\": \"2022-03-30T16:38:53.7399403\",\n            \"createdDate\": \"2022-03-30T16:38:53.7399402\"\n        },\n        {\n            \"reviewFormValueId\": 5373,\n            \"title\": \"Is additional training recommended?\",\n            \"type\": \"Checkbox\",\n            \"value\": \"Yes|||No\",\n            \"ordinal\": 4,\n            \"indent\": 2,\n            \"helpSeg\": \"\",\n            \"formValue\": \"\",\n            \"incidentId\": 17390,\n            \"modifiedDate\": \"2022-03-30T16:38:53.7399484\",\n            \"createdDate\": \"2022-03-30T16:38:53.7399482\"\n        }\n    ],\n    \"modifiedDate\": \"2022-03-31T10:27:10.1606181\",\n    \"createdDate\": \"2022-03-30T16:38:53.7104674\"\n}"},{"id":"df673d24-2c1a-4f5a-85e0-d9c73ac2ed55","name":"Incident Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/facts/:incidentId","host":["{{BaseUri}}"],"path":["api","facts",":incidentId"],"variable":[{"key":"incidentId","value":"-1","description":"The record Id of the desired Incident."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcZmFjdHNcLTE=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 17:40:05 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Instance not found for the supplied id!\"\n}"}],"_postman_id":"6bf505bc-ed70-4207-b5d9-9e4f6b3441ba"},{"name":"Create Use of Force Incident","id":"0aef205b-897e-43b9-a005-878a5f9c278d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"incidentId\": 17390,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 95474,\r\n    \"status\": \"Completed\",\r\n    \"fdleSubmissionStatus\": \"\",\r\n    \"incidentCaseNumber\": \"TestCase-006\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"03/01/2022\",\r\n    \"incidentTime\": \"12:12:00\",\r\n    \"reportDate\": \"03/30/2022\",\r\n    \"reportTime\": \"16:38:00\",\r\n    \"incidentSupervisorNotified\": \"Yes\",\r\n    \"incidentSupervisorNumber\": \"\",\r\n    \"incidentSupervisorNotifiedTime\": \"12:12:00\",\r\n    \"incidentSupervisorArrivedTime\": \"13:12:00\",\r\n    \"incidentVideoAttached\": \"\",\r\n    \"incidentDocumentAttached\": \"\",\r\n    \"incidentAddress\": \"1234 Main Street\",\r\n    \"city\": \"Tampa\",\r\n    \"state\": \"FL\",\r\n    \"area\": \"District 731\",\r\n    \"district\": \"East\",\r\n    \"sector\": \"A-2\",\r\n    \"subsector\": \"Bravo - 1\",\r\n    \"locationTypeApartment\": false,\r\n    \"locationTypeResidence\": false,\r\n    \"locationTypeHotelMotel\": false,\r\n    \"locationTypeRestaurantBar\": false,\r\n    \"locationTypeParkingLot\": false,\r\n    \"locationTypeOpenField\": false,\r\n    \"locationTypeWoodedArea\": false,\r\n    \"locationTypeOther\": false,\r\n    \"lightingConditionsDaylight\": false,\r\n    \"lightingConditionsDusk\": false,\r\n    \"lightingConditionsDawn\": false,\r\n    \"lightingConditionsDarkLighted\": false,\r\n    \"lightingConditionsDarkNotLighted\": false,\r\n    \"lightingConditionsDarkUnknownLighting\": false,\r\n    \"lightingConditionsOther\": false,\r\n    \"weatherConditionsClear\": false,\r\n    \"weatherConditionsCloudy\": false,\r\n    \"weatherConditionsRain\": false,\r\n    \"weatherConditionsSnow\": false,\r\n    \"weatherConditionsWindy\": false,\r\n    \"weatherConditionsFogSmokeSmog\": false,\r\n    \"weatherConditionsSleetHail\": false,\r\n    \"weatherConditionsOther\": false,\r\n    \"locationType\": \"Camp/ Campground (42)\",\r\n    \"lightingCondition\": \"\",\r\n    \"weatherCondition\": \"\",\r\n    \"involvedOfficer\": true,\r\n    \"involvedSuspect\": true,\r\n    \"involvedVictim\": true,\r\n    \"involvedWitness\": true,\r\n    \"involvedVehicle\": true,\r\n    \"involvedProperty\": true,\r\n    \"involvedInmate\": true,\r\n    \"involvedNarrative\": true,\r\n    \"involvedSupervisorReview\": true,\r\n    \"responseToResistanceEcd\": true,\r\n    \"responseToResistanceChemicalAgents\": true,\r\n    \"responseToResistanceImpactWeapons\": true,\r\n    \"responseToResistanceImpactMunitions\": true,\r\n    \"responseToResistanceK9\": true,\r\n    \"responseToResistanceHands\": true,\r\n    \"responseToResistanceTakedowns\": true,\r\n    \"responseToResistanceFirearms\": true,\r\n    \"responseToResistanceStopsticks\": true,\r\n    \"responseToResistanceOther\": false,\r\n    \"supervisorName\": \"John T. Goodman\",\r\n    \"managerNotified\": \"\",\r\n    \"managerName\": \"\",\r\n    \"managerNotifiedTime\": null,\r\n    \"managerArrivedTime\": null,\r\n    \"reasonForUseOfForce\": \"Destroy Animal\",\r\n    \"reasonForUseOfForceOther\": \"\",\r\n    \"incidentType\": \"Burglary\",\r\n    \"incidentTypeOther\": \"\",\r\n    \"trackingId\": 24,\r\n    \"trackingYear\": 2022,\r\n    \"trackingNumber\": \"2022 - 24\",\r\n    \"subReportNumber\": null,\r\n    \"historical\": false,\r\n    \"oldCreatorName\": \"\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"reportType\": \"\",\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"searchNarrative\": \"\",\r\n    \"incidentAddress2\": \"\",\r\n    \"zipCode\": \"\",\r\n    \"latitude\": \"\",\r\n    \"longitude\": \"\",\r\n    \"incidentAmbush\": \"\",\r\n    \"leoApproachSuspect\": \"\",\r\n    \"initialContactReason\": \"\",\r\n    \"forceResults\": \"\",\r\n    \"dontKnowRelatedIncidentCase\": \"\",\r\n    \"totalOfficersOwnAgencyApplyForce\": null,\r\n    \"dontKnowTotalOfficersOwnAgencyApplyForce\": \"\",\r\n    \"totalOfficersAllAgencyApplyForce\": null,\r\n    \"dontKnowTotalOfficersAllAgencyApplyForce\": \"\",\r\n    \"totalSuspectsDeceasedOrInjured\": null,\r\n    \"dontKnowTotalSuspectsDeceasedOrInjured\": \"\",\r\n    \"didOtherAgencyApplyForce\": false,\r\n    \"totalOtherAgencyApplyForce\": null,\r\n    \"otherAgencyCaseNumber\": \"\",\r\n    \"otherAgencyORI\": \"\",\r\n    \"dontKnowAddress\": \"\",\r\n    \"seniorOfficerPresent\": \"\",\r\n    \"seniorOfficerName\": \"\",\r\n    \"seniorOfficerNotifiedTime\": null,\r\n    \"seniorOfficerArrivedTime\": null,\r\n    \"incidentCategory\": \"\",\r\n    \"howmanyOfficersonCall\": \"\",\r\n    \"streetNumber\": \"\",\r\n    \"preDirectional\": \"\",\r\n    \"streetType\": \"\",\r\n    \"postDirectional\": \"\",\r\n    \"lethal\": false,\r\n    \"servicesRendered\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"chemicals\": [\r\n        {\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"chemicalAgentTypeUsed\": \"MK-9 Handheld\",\r\n            \"chemicalSerialNumber\": \"\",\r\n            \"chemicalLotNumber\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds1\": \"2 seconds\",\r\n            \"chemicalDurationOfSprayInSeconds2\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds3\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds4\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds5\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds6\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds7\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds8\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds9\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds10\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds11\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds12\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds13\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds14\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds15\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect1\": \"16-20 feet\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect2\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect3\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect4\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect5\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect6\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect7\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect8\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect9\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect10\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect11\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect12\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect13\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect14\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect15\": \"\",\r\n            \"chemicalBodyPartsSprayed1\": \"Face\",\r\n            \"chemicalBodyPartsSprayed2\": \"\",\r\n            \"chemicalBodyPartsSprayed3\": \"\",\r\n            \"chemicalBodyPartsSprayed4\": \"\",\r\n            \"chemicalBodyPartsSprayed5\": \"\",\r\n            \"chemicalBodyPartsSprayed6\": \"\",\r\n            \"chemicalBodyPartsSprayed7\": \"\",\r\n            \"chemicalBodyPartsSprayed8\": \"\",\r\n            \"chemicalBodyPartsSprayed9\": \"\",\r\n            \"chemicalBodyPartsSprayed10\": \"\",\r\n            \"chemicalBodyPartsSprayed11\": \"\",\r\n            \"chemicalBodyPartsSprayed12\": \"\",\r\n            \"chemicalBodyPartsSprayed13\": \"\",\r\n            \"chemicalBodyPartsSprayed14\": \"\",\r\n            \"chemicalBodyPartsSprayed15\": \"\",\r\n            \"chemicalSuspectDecontaminated\": \"Yes\",\r\n            \"chemicalSuspectDecontaminatedTime\": \"12:12:00\",\r\n            \"chemicalSuspectDecontaminatedBy\": \"The Decontaminator\",\r\n            \"chemicalHowSuspectDecontaminated\": \"Eye Drops\",\r\n            \"chemicalSuspectCompliedAfter\": \"No\",\r\n            \"sprayDuration\": 1,\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"chemicalOnlyDisplayed\": \"No\",\r\n            \"structure\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"chemicalPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Neck\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1555462\",\r\n                    \"createdDate\": \"2022-03-31T08:40:29.1226425\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Face\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1555452\",\r\n                    \"createdDate\": \"2022-03-31T08:40:29.1127161\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1555396\",\r\n            \"createdDate\": \"2022-03-31T08:39:19.2020386\"\r\n        }\r\n    ],\r\n    \"ecds\": [\r\n        {\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"ecdDeploymentType\": \"Probes\",\r\n            \"ecdSerialNumber\": \"\",\r\n            \"ecdCartridgeNumber1\": \"\",\r\n            \"ecdCartridgeNumber2\": \"\",\r\n            \"ecdContactMade\": \"Yes\",\r\n            \"ecdNumberofContactsMade\": \"\",\r\n            \"ecdDeploymentDuration1\": \"4-6 sec\",\r\n            \"ecdDeploymentDistance1\": \"4-9 feet\",\r\n            \"ecdProbe1Connected1\": \"Yes\",\r\n            \"ecdProbe2Connected1\": \"No\",\r\n            \"ecdDeploymentDuration2\": \"10-12 sec\",\r\n            \"ecdDeploymentDistance2\": \"10-15 feet\",\r\n            \"ecdProbe1Connected2\": \"Yes\",\r\n            \"ecdProbe2Connected2\": \"Yes\",\r\n            \"ecdDeploymentDuration3\": \"\",\r\n            \"ecdDeploymentDistance3\": \"\",\r\n            \"ecdProbe1Connected3\": \"\",\r\n            \"ecdProbe2Connected3\": \"\",\r\n            \"ecdDeploymentDuration4\": \"\",\r\n            \"ecdDeploymentDistance4\": \"\",\r\n            \"ecdProbe1Connected4\": \"\",\r\n            \"ecdProbe2Connected4\": \"\",\r\n            \"ecdDeploymentDuration5\": \"\",\r\n            \"ecdDeploymentDistance5\": \"\",\r\n            \"ecdProbe1Connected5\": \"\",\r\n            \"ecdProbe2Connected5\": \"\",\r\n            \"ecdDeploymentDuration6\": \"\",\r\n            \"ecdDeploymentDistance6\": \"\",\r\n            \"ecdProbe1Connected6\": \"\",\r\n            \"ecdProbe2Connected6\": \"\",\r\n            \"ecdDeploymentDuration7\": \"\",\r\n            \"ecdDeploymentDistance7\": \"\",\r\n            \"ecdProbe1Connected7\": \"\",\r\n            \"ecdProbe2Connected7\": \"\",\r\n            \"ecdDeploymentDuration8\": \"\",\r\n            \"ecdDeploymentDistance8\": \"\",\r\n            \"ecdProbe1Connected8\": \"\",\r\n            \"ecdProbe2Connected8\": \"\",\r\n            \"ecdDeploymentDuration9\": \"\",\r\n            \"ecdDeploymentDistance9\": \"\",\r\n            \"ecdProbe1Connected9\": \"\",\r\n            \"ecdProbe2Connected9\": \"\",\r\n            \"ecdDeploymentDuration10\": \"\",\r\n            \"ecdDeploymentDistance10\": \"\",\r\n            \"ecdProbe1Connected10\": \"\",\r\n            \"ecdProbe2Connected10\": \"\",\r\n            \"ecdDeploymentDuration11\": \"\",\r\n            \"ecdDeploymentDistance11\": \"\",\r\n            \"ecdProbe1Connected11\": \"\",\r\n            \"ecdProbe2Connected11\": \"\",\r\n            \"ecdDeploymentDuration12\": \"\",\r\n            \"ecdDeploymentDistance12\": \"\",\r\n            \"ecdProbe1Connected12\": \"\",\r\n            \"ecdProbe2Connected12\": \"\",\r\n            \"ecdDeploymentDuration13\": \"\",\r\n            \"ecdDeploymentDistance13\": \"\",\r\n            \"ecdProbe1Connected13\": \"\",\r\n            \"ecdProbe2Connected13\": \"\",\r\n            \"ecdDeploymentDuration14\": \"\",\r\n            \"ecdDeploymentDistance14\": \"\",\r\n            \"ecdProbe1Connected14\": \"\",\r\n            \"ecdProbe2Connected14\": \"\",\r\n            \"ecdDeploymentDuration15\": \"\",\r\n            \"ecdDeploymentDistance15\": \"\",\r\n            \"ecdProbe1Connected15\": \"\",\r\n            \"ecdProbe2Connected15\": \"\",\r\n            \"ecdProbePenetratedSuspectSkin\": \"Yes\",\r\n            \"ecdProbesRemovedBy\": \"Officer Jimmy\",\r\n            \"ecdSuspectCompliedAfter\": \"Yes\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"deploymentFrequency\": 2,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"ecdOnlyDisplayed\": \"No\",\r\n            \"suspectIncapacitated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"ecdPointOfContact\": [\r\n                {\r\n                    \"pointType\": \"Forearm (back/left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.15551\",\r\n                    \"createdDate\": \"2022-03-31T08:32:29.6557426\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Upper Arm(right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1555082\",\r\n                    \"createdDate\": \"2022-03-31T08:32:29.6492869\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Forearm (front/left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1555093\",\r\n                    \"createdDate\": \"2022-03-31T08:32:29.6556623\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1555022\",\r\n            \"createdDate\": \"2022-03-31T08:29:48.0305239\"\r\n        }\r\n    ],\r\n    \"firearms\": [\r\n        {\r\n            \"firearmDisplayedOnly\": \"No\",\r\n            \"firearmSuspectCompliedAfter\": \"\",\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"firearmMake\": \"Glock\",\r\n            \"firearmModel\": \"Shootmaster17\",\r\n            \"firearmSerialNumber\": \"AB123456\",\r\n            \"firearmDepartmentIssued\": \"Yes\",\r\n            \"firearmPurpose\": \"Primary\",\r\n            \"firearmNumberOfShotsFired\": \"\",\r\n            \"firearmShootingPosition\": \"\",\r\n            \"firearmStrongHandUsed\": \"Yes\",\r\n            \"firearmWeakHandUsed\": \"No\",\r\n            \"firearmReload\": \"\",\r\n            \"firearmAmmoMake\": \"10mm\",\r\n            \"firearmMalfunction\": \"\",\r\n            \"firearmOfficerConcealment\": \"From concealment.\",\r\n            \"firearmOfficerCover\": \"Under cover.\",\r\n            \"pointsOfContact\": \"\",\r\n            \"deployedByOfficer\": \"\",\r\n            \"deployedAtSuspect\": \"\",\r\n            \"accidentalDischarge\": \"\",\r\n            \"negligentDischarge\": \"\",\r\n            \"numberOfShotsFired\": \"02\",\r\n            \"distanceOfShotsfired\": \"\",\r\n            \"handUsedForFiring\": \"Both\",\r\n            \"shootingPosition\": \"Kneeling\",\r\n            \"wasIssuedWeaponUsed\": \"Yes\",\r\n            \"didOfficerHaveToReload\": \"Yes\",\r\n            \"firedBehindCover\": \"Yes\",\r\n            \"firedFromConcealment\": \"Yes\",\r\n            \"wasFirearmUnloaded\": \"\",\r\n            \"didFirearmMalfunction\": \"No\",\r\n            \"wasFirearmUnholstered\": \"\",\r\n            \"suspectComplyAfterFirearmUsed\": \"Yes\",\r\n            \"shotDistance\": \"02:1 foot,1-3 feet\",\r\n            \"pointsOfContact1\": \"\",\r\n            \"firearmUseSuspectCompliedAfter\": \"\",\r\n            \"didOfficerDischargeWeapon\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"firearmPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1558017\",\r\n                    \"createdDate\": \"2022-03-31T10:22:16.9349977\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Stomach\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1558033\",\r\n                    \"createdDate\": \"2022-03-31T10:22:16.9461693\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Groin\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1558041\",\r\n                    \"createdDate\": \"2022-03-31T10:22:16.9463278\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1557198\",\r\n            \"createdDate\": \"2022-03-31T10:19:31.2143932\"\r\n        }\r\n    ],\r\n    \"hands\": [\r\n        {\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"handsTypeUsed\": \"Hands type 1\",\r\n            \"handsSuspectCompliedAfter\": \"No\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"handOnlyDisplayed\": \"\",\r\n            \"totalNumberOfStrikes\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"handPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Head\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556672\",\r\n                    \"createdDate\": \"2022-03-31T10:10:21.7260934\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Upper Arm(left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556662\",\r\n                    \"createdDate\": \"2022-03-31T10:10:21.706868\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1556615\",\r\n            \"createdDate\": \"2022-03-31T10:09:59.2724364\"\r\n        }\r\n    ],\r\n    \"inmates\": [\r\n        {\r\n            \"suspectName\": \"\",\r\n            \"inmateNumber\": \"645\",\r\n            \"inmateDetentionFacility\": \"Juvenile Detention\",\r\n            \"officerName\": \"\",\r\n            \"restraintsUsed\": \"One-Piece Restraints\",\r\n            \"restraintsUsedOther\": \"\",\r\n            \"reasonForceWasApplied\": \"Prevent Escape\",\r\n            \"reasonForceWasAppliedOther\": \"\",\r\n            \"restrainedHours\": \"11\",\r\n            \"restrainedMinute\": \"45\",\r\n            \"inmateHaveWeapon\": \"Yes\",\r\n            \"cell\": \"In the cell\",\r\n            \"nonEditable\": false,\r\n            \"inmateDetentionClassification\": \"\",\r\n            \"suspectBookingNumber\": \"\",\r\n            \"jailViolations\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1554781\",\r\n            \"createdDate\": \"2022-03-31T08:26:24.139984\"\r\n        }\r\n    ],\r\n    \"k9s\": [\r\n        {\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"k9name\": \"Fluffy\",\r\n            \"k9breed\": \"German Shepherd\",\r\n            \"k9type\": \"Cross Certified\",\r\n            \"k9typeOtherDescription\": \"\",\r\n            \"k9reasonDeployed\": \"Citizen Protection\",\r\n            \"k9nnumberBites\": \"02\",\r\n            \"k9suspectCompliedAfter\": \"No\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"k9OnlyDisplayed\": \"No\",\r\n            \"k9Category\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"k9PointOfContactId\": [\r\n                {\r\n                    \"pointType\": \"Face\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556388\",\r\n                    \"createdDate\": \"2022-03-31T10:07:25.3513747\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Head\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556401\",\r\n                    \"createdDate\": \"2022-03-31T10:07:25.3594875\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.155634\",\r\n            \"createdDate\": \"2022-03-31T10:06:22.9930873\"\r\n        }\r\n    ],\r\n    \"munitions\": [\r\n        {\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"munitionSuspectHit\": \"Yes\",\r\n            \"munitionWeaponMake\": \"Impact munitions weapon make 1\",\r\n            \"munitionSerialNumber\": \"D123456\",\r\n            \"munitionDeploymentType\": \"Impact munitions deployment type 1\",\r\n            \"munitionExactImpact\": \"Yes\",\r\n            \"munitionContactMade\": \"Yes\",\r\n            \"munitionDeploymentDistance1\": \"3-5 feet\",\r\n            \"munitionNumberOfRounds1\": \"02\",\r\n            \"munitionCaliberUsed1\": \"Caliber 2\",\r\n            \"munitionDeploymentDistance2\": \"16-20 feet\",\r\n            \"munitionNumberOfRounds2\": \"01\",\r\n            \"munitionCaliberUsed2\": \"Caliber 1\",\r\n            \"munitionDeploymentDistance3\": \"\",\r\n            \"munitionNumberOfRounds3\": \"\",\r\n            \"munitionCaliberUsed3\": \"\",\r\n            \"munitionDeploymentDistance4\": \"\",\r\n            \"munitionNumberOfRounds4\": \"\",\r\n            \"munitionCaliberUsed4\": \"\",\r\n            \"munitionDeploymentDistance5\": \"\",\r\n            \"munitionNumberOfRounds5\": \"\",\r\n            \"munitionCaliberUsed5\": \"\",\r\n            \"munitionDeploymentDistance6\": \"\",\r\n            \"munitionNumberOfRounds6\": \"\",\r\n            \"munitionCaliberUsed6\": \"\",\r\n            \"munitionDeploymentDistance7\": \"\",\r\n            \"munitionNumberOfRounds7\": \"\",\r\n            \"munitionCaliberUsed7\": \"\",\r\n            \"munitionDeploymentDistance8\": \"\",\r\n            \"munitionNumberOfRounds8\": \"\",\r\n            \"munitionCaliberUsed8\": \"\",\r\n            \"munitionDeploymentDistance9\": \"\",\r\n            \"munitionNumberOfRounds9\": \"\",\r\n            \"munitionCaliberUsed9\": \"\",\r\n            \"munitionDeploymentDistance10\": \"\",\r\n            \"munitionNumberOfRounds10\": \"\",\r\n            \"munitionCaliberUsed10\": \"\",\r\n            \"munitionDeploymentDistance11\": \"\",\r\n            \"munitionNumberOfRounds11\": \"\",\r\n            \"munitionCaliberUsed11\": \"\",\r\n            \"munitionDeploymentDistance12\": \"\",\r\n            \"munitionNumberOfRounds12\": \"\",\r\n            \"munitionCaliberUsed12\": \"\",\r\n            \"munitionCaliberUsed13\": \"\",\r\n            \"munitionDeploymentDistance13\": \"\",\r\n            \"munitionNumberOfRounds13\": \"\",\r\n            \"munitionCaliberUsed14\": \"\",\r\n            \"munitionDeploymentDistance14\": \"\",\r\n            \"munitionNumberOfRounds14\": \"\",\r\n            \"munitionCaliberUsed15\": \"\",\r\n            \"munitionDeploymentDistance15\": \"\",\r\n            \"munitionNumberOfRounds15\": \"\",\r\n            \"munitionSuspectCompliedAfter\": \"No\",\r\n            \"deploymentFrequency\": 2,\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"munitionOnlyDisplayed\": \"No\",\r\n            \"primaryReferenceId\": null,\r\n            \"munitionPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Hamstring (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556094\",\r\n                    \"createdDate\": \"2022-03-31T10:03:26.807794\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Hand (left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556085\",\r\n                    \"createdDate\": \"2022-03-31T10:03:26.8076683\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Thigh (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556077\",\r\n                    \"createdDate\": \"2022-03-31T10:03:26.8074169\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Palm (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556067\",\r\n                    \"createdDate\": \"2022-03-31T10:03:26.7950936\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1556017\",\r\n            \"createdDate\": \"2022-03-31T10:02:16.7749472\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrative\": \"This is one great narrative.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1605455\",\r\n            \"createdDate\": \"2022-03-30T16:38:53.7344588\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"officerId\": \"1\",\r\n            \"firstName\": \"Durand\",\r\n            \"middleName\": \"\",\r\n            \"lastName\": \"Peterson\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerOnDuty\": \"Yes\",\r\n            \"officerPermanentAssignment\": \"North Sector\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"address\": \"\",\r\n            \"city\": \"\",\r\n            \"state\": \"\",\r\n            \"race\": \"Native Hawaiian or Other Pacific Islander\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"\",\r\n            \"age\": \"35\",\r\n            \"height\": \"5ft 4in\",\r\n            \"weight\": \"150\",\r\n            \"build\": \"\",\r\n            \"officerYearsWithAgency\": \"12\",\r\n            \"officerTotalYearsInLawEnforcement\": \"12\",\r\n            \"education\": \"16\",\r\n            \"officerInjured\": \"Yes\",\r\n            \"officerInjuryType\": \"Gunshot\",\r\n            \"officerInjurySeverity\": \"Fatal injury\",\r\n            \"officerHowInjuryOccurred\": \"Other Suspect\",\r\n            \"officerMedicalTreatmentReceived\": \"Yes\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\r\n            \"officerTransported\": \"Yes\",\r\n            \"officerTransportedBy\": \"EMS\",\r\n            \"officerTransportedTo\": \"The Hospital\",\r\n            \"officerTransportedTime\": \"12:12:00\",\r\n            \"officerInjuryPhotos\": \"\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"cit\": \"\",\r\n            \"nonEditable\": false,\r\n            \"deescalation\": \"Maximized the use of cover or concealment to reduce exposure to potential threats by placing the officer in a safer position\",\r\n            \"bodyWornCamera\": \"Yes\",\r\n            \"activated\": \"Yes\",\r\n            \"didOfficerUseForce\": \"\",\r\n            \"employmentFullTime\": \"\",\r\n            \"dontKnowAge\": \"\",\r\n            \"dontKnowHeight\": \"\",\r\n            \"dontKnowWeight\": \"\",\r\n            \"dontKnowYearsOfService\": \"\",\r\n            \"leoInjuredNIBRSIncidentNumber\": \"\",\r\n            \"dontKnowLEOInjuredNIBRSIncidentNumber\": \"\",\r\n            \"officerMedicalTreatmentReceivedByDropdown\": \"\",\r\n            \"officerTransportedByDropDown\": \"\",\r\n            \"officerTransportedToDropDown\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"officerPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553148\",\r\n                    \"createdDate\": \"2022-03-31T07:27:07.9672071\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Upper Back\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553234\",\r\n                    \"createdDate\": \"2022-03-31T07:27:07.9838475\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Lower Back\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553243\",\r\n                    \"createdDate\": \"2022-03-31T07:27:07.9839961\"\r\n                }\r\n            ],\r\n            \"victimRelationshipsToOfficer\": [\r\n                {\r\n                    \"officerId\": 17379,\r\n                    \"victimRelationshipToPrimaryOfficer\": \"Not Applicable\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553742\",\r\n                    \"createdDate\": \"2022-03-31T07:55:38.1119273\"\r\n                }\r\n            ],\r\n            \"witnessRelationshipsToOfficer\": [\r\n                {\r\n                    \"officerId\": 17379,\r\n                    \"witnessRelationshipToPrimaryOfficer\": \"Student\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1554101\",\r\n                    \"createdDate\": \"2022-03-31T08:10:38.2610567\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1553081\",\r\n            \"createdDate\": \"2022-03-30T16:38:53.730113\"\r\n        }\r\n    ],\r\n    \"properties\": [\r\n        {\r\n            \"owner\": \"Sara Smith (Witness)\",\r\n            \"propertyType\": \"LEGO Collection\",\r\n            \"propertyValue\": \"5.36\",\r\n            \"propertyOwnerName\": \"\",\r\n            \"propertyOwnerAddress\": \"\",\r\n            \"city\": \"\",\r\n            \"state\": \"\",\r\n            \"propertyOwnerEmail\": \"\",\r\n            \"propertyOwnerPhone1\": \"\",\r\n            \"propertyOwnerPhone2\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"propertyOwnerDateOfBirth\": \"\",\r\n            \"age\": \"\",\r\n            \"nonEditable\": false,\r\n            \"propertyCategory\": \"\",\r\n            \"propertyMethod\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.155458\",\r\n            \"createdDate\": \"2022-03-31T08:24:50.1622924\"\r\n        }\r\n    ],\r\n    \"stopSticks\": [\r\n        {\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"Mercury\",\r\n            \"vehicleModel\": \"Hooptie\",\r\n            \"vehicleYear\": \"1992\",\r\n            \"vehicleTag\": \"FL1234\",\r\n            \"stopstickOfficerTrainedInTechnique\": \"Yes\",\r\n            \"stopstickInvolvedStopSticksUsed\": \"Yes\",\r\n            \"stopstickPitManeuverUsed\": \"Yes\",\r\n            \"stopstickBoxinTechniqueUsed\": \"Yes\",\r\n            \"interventionUsed\": \"Intervention Used\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"stopstickOnlyDisplayed\": \"\",\r\n            \"state\": \"FL\",\r\n            \"primaryReferenceId\": null,\r\n            \"stopStickInfo\": [\r\n                {\r\n                    \"stopstickInvolvedStopStickNumber\": \"Stick of Justice\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.159785\",\r\n                    \"createdDate\": \"2022-03-31T10:26:43.8557914\"\r\n                },\r\n                {\r\n                    \"stopstickInvolvedStopStickNumber\": \"Stick of Truth\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1597918\",\r\n                    \"createdDate\": \"2022-03-31T10:26:54.2577357\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1579897\",\r\n            \"createdDate\": \"2022-03-31T10:25:48.1043358\"\r\n        }\r\n    ],\r\n    \"suspects\": [\r\n        {\r\n            \"firstName\": \"John\",\r\n            \"middleName\": \"Jason\",\r\n            \"lastName\": \"Smith\",\r\n            \"suspectAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"suspectDateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"height\": \"5ft 6in\",\r\n            \"weight\": \" 171-180\",\r\n            \"build\": \"Thin\",\r\n            \"education\": \"\",\r\n            \"suspectActionsPresence\": true,\r\n            \"suspectActionsPassiveResistance\": true,\r\n            \"suspectActionsVerbalResistance\": true,\r\n            \"suspectActionsActiveAggression\": true,\r\n            \"suspectActionsAggressivePhysical\": true,\r\n            \"suspectActionsAggravatedPhysical\": true,\r\n            \"suspectActionsOther\": false,\r\n            \"suspectOfficersResponsePresence\": true,\r\n            \"suspectOfficersResponsePassiveResistance\": true,\r\n            \"suspectOfficersResponseVerbalResistance\": true,\r\n            \"suspectOfficersResponseAggression\": true,\r\n            \"suspectOfficersResponseAggravatedPhysical\": true,\r\n            \"suspectOfficersResponseOther\": false,\r\n            \"suspectOfficersResponseLevel7\": null,\r\n            \"suspectOfficersResponseLevel8\": null,\r\n            \"suspectWeaponUsedHands\": true,\r\n            \"suspectWeaponUsedBluntObject\": true,\r\n            \"suspectWeaponUsedEdgedObject\": true,\r\n            \"suspectWeaponUsedFirearm\": true,\r\n            \"suspectWeaponUsedOther\": true,\r\n            \"suspectArrested\": \"Yes\",\r\n            \"suspectWhyNotArrested\": \"\",\r\n            \"suspectArrestCharge\": \"28-1911 Failure to yield\",\r\n            \"suspectArrestedForFelony\": \"\",\r\n            \"suspectArresteeDeliveredTo\": \"\",\r\n            \"suspectJailNumber\": \"\",\r\n            \"suspectConditionPriorMellow\": false,\r\n            \"suspectConditionPriorDepressed\": false,\r\n            \"suspectConditionPriorAngry\": false,\r\n            \"suspectConditionPriorDisoriented\": true,\r\n            \"suspectConditionPriorDrugs\": true,\r\n            \"suspectConditionPriorAlcohol\": false,\r\n            \"suspectConditionPriorFighting\": false,\r\n            \"suspectConditionPriorOther\": false,\r\n            \"suspectConditionPostMellow\": true,\r\n            \"suspectConditionPostDepressed\": true,\r\n            \"suspectConditionPostAngry\": false,\r\n            \"suspectConditionPostDisoriented\": false,\r\n            \"suspectConditionPostDrugs\": false,\r\n            \"suspectConditionPostAlcohol\": false,\r\n            \"suspectConditionPostFighting\": false,\r\n            \"suspectConditionPostOther\": false,\r\n            \"suspectConditionPriorComment\": \"\",\r\n            \"suspectConditionPostComment\": \"\",\r\n            \"suspectInjured\": \"Yes\",\r\n            \"suspectInjuryType\": \"Gunshot\",\r\n            \"suspectInjurySeverity\": \"Fatal\",\r\n            \"howInjuryOccurredToSuspect\": \"Other Suspect\",\r\n            \"medicalTreatmentOfSuspect\": \"Yes\",\r\n            \"medicalTreatmentOfSuspectBy\": \"The Doctor\",\r\n            \"suspectTransported\": \"Yes\",\r\n            \"suspectTransportedBy\": \"EMS\",\r\n            \"suspectTransportedTo\": \"The Hospital\",\r\n            \"suspectTransportedTime\": \"12:12:00\",\r\n            \"suspectInjuryPhotos\": \"\",\r\n            \"suspectInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"suspectExhibitsSignsofExcitedDelirium\": \"Yes\",\r\n            \"deliriumSignsDisplayed\": \"Incoherent Speech\",\r\n            \"suspectShowedSignsofMentalIllness\": \"Yes\",\r\n            \"showedSignsMentalIllness\": \"Depression\",\r\n            \"showedSignsMentalIllnessothers\": \"\",\r\n            \"rank1\": 1,\r\n            \"rank2\": 2,\r\n            \"rank3\": 4,\r\n            \"rank4\": 3,\r\n            \"rank5\": 6,\r\n            \"rank6\": 5,\r\n            \"rank7\": null,\r\n            \"rank8\": 1,\r\n            \"rank9\": 2,\r\n            \"rank10\": 5,\r\n            \"rank11\": 3,\r\n            \"rank12\": 4,\r\n            \"rank13\": null,\r\n            \"rank14\": null,\r\n            \"rank15\": null,\r\n            \"comments\": \"\",\r\n            \"nonEditable\": false,\r\n            \"arrestDate\": \"03/06/2022\",\r\n            \"arrestTime\": \"12:12:00\",\r\n            \"suspectForceCategory\": \"\",\r\n            \"suspectResistedType\": \"\",\r\n            \"suspectThreatPerson\": \"\",\r\n            \"estimatedAgeRange\": \"\",\r\n            \"dontKnowAge\": \"\",\r\n            \"knownImpairment\": \"\",\r\n            \"knownImpairmentType\": \"\",\r\n            \"suspectResisted\": \"\",\r\n            \"suspectArmed\": \"\",\r\n            \"dontKnowCharges\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"suspectTransportedByDropDown\": \"\",\r\n            \"suspectTransportedToDropDown\": \"\",\r\n            \"threatFactors\": \"\",\r\n            \"deEscalation\": \"\",\r\n            \"suspectWeaponUsedOption6\": null,\r\n            \"suspectWeaponUsedOption7\": null,\r\n            \"suspectWeaponUsedOption8\": null,\r\n            \"suspectWeaponUsedOption9\": null,\r\n            \"suspectDisabilities\": \"\",\r\n            \"knowledgeofSuspectDisability\": \"\",\r\n            \"mobilityDevices\": \"\",\r\n            \"remoteInterpreterUsed\": \"\",\r\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\r\n            \"suspectCategory\": \"\",\r\n            \"suffix\": \"\",\r\n            \"genderIdentify\": \"\",\r\n            \"inmateNumber\": \"\",\r\n            \"custodyLocation\": \"\",\r\n            \"civilianDistance\": \"\",\r\n            \"civilianResistance\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"suspectPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Face\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1552525\",\r\n                    \"createdDate\": \"2022-03-31T07:51:55.762061\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1552539\",\r\n                    \"createdDate\": \"2022-03-31T07:51:55.7712345\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Upper Arm (back/left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1552548\",\r\n                    \"createdDate\": \"2022-03-31T07:51:55.7713131\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Heel (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1552559\",\r\n                    \"createdDate\": \"2022-03-31T07:51:55.7713485\"\r\n                }\r\n            ],\r\n            \"victimsRelationshipToSuspects\": [\r\n                {\r\n                    \"suspectId\": 16291,\r\n                    \"victimRelationshipToSuspect\": \"Friend\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553785\",\r\n                    \"createdDate\": \"2022-03-31T07:55:38.1255588\"\r\n                }\r\n            ],\r\n            \"witnessesRelationshipToSuspects\": [\r\n                {\r\n                    \"suspectId\": 16291,\r\n                    \"witnessRelationshipToSuspect\": \"Grandchild\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1554144\",\r\n                    \"createdDate\": \"2022-03-31T08:10:38.2719561\"\r\n                }\r\n            ],\r\n            \"suspectChargeClassifications\": [\r\n                {\r\n                    \"charge\": \"28-1911 Failure to yield\",\r\n                    \"chargeClasification1\": false,\r\n                    \"chargeClasification2\": true,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1552747\",\r\n                    \"createdDate\": \"2022-03-31T07:46:55.2992666\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1552441\",\r\n            \"createdDate\": \"2022-03-31T07:38:33.8188774\"\r\n        }\r\n    ],\r\n    \"takedowns\": [\r\n        {\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"takedownTypeUsed\": \"Leg Sweep\",\r\n            \"takedownSuspectCompliedAfter\": \"No\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"takedownOnlyDisplayed\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"takedownPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Hip (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.155694\",\r\n                    \"createdDate\": \"2022-03-31T10:13:18.6983448\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Glutes\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556962\",\r\n                    \"createdDate\": \"2022-03-31T10:13:18.7054275\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Groin\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556953\",\r\n                    \"createdDate\": \"2022-03-31T10:13:18.70534\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1556891\",\r\n            \"createdDate\": \"2022-03-31T10:12:50.0678837\"\r\n        }\r\n    ],\r\n    \"vehicles\": [\r\n        {\r\n            \"driver\": \"John Smith (Suspect)\",\r\n            \"owner\": \"John Smith (Suspect)\",\r\n            \"passengers\": \"John Smith (Suspect)\",\r\n            \"vehicleType\": \"Motorcycle\",\r\n            \"vehicleMake\": \"BMW\",\r\n            \"vehicleModel\": \"Motormaster 8000\",\r\n            \"year\": \"2019\",\r\n            \"vehicleTag\": \"FL1234\",\r\n            \"state\": \"FL\",\r\n            \"vehicleSpeedDuringIncident\": \"41-50 MPH\",\r\n            \"nonEditable\": false,\r\n            \"vehicleDamage\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1554392\",\r\n            \"createdDate\": \"2022-03-31T08:20:26.3587222\"\r\n        }\r\n    ],\r\n    \"victims\": [\r\n        {\r\n            \"firstName\": \"Sara\",\r\n            \"middleName\": \"Jane\",\r\n            \"lastName\": \"Smith\",\r\n            \"victimAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"victimEmail\": \"sarasmith@gmail.com\",\r\n            \"victimPhone1\": \"111-111-1111 x11111\",\r\n            \"victimPhone2\": \"222-222-2222 x_____\",\r\n            \"race\": \"Hispanic/Latino\",\r\n            \"gender\": \"Female\",\r\n            \"victimDateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"suspectName1\": \"\",\r\n            \"victimRelationshipToSuspect1\": \"\",\r\n            \"officerName1\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer1\": \"\",\r\n            \"suspectName2\": \"\",\r\n            \"victimRelationshipToSuspect2\": \"\",\r\n            \"officerName2\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer2\": \"\",\r\n            \"suspectName3\": \"\",\r\n            \"victimRelationshipToSuspect3\": \"\",\r\n            \"officerName3\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer3\": \"\",\r\n            \"suspectName4\": \"\",\r\n            \"victimRelationshipToSuspect4\": \"\",\r\n            \"officerName4\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer4\": \"\",\r\n            \"suspectName5\": \"\",\r\n            \"victimRelationshipToSuspect5\": \"\",\r\n            \"officerName5\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer5\": \"\",\r\n            \"victimInjured\": \"Yes\",\r\n            \"victimInjuryType\": \"Blunt Trauma\",\r\n            \"victimInjurySeverity\": \"Non-Incapacitating\",\r\n            \"victimHowInjuryToVictimOccurred\": \"Suspect's Actions\",\r\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\r\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\r\n            \"victimTransported\": \"Yes\",\r\n            \"victimTransportedBy\": \"EMS\",\r\n            \"victimTransportedTo\": \"The Hospital\",\r\n            \"victimTransportedTime\": \"12:12:00\",\r\n            \"victimInjuryPhotos\": \"\",\r\n            \"victimInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"officerRole\": \"\",\r\n            \"outsideAgency\": \"\",\r\n            \"victimMedicalTreatmentOfVictimByDropdown\": \"\",\r\n            \"victimTransportedByDropDown\": \"\",\r\n            \"victimTransportedToDropDown\": \"\",\r\n            \"victimInUniform\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"victimPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Palm (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553661\",\r\n                    \"createdDate\": \"2022-03-31T07:57:03.5657655\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Forearm (front/right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553651\",\r\n                    \"createdDate\": \"2022-03-31T07:57:03.5541222\"\r\n                }\r\n            ],\r\n            \"victimRelationshipsToOfficer\": [\r\n                {\r\n                    \"officerId\": 17379,\r\n                    \"victimRelationshipToPrimaryOfficer\": \"Not Applicable\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553742\",\r\n                    \"createdDate\": \"2022-03-31T07:55:38.1119273\"\r\n                }\r\n            ],\r\n            \"victimRelationshipsToSuspect\": [\r\n                {\r\n                    \"suspectId\": 16291,\r\n                    \"victimRelationshipToSuspect\": \"Friend\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553785\",\r\n                    \"createdDate\": \"2022-03-31T07:55:38.1255588\"\r\n                }\r\n            ],\r\n            \"witnessRelationshipsToVictim\": [\r\n                {\r\n                    \"victimId\": 9058,\r\n                    \"witnessRelationshipToVictim\": \"Stranger\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1554184\",\r\n                    \"createdDate\": \"2022-03-31T08:10:38.293565\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1553581\",\r\n            \"createdDate\": \"2022-03-31T07:53:09.935196\"\r\n        }\r\n    ],\r\n    \"weapons\": [\r\n        {\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"weaponTypeUsed\": \"Flashlight\",\r\n            \"weaponTotalNumberOfStrikes\": \"16\",\r\n            \"weaponBodyPartMadeContactWith1\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds1\": \"\",\r\n            \"weaponBodyPartMadeContactWith2\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds2\": \"\",\r\n            \"weaponBodyPartMadeContactWith3\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds3\": \"\",\r\n            \"weaponBodyPartMadeContactWith4\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds4\": \"\",\r\n            \"weaponBodyPartMadeContactWith5\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds5\": \"\",\r\n            \"weaponBodyPartMadeContactWith6\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds6\": \"\",\r\n            \"weaponBodyPartMadeContactWith7\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds7\": \"\",\r\n            \"weaponBodyPartMadeContactWith8\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds8\": \"\",\r\n            \"weaponBodyPartMadeContactWith9\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds9\": \"\",\r\n            \"weaponBodyPartMadeContactWith10\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds10\": \"\",\r\n            \"weaponBodyPartMadeContactWith11\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds11\": \"\",\r\n            \"weaponBodyPartMadeContactWith12\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds12\": \"\",\r\n            \"weaponBodyPartMadeContactWith13\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds13\": \"\",\r\n            \"weaponBodyPartMadeContactWith14\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds14\": \"\",\r\n            \"weaponBodyPartMadeContactWith15\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds15\": \"\",\r\n            \"weaponSuspectCompliedAfter\": \"Yes\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"impactContact\": 1,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"weaponOnlyDisplayed\": \"No\",\r\n            \"bodyPartsAimedFor\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"weaponPointOfContact\": [\r\n                {\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1555769\",\r\n                    \"createdDate\": \"2022-03-31T09:59:20.1319928\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Upper Arm(right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.155576\",\r\n                    \"createdDate\": \"2022-03-31T09:59:20.1237622\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1555708\",\r\n            \"createdDate\": \"2022-03-31T09:57:57.1988885\"\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"firstName\": \"Sara\",\r\n            \"middleName\": \"Jane\",\r\n            \"lastName\": \"Smith\",\r\n            \"witnessAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"witnessEmail\": \"sarasmith@gmail.com\",\r\n            \"witnessPhone1\": \"111-111-1111 x111__\",\r\n            \"witnessPhone2\": \"222-222-2222 x_____\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Female\",\r\n            \"witnessDateOfBirth\": \"03/01/1980\",\r\n            \"suspectName1\": \"\",\r\n            \"witnessRelationshipToSuspect1\": \"\",\r\n            \"officerName1\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer1\": \"\",\r\n            \"victimName1\": \"\",\r\n            \"witnessRelationshipToVictim1\": \"\",\r\n            \"suspectName2\": \"\",\r\n            \"witnessRelationshipToSuspect2\": \"\",\r\n            \"officerName2\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer2\": \"\",\r\n            \"victimName2\": \"\",\r\n            \"witnessRelationshipToVictim2\": \"\",\r\n            \"suspectName3\": \"\",\r\n            \"witnessRelationshipToSuspect3\": \"\",\r\n            \"officerName3\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer3\": \"\",\r\n            \"victimName3\": \"\",\r\n            \"witnessRelationshipToVictim3\": \"\",\r\n            \"suspectName4\": \"\",\r\n            \"witnessRelationshipToSuspect4\": \"\",\r\n            \"officerName4\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer4\": \"\",\r\n            \"victimName4\": \"\",\r\n            \"witnessRelationshipToVictim4\": \"\",\r\n            \"suspectName5\": \"\",\r\n            \"witnessRelationshipToSuspect5\": \"\",\r\n            \"officerName5\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer5\": \"\",\r\n            \"victimName5\": \"\",\r\n            \"witnessRelationshipToVictim5\": \"\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"witnessRelationshipsToOfficer\": [\r\n                {\r\n                    \"officerId\": 17379,\r\n                    \"witnessRelationshipToPrimaryOfficer\": \"Student\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1554101\",\r\n                    \"createdDate\": \"2022-03-31T08:10:38.2610567\"\r\n                }\r\n            ],\r\n            \"witnessRelationshipsToSuspect\": [\r\n                {\r\n                    \"suspectId\": 16291,\r\n                    \"witnessRelationshipToSuspect\": \"Grandchild\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1554144\",\r\n                    \"createdDate\": \"2022-03-31T08:10:38.2719561\"\r\n                }\r\n            ],\r\n            \"witnessRelationshipsToVictim\": [\r\n                {\r\n                    \"victimId\": 9058,\r\n                    \"witnessRelationshipToVictim\": \"Stranger\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1554184\",\r\n                    \"createdDate\": \"2022-03-31T08:10:38.293565\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1554048\",\r\n            \"createdDate\": \"2022-03-31T08:10:17.7254053\"\r\n        }\r\n    ],\r\n    \"reviews\": [\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T08:14:36.0446614\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T08:14:36.0446614\",\r\n            \"createdDate\": \"2022-04-01T08:14:36.0444879\"\r\n        },\r\n        {\r\n            \"userId\": 95475,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T08:14:36.0506334\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T08:14:36.0506334\",\r\n            \"createdDate\": \"2022-04-01T08:14:36.0506323\"\r\n        }\r\n    ],\r\n    \"reviewFormValues\": [\r\n        {\r\n            \"title\": \"Supervisor assessment of incident:\",\r\n            \"type\": \"Textarea\",\r\n            \"value\": \"\",\r\n            \"ordinal\": 1,\r\n            \"indent\": 0,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 17390,\r\n            \"modifiedDate\": \"2022-03-30T16:38:53.7398424\",\r\n            \"createdDate\": \"2022-03-30T16:38:53.7397978\"\r\n        },\r\n        {\r\n            \"title\": \"RECOMMENDATION\",\r\n            \"type\": \"Header\",\r\n            \"value\": \"\",\r\n            \"ordinal\": 2,\r\n            \"indent\": 1,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 17390,\r\n            \"modifiedDate\": \"2022-03-30T16:38:53.739932\",\r\n            \"createdDate\": \"2022-03-30T16:38:53.7399318\"\r\n        },\r\n        {\r\n            \"title\": \"Was policy violated?\",\r\n            \"type\": \"Checkbox\",\r\n            \"value\": \"Yes|||No\",\r\n            \"ordinal\": 3,\r\n            \"indent\": 2,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 17390,\r\n            \"modifiedDate\": \"2022-03-30T16:38:53.7399403\",\r\n            \"createdDate\": \"2022-03-30T16:38:53.7399402\"\r\n        },\r\n        {\r\n            \"title\": \"Is additional training recommended?\",\r\n            \"type\": \"Checkbox\",\r\n            \"value\": \"Yes|||No\",\r\n            \"ordinal\": 4,\r\n            \"indent\": 2,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 17390,\r\n            \"modifiedDate\": \"2022-03-30T16:38:53.7399484\",\r\n            \"createdDate\": \"2022-03-30T16:38:53.7399482\"\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-03-31T10:27:10.1606181\",\r\n    \"createdDate\": \"2022-03-30T16:38:53.7104674\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/facts","description":"<p>Create a new use of force incident. An error will be thrown if the supplied Case Number already exists in the system. You must ensure that each case number is unique.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","facts"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"5941f4dd-5f70-4f87-8ad0-2fe4557db42a","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 95474,\r\n    \"status\": \"InReview\",\r\n    \"fdleSubmissionStatus\": \"\",\r\n    \"incidentCaseNumber\": \"TestCase-002\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"03/01/2022\",\r\n    \"incidentTime\": \"12:12:00\",\r\n    \"reportDate\": \"03/30/2022\",\r\n    \"reportTime\": \"16:38:00\",\r\n    \"incidentSupervisorNotified\": \"Yes\",\r\n    \"incidentSupervisorNumber\": \"\",\r\n    \"incidentSupervisorNotifiedTime\": \"12:12:00\",\r\n    \"incidentSupervisorArrivedTime\": \"13:12:00\",\r\n    \"incidentVideoAttached\": \"\",\r\n    \"incidentDocumentAttached\": \"\",\r\n    \"incidentAddress\": \"1234 Main Street\",\r\n    \"city\": \"Tampa\",\r\n    \"state\": \"FL\",\r\n    \"area\": \"District 731\",\r\n    \"district\": \"East\",\r\n    \"sector\": \"A-2\",\r\n    \"subsector\": \"Bravo - 1\",\r\n    \"locationTypeApartment\": false,\r\n    \"locationTypeResidence\": false,\r\n    \"locationTypeHotelMotel\": false,\r\n    \"locationTypeRestaurantBar\": false,\r\n    \"locationTypeParkingLot\": false,\r\n    \"locationTypeOpenField\": false,\r\n    \"locationTypeWoodedArea\": false,\r\n    \"locationTypeOther\": false,\r\n    \"lightingConditionsDaylight\": false,\r\n    \"lightingConditionsDusk\": false,\r\n    \"lightingConditionsDawn\": false,\r\n    \"lightingConditionsDarkLighted\": false,\r\n    \"lightingConditionsDarkNotLighted\": false,\r\n    \"lightingConditionsDarkUnknownLighting\": false,\r\n    \"lightingConditionsOther\": false,\r\n    \"weatherConditionsClear\": false,\r\n    \"weatherConditionsCloudy\": false,\r\n    \"weatherConditionsRain\": false,\r\n    \"weatherConditionsSnow\": false,\r\n    \"weatherConditionsWindy\": false,\r\n    \"weatherConditionsFogSmokeSmog\": false,\r\n    \"weatherConditionsSleetHail\": false,\r\n    \"weatherConditionsOther\": false,\r\n    \"locationType\": \"Camp/ Campground (42)\",\r\n    \"lightingCondition\": \"\",\r\n    \"weatherCondition\": \"\",\r\n    \"involvedOfficer\": true,\r\n    \"involvedSuspect\": true,\r\n    \"involvedVictim\": true,\r\n    \"involvedWitness\": true,\r\n    \"involvedVehicle\": true,\r\n    \"involvedProperty\": true,\r\n    \"involvedInmate\": true,\r\n    \"involvedNarrative\": true,\r\n    \"involvedSupervisorReview\": true,\r\n    \"responseToResistanceEcd\": true,\r\n    \"responseToResistanceChemicalAgents\": true,\r\n    \"responseToResistanceImpactWeapons\": true,\r\n    \"responseToResistanceImpactMunitions\": true,\r\n    \"responseToResistanceK9\": true,\r\n    \"responseToResistanceHands\": true,\r\n    \"responseToResistanceTakedowns\": true,\r\n    \"responseToResistanceFirearms\": true,\r\n    \"responseToResistanceStopsticks\": true,\r\n    \"responseToResistanceOther\": false,\r\n    \"supervisorName\": \"John T. Goodman\",\r\n    \"managerNotified\": \"\",\r\n    \"managerName\": \"\",\r\n    \"managerNotifiedTime\": null,\r\n    \"managerArrivedTime\": null,\r\n    \"reasonForUseOfForce\": \"Destroy Animal\",\r\n    \"reasonForUseOfForceOther\": \"\",\r\n    \"incidentType\": \"Burglary\",\r\n    \"incidentTypeOther\": \"\",\r\n    \"trackingId\": 24,\r\n    \"trackingYear\": 2022,\r\n    \"trackingNumber\": \"2022 - 24\",\r\n    \"subReportNumber\": null,\r\n    \"historical\": false,\r\n    \"oldCreatorName\": \"\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"reportType\": \"\",\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"searchNarrative\": \"\",\r\n    \"incidentAddress2\": \"\",\r\n    \"zipCode\": \"\",\r\n    \"latitude\": \"\",\r\n    \"longitude\": \"\",\r\n    \"incidentAmbush\": \"\",\r\n    \"leoApproachSuspect\": \"\",\r\n    \"initialContactReason\": \"\",\r\n    \"forceResults\": \"\",\r\n    \"dontKnowRelatedIncidentCase\": \"\",\r\n    \"totalOfficersOwnAgencyApplyForce\": null,\r\n    \"dontKnowTotalOfficersOwnAgencyApplyForce\": \"\",\r\n    \"totalOfficersAllAgencyApplyForce\": null,\r\n    \"dontKnowTotalOfficersAllAgencyApplyForce\": \"\",\r\n    \"totalSuspectsDeceasedOrInjured\": null,\r\n    \"dontKnowTotalSuspectsDeceasedOrInjured\": \"\",\r\n    \"didOtherAgencyApplyForce\": false,\r\n    \"totalOtherAgencyApplyForce\": null,\r\n    \"otherAgencyCaseNumber\": \"\",\r\n    \"otherAgencyORI\": \"\",\r\n    \"dontKnowAddress\": \"\",\r\n    \"seniorOfficerPresent\": \"\",\r\n    \"seniorOfficerName\": \"\",\r\n    \"seniorOfficerNotifiedTime\": null,\r\n    \"seniorOfficerArrivedTime\": null,\r\n    \"incidentCategory\": \"\",\r\n    \"howmanyOfficersonCall\": \"\",\r\n    \"streetNumber\": \"\",\r\n    \"preDirectional\": \"\",\r\n    \"streetType\": \"\",\r\n    \"postDirectional\": \"\",\r\n    \"lethal\": false,\r\n    \"servicesRendered\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"chemicals\": [\r\n        {\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"chemicalAgentTypeUsed\": \"MK-9 Handheld\",\r\n            \"chemicalSerialNumber\": \"\",\r\n            \"chemicalLotNumber\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds1\": \"2 seconds\",\r\n            \"chemicalDurationOfSprayInSeconds2\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds3\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds4\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds5\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds6\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds7\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds8\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds9\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds10\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds11\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds12\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds13\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds14\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds15\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect1\": \"16-20 feet\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect2\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect3\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect4\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect5\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect6\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect7\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect8\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect9\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect10\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect11\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect12\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect13\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect14\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect15\": \"\",\r\n            \"chemicalBodyPartsSprayed1\": \"Face\",\r\n            \"chemicalBodyPartsSprayed2\": \"\",\r\n            \"chemicalBodyPartsSprayed3\": \"\",\r\n            \"chemicalBodyPartsSprayed4\": \"\",\r\n            \"chemicalBodyPartsSprayed5\": \"\",\r\n            \"chemicalBodyPartsSprayed6\": \"\",\r\n            \"chemicalBodyPartsSprayed7\": \"\",\r\n            \"chemicalBodyPartsSprayed8\": \"\",\r\n            \"chemicalBodyPartsSprayed9\": \"\",\r\n            \"chemicalBodyPartsSprayed10\": \"\",\r\n            \"chemicalBodyPartsSprayed11\": \"\",\r\n            \"chemicalBodyPartsSprayed12\": \"\",\r\n            \"chemicalBodyPartsSprayed13\": \"\",\r\n            \"chemicalBodyPartsSprayed14\": \"\",\r\n            \"chemicalBodyPartsSprayed15\": \"\",\r\n            \"chemicalSuspectDecontaminated\": \"Yes\",\r\n            \"chemicalSuspectDecontaminatedTime\": \"12:12:00\",\r\n            \"chemicalSuspectDecontaminatedBy\": \"The Decontaminator\",\r\n            \"chemicalHowSuspectDecontaminated\": \"Eye Drops\",\r\n            \"chemicalSuspectCompliedAfter\": \"No\",\r\n            \"sprayDuration\": 1,\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"chemicalOnlyDisplayed\": \"No\",\r\n            \"structure\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"chemicalPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Neck\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1555462\",\r\n                    \"createdDate\": \"2022-03-31T08:40:29.1226425\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Face\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1555452\",\r\n                    \"createdDate\": \"2022-03-31T08:40:29.1127161\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1555396\",\r\n            \"createdDate\": \"2022-03-31T08:39:19.2020386\"\r\n        }\r\n    ],\r\n    \"ecds\": [\r\n        {\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"ecdDeploymentType\": \"Probes\",\r\n            \"ecdSerialNumber\": \"\",\r\n            \"ecdCartridgeNumber1\": \"\",\r\n            \"ecdCartridgeNumber2\": \"\",\r\n            \"ecdContactMade\": \"Yes\",\r\n            \"ecdNumberofContactsMade\": \"\",\r\n            \"ecdDeploymentDuration1\": \"4-6 sec\",\r\n            \"ecdDeploymentDistance1\": \"4-9 feet\",\r\n            \"ecdProbe1Connected1\": \"Yes\",\r\n            \"ecdProbe2Connected1\": \"No\",\r\n            \"ecdDeploymentDuration2\": \"10-12 sec\",\r\n            \"ecdDeploymentDistance2\": \"10-15 feet\",\r\n            \"ecdProbe1Connected2\": \"Yes\",\r\n            \"ecdProbe2Connected2\": \"Yes\",\r\n            \"ecdDeploymentDuration3\": \"\",\r\n            \"ecdDeploymentDistance3\": \"\",\r\n            \"ecdProbe1Connected3\": \"\",\r\n            \"ecdProbe2Connected3\": \"\",\r\n            \"ecdDeploymentDuration4\": \"\",\r\n            \"ecdDeploymentDistance4\": \"\",\r\n            \"ecdProbe1Connected4\": \"\",\r\n            \"ecdProbe2Connected4\": \"\",\r\n            \"ecdDeploymentDuration5\": \"\",\r\n            \"ecdDeploymentDistance5\": \"\",\r\n            \"ecdProbe1Connected5\": \"\",\r\n            \"ecdProbe2Connected5\": \"\",\r\n            \"ecdDeploymentDuration6\": \"\",\r\n            \"ecdDeploymentDistance6\": \"\",\r\n            \"ecdProbe1Connected6\": \"\",\r\n            \"ecdProbe2Connected6\": \"\",\r\n            \"ecdDeploymentDuration7\": \"\",\r\n            \"ecdDeploymentDistance7\": \"\",\r\n            \"ecdProbe1Connected7\": \"\",\r\n            \"ecdProbe2Connected7\": \"\",\r\n            \"ecdDeploymentDuration8\": \"\",\r\n            \"ecdDeploymentDistance8\": \"\",\r\n            \"ecdProbe1Connected8\": \"\",\r\n            \"ecdProbe2Connected8\": \"\",\r\n            \"ecdDeploymentDuration9\": \"\",\r\n            \"ecdDeploymentDistance9\": \"\",\r\n            \"ecdProbe1Connected9\": \"\",\r\n            \"ecdProbe2Connected9\": \"\",\r\n            \"ecdDeploymentDuration10\": \"\",\r\n            \"ecdDeploymentDistance10\": \"\",\r\n            \"ecdProbe1Connected10\": \"\",\r\n            \"ecdProbe2Connected10\": \"\",\r\n            \"ecdDeploymentDuration11\": \"\",\r\n            \"ecdDeploymentDistance11\": \"\",\r\n            \"ecdProbe1Connected11\": \"\",\r\n            \"ecdProbe2Connected11\": \"\",\r\n            \"ecdDeploymentDuration12\": \"\",\r\n            \"ecdDeploymentDistance12\": \"\",\r\n            \"ecdProbe1Connected12\": \"\",\r\n            \"ecdProbe2Connected12\": \"\",\r\n            \"ecdDeploymentDuration13\": \"\",\r\n            \"ecdDeploymentDistance13\": \"\",\r\n            \"ecdProbe1Connected13\": \"\",\r\n            \"ecdProbe2Connected13\": \"\",\r\n            \"ecdDeploymentDuration14\": \"\",\r\n            \"ecdDeploymentDistance14\": \"\",\r\n            \"ecdProbe1Connected14\": \"\",\r\n            \"ecdProbe2Connected14\": \"\",\r\n            \"ecdDeploymentDuration15\": \"\",\r\n            \"ecdDeploymentDistance15\": \"\",\r\n            \"ecdProbe1Connected15\": \"\",\r\n            \"ecdProbe2Connected15\": \"\",\r\n            \"ecdProbePenetratedSuspectSkin\": \"Yes\",\r\n            \"ecdProbesRemovedBy\": \"Officer Jimmy\",\r\n            \"ecdSuspectCompliedAfter\": \"Yes\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"deploymentFrequency\": 2,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"ecdOnlyDisplayed\": \"No\",\r\n            \"suspectIncapacitated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"ecdPointOfContact\": [\r\n                {\r\n                    \"pointType\": \"Forearm (back/left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.15551\",\r\n                    \"createdDate\": \"2022-03-31T08:32:29.6557426\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Upper Arm(right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1555082\",\r\n                    \"createdDate\": \"2022-03-31T08:32:29.6492869\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Forearm (front/left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1555093\",\r\n                    \"createdDate\": \"2022-03-31T08:32:29.6556623\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1555022\",\r\n            \"createdDate\": \"2022-03-31T08:29:48.0305239\"\r\n        }\r\n    ],\r\n    \"firearms\": [\r\n        {\r\n            \"firearmDisplayedOnly\": \"No\",\r\n            \"firearmSuspectCompliedAfter\": \"\",\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"firearmMake\": \"Glock\",\r\n            \"firearmModel\": \"Shootmaster17\",\r\n            \"firearmSerialNumber\": \"AB123456\",\r\n            \"firearmDepartmentIssued\": \"Yes\",\r\n            \"firearmPurpose\": \"Primary\",\r\n            \"firearmNumberOfShotsFired\": \"\",\r\n            \"firearmShootingPosition\": \"\",\r\n            \"firearmStrongHandUsed\": \"Yes\",\r\n            \"firearmWeakHandUsed\": \"No\",\r\n            \"firearmReload\": \"\",\r\n            \"firearmAmmoMake\": \"10mm\",\r\n            \"firearmMalfunction\": \"\",\r\n            \"firearmOfficerConcealment\": \"From concealment.\",\r\n            \"firearmOfficerCover\": \"Under cover.\",\r\n            \"pointsOfContact\": \"\",\r\n            \"deployedByOfficer\": \"\",\r\n            \"deployedAtSuspect\": \"\",\r\n            \"accidentalDischarge\": \"\",\r\n            \"negligentDischarge\": \"\",\r\n            \"numberOfShotsFired\": \"02\",\r\n            \"distanceOfShotsfired\": \"\",\r\n            \"handUsedForFiring\": \"Both\",\r\n            \"shootingPosition\": \"Kneeling\",\r\n            \"wasIssuedWeaponUsed\": \"Yes\",\r\n            \"didOfficerHaveToReload\": \"Yes\",\r\n            \"firedBehindCover\": \"Yes\",\r\n            \"firedFromConcealment\": \"Yes\",\r\n            \"wasFirearmUnloaded\": \"\",\r\n            \"didFirearmMalfunction\": \"No\",\r\n            \"wasFirearmUnholstered\": \"\",\r\n            \"suspectComplyAfterFirearmUsed\": \"Yes\",\r\n            \"shotDistance\": \"02:1 foot,1-3 feet\",\r\n            \"pointsOfContact1\": \"\",\r\n            \"firearmUseSuspectCompliedAfter\": \"\",\r\n            \"didOfficerDischargeWeapon\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"firearmPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1558017\",\r\n                    \"createdDate\": \"2022-03-31T10:22:16.9349977\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Stomach\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1558033\",\r\n                    \"createdDate\": \"2022-03-31T10:22:16.9461693\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Groin\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1558041\",\r\n                    \"createdDate\": \"2022-03-31T10:22:16.9463278\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1557198\",\r\n            \"createdDate\": \"2022-03-31T10:19:31.2143932\"\r\n        }\r\n    ],\r\n    \"hands\": [\r\n        {\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"handsTypeUsed\": \"Hands type 1\",\r\n            \"handsSuspectCompliedAfter\": \"No\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"handOnlyDisplayed\": \"\",\r\n            \"totalNumberOfStrikes\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"handPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Head\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556672\",\r\n                    \"createdDate\": \"2022-03-31T10:10:21.7260934\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Upper Arm(left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556662\",\r\n                    \"createdDate\": \"2022-03-31T10:10:21.706868\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1556615\",\r\n            \"createdDate\": \"2022-03-31T10:09:59.2724364\"\r\n        }\r\n    ],\r\n    \"inmates\": [\r\n        {\r\n            \"suspectName\": \"\",\r\n            \"inmateNumber\": \"645\",\r\n            \"inmateDetentionFacility\": \"Juvenile Detention\",\r\n            \"officerName\": \"\",\r\n            \"restraintsUsed\": \"One-Piece Restraints\",\r\n            \"restraintsUsedOther\": \"\",\r\n            \"reasonForceWasApplied\": \"Prevent Escape\",\r\n            \"reasonForceWasAppliedOther\": \"\",\r\n            \"restrainedHours\": \"11\",\r\n            \"restrainedMinute\": \"45\",\r\n            \"inmateHaveWeapon\": \"Yes\",\r\n            \"cell\": \"In the cell\",\r\n            \"nonEditable\": false,\r\n            \"inmateDetentionClassification\": \"\",\r\n            \"suspectBookingNumber\": \"\",\r\n            \"jailViolations\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1554781\",\r\n            \"createdDate\": \"2022-03-31T08:26:24.139984\"\r\n        }\r\n    ],\r\n    \"k9s\": [\r\n        {\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"k9name\": \"Fluffy\",\r\n            \"k9breed\": \"German Shepherd\",\r\n            \"k9type\": \"Cross Certified\",\r\n            \"k9typeOtherDescription\": \"\",\r\n            \"k9reasonDeployed\": \"Citizen Protection\",\r\n            \"k9nnumberBites\": \"02\",\r\n            \"k9suspectCompliedAfter\": \"No\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"k9OnlyDisplayed\": \"No\",\r\n            \"k9Category\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"k9PointOfContactId\": [\r\n                {\r\n                    \"pointType\": \"Face\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556388\",\r\n                    \"createdDate\": \"2022-03-31T10:07:25.3513747\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Head\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556401\",\r\n                    \"createdDate\": \"2022-03-31T10:07:25.3594875\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.155634\",\r\n            \"createdDate\": \"2022-03-31T10:06:22.9930873\"\r\n        }\r\n    ],\r\n    \"munitions\": [\r\n        {\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"munitionSuspectHit\": \"Yes\",\r\n            \"munitionWeaponMake\": \"Impact munitions weapon make 1\",\r\n            \"munitionSerialNumber\": \"D123456\",\r\n            \"munitionDeploymentType\": \"Impact munitions deployment type 1\",\r\n            \"munitionExactImpact\": \"Yes\",\r\n            \"munitionContactMade\": \"Yes\",\r\n            \"munitionDeploymentDistance1\": \"3-5 feet\",\r\n            \"munitionNumberOfRounds1\": \"02\",\r\n            \"munitionCaliberUsed1\": \"Caliber 2\",\r\n            \"munitionDeploymentDistance2\": \"16-20 feet\",\r\n            \"munitionNumberOfRounds2\": \"01\",\r\n            \"munitionCaliberUsed2\": \"Caliber 1\",\r\n            \"munitionDeploymentDistance3\": \"\",\r\n            \"munitionNumberOfRounds3\": \"\",\r\n            \"munitionCaliberUsed3\": \"\",\r\n            \"munitionDeploymentDistance4\": \"\",\r\n            \"munitionNumberOfRounds4\": \"\",\r\n            \"munitionCaliberUsed4\": \"\",\r\n            \"munitionDeploymentDistance5\": \"\",\r\n            \"munitionNumberOfRounds5\": \"\",\r\n            \"munitionCaliberUsed5\": \"\",\r\n            \"munitionDeploymentDistance6\": \"\",\r\n            \"munitionNumberOfRounds6\": \"\",\r\n            \"munitionCaliberUsed6\": \"\",\r\n            \"munitionDeploymentDistance7\": \"\",\r\n            \"munitionNumberOfRounds7\": \"\",\r\n            \"munitionCaliberUsed7\": \"\",\r\n            \"munitionDeploymentDistance8\": \"\",\r\n            \"munitionNumberOfRounds8\": \"\",\r\n            \"munitionCaliberUsed8\": \"\",\r\n            \"munitionDeploymentDistance9\": \"\",\r\n            \"munitionNumberOfRounds9\": \"\",\r\n            \"munitionCaliberUsed9\": \"\",\r\n            \"munitionDeploymentDistance10\": \"\",\r\n            \"munitionNumberOfRounds10\": \"\",\r\n            \"munitionCaliberUsed10\": \"\",\r\n            \"munitionDeploymentDistance11\": \"\",\r\n            \"munitionNumberOfRounds11\": \"\",\r\n            \"munitionCaliberUsed11\": \"\",\r\n            \"munitionDeploymentDistance12\": \"\",\r\n            \"munitionNumberOfRounds12\": \"\",\r\n            \"munitionCaliberUsed12\": \"\",\r\n            \"munitionCaliberUsed13\": \"\",\r\n            \"munitionDeploymentDistance13\": \"\",\r\n            \"munitionNumberOfRounds13\": \"\",\r\n            \"munitionCaliberUsed14\": \"\",\r\n            \"munitionDeploymentDistance14\": \"\",\r\n            \"munitionNumberOfRounds14\": \"\",\r\n            \"munitionCaliberUsed15\": \"\",\r\n            \"munitionDeploymentDistance15\": \"\",\r\n            \"munitionNumberOfRounds15\": \"\",\r\n            \"munitionSuspectCompliedAfter\": \"No\",\r\n            \"deploymentFrequency\": 2,\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"munitionOnlyDisplayed\": \"No\",\r\n            \"primaryReferenceId\": null,\r\n            \"munitionPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Hamstring (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556094\",\r\n                    \"createdDate\": \"2022-03-31T10:03:26.807794\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Hand (left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556085\",\r\n                    \"createdDate\": \"2022-03-31T10:03:26.8076683\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Thigh (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556077\",\r\n                    \"createdDate\": \"2022-03-31T10:03:26.8074169\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Palm (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556067\",\r\n                    \"createdDate\": \"2022-03-31T10:03:26.7950936\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1556017\",\r\n            \"createdDate\": \"2022-03-31T10:02:16.7749472\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrative\": \"This is one great narrative.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1605455\",\r\n            \"createdDate\": \"2022-03-30T16:38:53.7344588\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"officerId\": \"1\",\r\n            \"firstName\": \"Durand\",\r\n            \"middleName\": \"\",\r\n            \"lastName\": \"Peterson\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerOnDuty\": \"Yes\",\r\n            \"officerPermanentAssignment\": \"North Sector\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"address\": \"\",\r\n            \"city\": \"\",\r\n            \"state\": \"\",\r\n            \"race\": \"Native Hawaiian or Other Pacific Islander\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"\",\r\n            \"age\": \"35\",\r\n            \"height\": \"5ft 4in\",\r\n            \"weight\": \"150\",\r\n            \"build\": \"\",\r\n            \"officerYearsWithAgency\": \"12\",\r\n            \"officerTotalYearsInLawEnforcement\": \"12\",\r\n            \"education\": \"16\",\r\n            \"officerInjured\": \"Yes\",\r\n            \"officerInjuryType\": \"Gunshot\",\r\n            \"officerInjurySeverity\": \"Fatal injury\",\r\n            \"officerHowInjuryOccurred\": \"Other Suspect\",\r\n            \"officerMedicalTreatmentReceived\": \"Yes\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\r\n            \"officerTransported\": \"Yes\",\r\n            \"officerTransportedBy\": \"EMS\",\r\n            \"officerTransportedTo\": \"The Hospital\",\r\n            \"officerTransportedTime\": \"12:12:00\",\r\n            \"officerInjuryPhotos\": \"\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"cit\": \"\",\r\n            \"nonEditable\": false,\r\n            \"deescalation\": \"Maximized the use of cover or concealment to reduce exposure to potential threats by placing the officer in a safer position\",\r\n            \"bodyWornCamera\": \"Yes\",\r\n            \"activated\": \"Yes\",\r\n            \"didOfficerUseForce\": \"\",\r\n            \"employmentFullTime\": \"\",\r\n            \"dontKnowAge\": \"\",\r\n            \"dontKnowHeight\": \"\",\r\n            \"dontKnowWeight\": \"\",\r\n            \"dontKnowYearsOfService\": \"\",\r\n            \"leoInjuredNIBRSIncidentNumber\": \"\",\r\n            \"dontKnowLEOInjuredNIBRSIncidentNumber\": \"\",\r\n            \"officerMedicalTreatmentReceivedByDropdown\": \"\",\r\n            \"officerTransportedByDropDown\": \"\",\r\n            \"officerTransportedToDropDown\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"officerPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553148\",\r\n                    \"createdDate\": \"2022-03-31T07:27:07.9672071\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Upper Back\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553234\",\r\n                    \"createdDate\": \"2022-03-31T07:27:07.9838475\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Lower Back\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553243\",\r\n                    \"createdDate\": \"2022-03-31T07:27:07.9839961\"\r\n                }\r\n            ],\r\n            \"victimRelationshipsToOfficer\": [\r\n                {\r\n                    \"officerId\": 17379,\r\n                    \"victimRelationshipToPrimaryOfficer\": \"Not Applicable\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553742\",\r\n                    \"createdDate\": \"2022-03-31T07:55:38.1119273\"\r\n                }\r\n            ],\r\n            \"witnessRelationshipsToOfficer\": [\r\n                {\r\n                    \"officerId\": 17379,\r\n                    \"witnessRelationshipToPrimaryOfficer\": \"Student\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1554101\",\r\n                    \"createdDate\": \"2022-03-31T08:10:38.2610567\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1553081\",\r\n            \"createdDate\": \"2022-03-30T16:38:53.730113\"\r\n        }\r\n    ],\r\n    \"properties\": [\r\n        {\r\n            \"owner\": \"Sara Smith (Witness)\",\r\n            \"propertyType\": \"LEGO Collection\",\r\n            \"propertyValue\": \"5.36\",\r\n            \"propertyOwnerName\": \"\",\r\n            \"propertyOwnerAddress\": \"\",\r\n            \"city\": \"\",\r\n            \"state\": \"\",\r\n            \"propertyOwnerEmail\": \"\",\r\n            \"propertyOwnerPhone1\": \"\",\r\n            \"propertyOwnerPhone2\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"propertyOwnerDateOfBirth\": \"\",\r\n            \"age\": \"\",\r\n            \"nonEditable\": false,\r\n            \"propertyCategory\": \"\",\r\n            \"propertyMethod\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.155458\",\r\n            \"createdDate\": \"2022-03-31T08:24:50.1622924\"\r\n        }\r\n    ],\r\n    \"stopSticks\": [\r\n        {\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"Mercury\",\r\n            \"vehicleModel\": \"Hooptie\",\r\n            \"vehicleYear\": \"1992\",\r\n            \"vehicleTag\": \"FL1234\",\r\n            \"stopstickOfficerTrainedInTechnique\": \"Yes\",\r\n            \"stopstickInvolvedStopSticksUsed\": \"Yes\",\r\n            \"stopstickPitManeuverUsed\": \"Yes\",\r\n            \"stopstickBoxinTechniqueUsed\": \"Yes\",\r\n            \"interventionUsed\": \"Intervention Used\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"stopstickOnlyDisplayed\": \"\",\r\n            \"state\": \"FL\",\r\n            \"primaryReferenceId\": null,\r\n            \"stopStickInfo\": [\r\n                {\r\n                    \"stopstickInvolvedStopStickNumber\": \"Stick of Justice\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.159785\",\r\n                    \"createdDate\": \"2022-03-31T10:26:43.8557914\"\r\n                },\r\n                {\r\n                    \"stopstickInvolvedStopStickNumber\": \"Stick of Truth\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1597918\",\r\n                    \"createdDate\": \"2022-03-31T10:26:54.2577357\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1579897\",\r\n            \"createdDate\": \"2022-03-31T10:25:48.1043358\"\r\n        }\r\n    ],\r\n    \"suspects\": [\r\n        {\r\n            \"firstName\": \"John\",\r\n            \"middleName\": \"Jason\",\r\n            \"lastName\": \"Smith\",\r\n            \"suspectAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"suspectDateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"height\": \"5ft 6in\",\r\n            \"weight\": \" 171-180\",\r\n            \"build\": \"Thin\",\r\n            \"education\": \"\",\r\n            \"suspectActionsPresence\": true,\r\n            \"suspectActionsPassiveResistance\": true,\r\n            \"suspectActionsVerbalResistance\": true,\r\n            \"suspectActionsActiveAggression\": true,\r\n            \"suspectActionsAggressivePhysical\": true,\r\n            \"suspectActionsAggravatedPhysical\": true,\r\n            \"suspectActionsOther\": false,\r\n            \"suspectOfficersResponsePresence\": true,\r\n            \"suspectOfficersResponsePassiveResistance\": true,\r\n            \"suspectOfficersResponseVerbalResistance\": true,\r\n            \"suspectOfficersResponseAggression\": true,\r\n            \"suspectOfficersResponseAggravatedPhysical\": true,\r\n            \"suspectOfficersResponseOther\": false,\r\n            \"suspectOfficersResponseLevel7\": null,\r\n            \"suspectOfficersResponseLevel8\": null,\r\n            \"suspectWeaponUsedHands\": true,\r\n            \"suspectWeaponUsedBluntObject\": true,\r\n            \"suspectWeaponUsedEdgedObject\": true,\r\n            \"suspectWeaponUsedFirearm\": true,\r\n            \"suspectWeaponUsedOther\": true,\r\n            \"suspectArrested\": \"Yes\",\r\n            \"suspectWhyNotArrested\": \"\",\r\n            \"suspectArrestCharge\": \"28-1911 Failure to yield\",\r\n            \"suspectArrestedForFelony\": \"\",\r\n            \"suspectArresteeDeliveredTo\": \"\",\r\n            \"suspectJailNumber\": \"\",\r\n            \"suspectConditionPriorMellow\": false,\r\n            \"suspectConditionPriorDepressed\": false,\r\n            \"suspectConditionPriorAngry\": false,\r\n            \"suspectConditionPriorDisoriented\": true,\r\n            \"suspectConditionPriorDrugs\": true,\r\n            \"suspectConditionPriorAlcohol\": false,\r\n            \"suspectConditionPriorFighting\": false,\r\n            \"suspectConditionPriorOther\": false,\r\n            \"suspectConditionPostMellow\": true,\r\n            \"suspectConditionPostDepressed\": true,\r\n            \"suspectConditionPostAngry\": false,\r\n            \"suspectConditionPostDisoriented\": false,\r\n            \"suspectConditionPostDrugs\": false,\r\n            \"suspectConditionPostAlcohol\": false,\r\n            \"suspectConditionPostFighting\": false,\r\n            \"suspectConditionPostOther\": false,\r\n            \"suspectConditionPriorComment\": \"\",\r\n            \"suspectConditionPostComment\": \"\",\r\n            \"suspectInjured\": \"Yes\",\r\n            \"suspectInjuryType\": \"Gunshot\",\r\n            \"suspectInjurySeverity\": \"Fatal\",\r\n            \"howInjuryOccurredToSuspect\": \"Other Suspect\",\r\n            \"medicalTreatmentOfSuspect\": \"Yes\",\r\n            \"medicalTreatmentOfSuspectBy\": \"The Doctor\",\r\n            \"suspectTransported\": \"Yes\",\r\n            \"suspectTransportedBy\": \"EMS\",\r\n            \"suspectTransportedTo\": \"The Hospital\",\r\n            \"suspectTransportedTime\": \"12:12:00\",\r\n            \"suspectInjuryPhotos\": \"\",\r\n            \"suspectInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"suspectExhibitsSignsofExcitedDelirium\": \"Yes\",\r\n            \"deliriumSignsDisplayed\": \"Incoherent Speech\",\r\n            \"suspectShowedSignsofMentalIllness\": \"Yes\",\r\n            \"showedSignsMentalIllness\": \"Depression\",\r\n            \"showedSignsMentalIllnessothers\": \"\",\r\n            \"rank1\": 1,\r\n            \"rank2\": 2,\r\n            \"rank3\": 4,\r\n            \"rank4\": 3,\r\n            \"rank5\": 6,\r\n            \"rank6\": 5,\r\n            \"rank7\": null,\r\n            \"rank8\": 1,\r\n            \"rank9\": 2,\r\n            \"rank10\": 5,\r\n            \"rank11\": 3,\r\n            \"rank12\": 4,\r\n            \"rank13\": null,\r\n            \"rank14\": null,\r\n            \"rank15\": null,\r\n            \"comments\": \"\",\r\n            \"nonEditable\": false,\r\n            \"arrestDate\": \"03/06/2022\",\r\n            \"arrestTime\": \"12:12:00\",\r\n            \"suspectForceCategory\": \"\",\r\n            \"suspectResistedType\": \"\",\r\n            \"suspectThreatPerson\": \"\",\r\n            \"estimatedAgeRange\": \"\",\r\n            \"dontKnowAge\": \"\",\r\n            \"knownImpairment\": \"\",\r\n            \"knownImpairmentType\": \"\",\r\n            \"suspectResisted\": \"\",\r\n            \"suspectArmed\": \"\",\r\n            \"dontKnowCharges\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"suspectTransportedByDropDown\": \"\",\r\n            \"suspectTransportedToDropDown\": \"\",\r\n            \"threatFactors\": \"\",\r\n            \"deEscalation\": \"\",\r\n            \"suspectWeaponUsedOption6\": null,\r\n            \"suspectWeaponUsedOption7\": null,\r\n            \"suspectWeaponUsedOption8\": null,\r\n            \"suspectWeaponUsedOption9\": null,\r\n            \"suspectDisabilities\": \"\",\r\n            \"knowledgeofSuspectDisability\": \"\",\r\n            \"mobilityDevices\": \"\",\r\n            \"remoteInterpreterUsed\": \"\",\r\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\r\n            \"suspectCategory\": \"\",\r\n            \"suffix\": \"\",\r\n            \"genderIdentify\": \"\",\r\n            \"inmateNumber\": \"\",\r\n            \"custodyLocation\": \"\",\r\n            \"civilianDistance\": \"\",\r\n            \"civilianResistance\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"suspectPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Face\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1552525\",\r\n                    \"createdDate\": \"2022-03-31T07:51:55.762061\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1552539\",\r\n                    \"createdDate\": \"2022-03-31T07:51:55.7712345\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Upper Arm (back/left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1552548\",\r\n                    \"createdDate\": \"2022-03-31T07:51:55.7713131\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Heel (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1552559\",\r\n                    \"createdDate\": \"2022-03-31T07:51:55.7713485\"\r\n                }\r\n            ],\r\n            \"victimsRelationshipToSuspects\": [\r\n                {\r\n                    \"suspectId\": 16291,\r\n                    \"victimRelationshipToSuspect\": \"Friend\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553785\",\r\n                    \"createdDate\": \"2022-03-31T07:55:38.1255588\"\r\n                }\r\n            ],\r\n            \"witnessesRelationshipToSuspects\": [\r\n                {\r\n                    \"suspectId\": 16291,\r\n                    \"witnessRelationshipToSuspect\": \"Grandchild\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1554144\",\r\n                    \"createdDate\": \"2022-03-31T08:10:38.2719561\"\r\n                }\r\n            ],\r\n            \"suspectChargeClassifications\": [\r\n                {\r\n                    \"charge\": \"28-1911 Failure to yield\",\r\n                    \"chargeClasification1\": false,\r\n                    \"chargeClasification2\": true,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1552747\",\r\n                    \"createdDate\": \"2022-03-31T07:46:55.2992666\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1552441\",\r\n            \"createdDate\": \"2022-03-31T07:38:33.8188774\"\r\n        }\r\n    ],\r\n    \"takedowns\": [\r\n        {\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"takedownTypeUsed\": \"Leg Sweep\",\r\n            \"takedownSuspectCompliedAfter\": \"No\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"takedownOnlyDisplayed\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"takedownPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Hip (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.155694\",\r\n                    \"createdDate\": \"2022-03-31T10:13:18.6983448\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Glutes\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556962\",\r\n                    \"createdDate\": \"2022-03-31T10:13:18.7054275\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Groin\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1556953\",\r\n                    \"createdDate\": \"2022-03-31T10:13:18.70534\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1556891\",\r\n            \"createdDate\": \"2022-03-31T10:12:50.0678837\"\r\n        }\r\n    ],\r\n    \"vehicles\": [\r\n        {\r\n            \"driver\": \"John Smith (Suspect)\",\r\n            \"owner\": \"John Smith (Suspect)\",\r\n            \"passengers\": \"John Smith (Suspect)\",\r\n            \"vehicleType\": \"Motorcycle\",\r\n            \"vehicleMake\": \"BMW\",\r\n            \"vehicleModel\": \"Motormaster 8000\",\r\n            \"year\": \"2019\",\r\n            \"vehicleTag\": \"FL1234\",\r\n            \"state\": \"FL\",\r\n            \"vehicleSpeedDuringIncident\": \"41-50 MPH\",\r\n            \"nonEditable\": false,\r\n            \"vehicleDamage\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1554392\",\r\n            \"createdDate\": \"2022-03-31T08:20:26.3587222\"\r\n        }\r\n    ],\r\n    \"victims\": [\r\n        {\r\n            \"firstName\": \"Sara\",\r\n            \"middleName\": \"Jane\",\r\n            \"lastName\": \"Smith\",\r\n            \"victimAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"victimEmail\": \"sarasmith@gmail.com\",\r\n            \"victimPhone1\": \"111-111-1111 x11111\",\r\n            \"victimPhone2\": \"222-222-2222 x_____\",\r\n            \"race\": \"Hispanic/Latino\",\r\n            \"gender\": \"Female\",\r\n            \"victimDateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"suspectName1\": \"\",\r\n            \"victimRelationshipToSuspect1\": \"\",\r\n            \"officerName1\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer1\": \"\",\r\n            \"suspectName2\": \"\",\r\n            \"victimRelationshipToSuspect2\": \"\",\r\n            \"officerName2\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer2\": \"\",\r\n            \"suspectName3\": \"\",\r\n            \"victimRelationshipToSuspect3\": \"\",\r\n            \"officerName3\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer3\": \"\",\r\n            \"suspectName4\": \"\",\r\n            \"victimRelationshipToSuspect4\": \"\",\r\n            \"officerName4\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer4\": \"\",\r\n            \"suspectName5\": \"\",\r\n            \"victimRelationshipToSuspect5\": \"\",\r\n            \"officerName5\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer5\": \"\",\r\n            \"victimInjured\": \"Yes\",\r\n            \"victimInjuryType\": \"Blunt Trauma\",\r\n            \"victimInjurySeverity\": \"Non-Incapacitating\",\r\n            \"victimHowInjuryToVictimOccurred\": \"Suspect's Actions\",\r\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\r\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\r\n            \"victimTransported\": \"Yes\",\r\n            \"victimTransportedBy\": \"EMS\",\r\n            \"victimTransportedTo\": \"The Hospital\",\r\n            \"victimTransportedTime\": \"12:12:00\",\r\n            \"victimInjuryPhotos\": \"\",\r\n            \"victimInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"officerRole\": \"\",\r\n            \"outsideAgency\": \"\",\r\n            \"victimMedicalTreatmentOfVictimByDropdown\": \"\",\r\n            \"victimTransportedByDropDown\": \"\",\r\n            \"victimTransportedToDropDown\": \"\",\r\n            \"victimInUniform\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"victimPointsOfContact\": [\r\n                {\r\n                    \"pointType\": \"Palm (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553661\",\r\n                    \"createdDate\": \"2022-03-31T07:57:03.5657655\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Forearm (front/right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553651\",\r\n                    \"createdDate\": \"2022-03-31T07:57:03.5541222\"\r\n                }\r\n            ],\r\n            \"victimRelationshipsToOfficer\": [\r\n                {\r\n                    \"officerId\": 17379,\r\n                    \"victimRelationshipToPrimaryOfficer\": \"Not Applicable\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553742\",\r\n                    \"createdDate\": \"2022-03-31T07:55:38.1119273\"\r\n                }\r\n            ],\r\n            \"victimRelationshipsToSuspect\": [\r\n                {\r\n                    \"suspectId\": 16291,\r\n                    \"victimRelationshipToSuspect\": \"Friend\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1553785\",\r\n                    \"createdDate\": \"2022-03-31T07:55:38.1255588\"\r\n                }\r\n            ],\r\n            \"witnessRelationshipsToVictim\": [\r\n                {\r\n                    \"victimId\": 9058,\r\n                    \"witnessRelationshipToVictim\": \"Stranger\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1554184\",\r\n                    \"createdDate\": \"2022-03-31T08:10:38.293565\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1553581\",\r\n            \"createdDate\": \"2022-03-31T07:53:09.935196\"\r\n        }\r\n    ],\r\n    \"weapons\": [\r\n        {\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"weaponTypeUsed\": \"Flashlight\",\r\n            \"weaponTotalNumberOfStrikes\": \"16\",\r\n            \"weaponBodyPartMadeContactWith1\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds1\": \"\",\r\n            \"weaponBodyPartMadeContactWith2\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds2\": \"\",\r\n            \"weaponBodyPartMadeContactWith3\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds3\": \"\",\r\n            \"weaponBodyPartMadeContactWith4\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds4\": \"\",\r\n            \"weaponBodyPartMadeContactWith5\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds5\": \"\",\r\n            \"weaponBodyPartMadeContactWith6\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds6\": \"\",\r\n            \"weaponBodyPartMadeContactWith7\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds7\": \"\",\r\n            \"weaponBodyPartMadeContactWith8\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds8\": \"\",\r\n            \"weaponBodyPartMadeContactWith9\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds9\": \"\",\r\n            \"weaponBodyPartMadeContactWith10\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds10\": \"\",\r\n            \"weaponBodyPartMadeContactWith11\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds11\": \"\",\r\n            \"weaponBodyPartMadeContactWith12\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds12\": \"\",\r\n            \"weaponBodyPartMadeContactWith13\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds13\": \"\",\r\n            \"weaponBodyPartMadeContactWith14\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds14\": \"\",\r\n            \"weaponBodyPartMadeContactWith15\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds15\": \"\",\r\n            \"weaponSuspectCompliedAfter\": \"Yes\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"impactContact\": 1,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"weaponOnlyDisplayed\": \"No\",\r\n            \"bodyPartsAimedFor\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"weaponPointOfContact\": [\r\n                {\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1555769\",\r\n                    \"createdDate\": \"2022-03-31T09:59:20.1319928\"\r\n                },\r\n                {\r\n                    \"pointType\": \"Upper Arm(right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.155576\",\r\n                    \"createdDate\": \"2022-03-31T09:59:20.1237622\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1555708\",\r\n            \"createdDate\": \"2022-03-31T09:57:57.1988885\"\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"firstName\": \"Sara\",\r\n            \"middleName\": \"Jane\",\r\n            \"lastName\": \"Smith\",\r\n            \"witnessAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"witnessEmail\": \"sarasmith@gmail.com\",\r\n            \"witnessPhone1\": \"111-111-1111 x111__\",\r\n            \"witnessPhone2\": \"222-222-2222 x_____\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Female\",\r\n            \"witnessDateOfBirth\": \"03/01/1980\",\r\n            \"suspectName1\": \"\",\r\n            \"witnessRelationshipToSuspect1\": \"\",\r\n            \"officerName1\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer1\": \"\",\r\n            \"victimName1\": \"\",\r\n            \"witnessRelationshipToVictim1\": \"\",\r\n            \"suspectName2\": \"\",\r\n            \"witnessRelationshipToSuspect2\": \"\",\r\n            \"officerName2\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer2\": \"\",\r\n            \"victimName2\": \"\",\r\n            \"witnessRelationshipToVictim2\": \"\",\r\n            \"suspectName3\": \"\",\r\n            \"witnessRelationshipToSuspect3\": \"\",\r\n            \"officerName3\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer3\": \"\",\r\n            \"victimName3\": \"\",\r\n            \"witnessRelationshipToVictim3\": \"\",\r\n            \"suspectName4\": \"\",\r\n            \"witnessRelationshipToSuspect4\": \"\",\r\n            \"officerName4\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer4\": \"\",\r\n            \"victimName4\": \"\",\r\n            \"witnessRelationshipToVictim4\": \"\",\r\n            \"suspectName5\": \"\",\r\n            \"witnessRelationshipToSuspect5\": \"\",\r\n            \"officerName5\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer5\": \"\",\r\n            \"victimName5\": \"\",\r\n            \"witnessRelationshipToVictim5\": \"\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"witnessRelationshipsToOfficer\": [\r\n                {\r\n                    \"officerId\": 17379,\r\n                    \"witnessRelationshipToPrimaryOfficer\": \"Student\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1554101\",\r\n                    \"createdDate\": \"2022-03-31T08:10:38.2610567\"\r\n                }\r\n            ],\r\n            \"witnessRelationshipsToSuspect\": [\r\n                {\r\n                    \"suspectId\": 16291,\r\n                    \"witnessRelationshipToSuspect\": \"Grandchild\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1554144\",\r\n                    \"createdDate\": \"2022-03-31T08:10:38.2719561\"\r\n                }\r\n            ],\r\n            \"witnessRelationshipsToVictim\": [\r\n                {\r\n                    \"victimId\": 9058,\r\n                    \"witnessRelationshipToVictim\": \"Stranger\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-03-31T10:27:10.1554184\",\r\n                    \"createdDate\": \"2022-03-31T08:10:38.293565\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T10:27:10.1554048\",\r\n            \"createdDate\": \"2022-03-31T08:10:17.7254053\"\r\n        }\r\n    ],\r\n    \"reviews\": [\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T08:14:36.0446614\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T08:14:36.0446614\",\r\n            \"createdDate\": \"2022-04-01T08:14:36.0444879\"\r\n        },\r\n        {\r\n            \"userId\": 95475,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T08:14:36.0506334\",\r\n            \"reviewGroupId\": 0,\r\n            \"modifiedDate\": \"2022-04-01T08:14:36.0506334\",\r\n            \"createdDate\": \"2022-04-01T08:14:36.0506323\"\r\n        }\r\n    ],\r\n    \"reviewFormValues\": [\r\n        {\r\n            \"title\": \"Supervisor assessment of incident:\",\r\n            \"type\": \"Textarea\",\r\n            \"value\": \"\",\r\n            \"ordinal\": 1,\r\n            \"indent\": 0,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 17390,\r\n            \"modifiedDate\": \"2022-03-30T16:38:53.7398424\",\r\n            \"createdDate\": \"2022-03-30T16:38:53.7397978\"\r\n        },\r\n        {\r\n            \"title\": \"RECOMMENDATION\",\r\n            \"type\": \"Header\",\r\n            \"value\": \"\",\r\n            \"ordinal\": 2,\r\n            \"indent\": 1,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 17390,\r\n            \"modifiedDate\": \"2022-03-30T16:38:53.739932\",\r\n            \"createdDate\": \"2022-03-30T16:38:53.7399318\"\r\n        },\r\n        {\r\n            \"title\": \"Was policy violated?\",\r\n            \"type\": \"Checkbox\",\r\n            \"value\": \"Yes|||No\",\r\n            \"ordinal\": 3,\r\n            \"indent\": 2,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 17390,\r\n            \"modifiedDate\": \"2022-03-30T16:38:53.7399403\",\r\n            \"createdDate\": \"2022-03-30T16:38:53.7399402\"\r\n        },\r\n        {\r\n            \"title\": \"Is additional training recommended?\",\r\n            \"type\": \"Checkbox\",\r\n            \"value\": \"Yes|||No\",\r\n            \"ordinal\": 4,\r\n            \"indent\": 2,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 17390,\r\n            \"modifiedDate\": \"2022-03-30T16:38:53.7399484\",\r\n            \"createdDate\": \"2022-03-30T16:38:53.7399482\"\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-03-31T10:27:10.1606181\",\r\n    \"createdDate\": \"2022-03-30T16:38:53.7104674\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/facts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcZmFjdHM=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Apr 2022 19:16:21 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"incidentId\": 17391,\n    \"creator\": \"\",\n    \"reviewer\": \"\",\n    \"creatorId\": 8,\n    \"status\": \"Editing\",\n    \"fdleSubmissionStatus\": \"\",\n    \"incidentCaseNumber\": \"TestCase-002\",\n    \"relatedIncidentCase\": \"\",\n    \"incidentDate\": \"03/01/2022\",\n    \"incidentTime\": \"12:12:00\",\n    \"reportDate\": \"03/30/2022\",\n    \"reportTime\": \"16:38:00\",\n    \"incidentSupervisorNotified\": \"Yes\",\n    \"incidentSupervisorNumber\": \"\",\n    \"incidentSupervisorNotifiedTime\": \"12:12:00\",\n    \"incidentSupervisorArrivedTime\": \"13:12:00\",\n    \"incidentVideoAttached\": \"\",\n    \"incidentDocumentAttached\": \"\",\n    \"incidentAddress\": \"1234 Main Street\",\n    \"city\": \"Tampa\",\n    \"state\": \"FL\",\n    \"area\": \"District 731\",\n    \"district\": \"East\",\n    \"sector\": \"A-2\",\n    \"subsector\": \"Bravo - 1\",\n    \"locationTypeApartment\": false,\n    \"locationTypeResidence\": false,\n    \"locationTypeHotelMotel\": false,\n    \"locationTypeRestaurantBar\": false,\n    \"locationTypeParkingLot\": false,\n    \"locationTypeOpenField\": false,\n    \"locationTypeWoodedArea\": false,\n    \"locationTypeOther\": false,\n    \"lightingConditionsDaylight\": false,\n    \"lightingConditionsDusk\": false,\n    \"lightingConditionsDawn\": false,\n    \"lightingConditionsDarkLighted\": false,\n    \"lightingConditionsDarkNotLighted\": false,\n    \"lightingConditionsDarkUnknownLighting\": false,\n    \"lightingConditionsOther\": false,\n    \"weatherConditionsClear\": false,\n    \"weatherConditionsCloudy\": false,\n    \"weatherConditionsRain\": false,\n    \"weatherConditionsSnow\": false,\n    \"weatherConditionsWindy\": false,\n    \"weatherConditionsFogSmokeSmog\": false,\n    \"weatherConditionsSleetHail\": false,\n    \"weatherConditionsOther\": false,\n    \"locationType\": \"Camp/ Campground (42)\",\n    \"lightingCondition\": \"\",\n    \"weatherCondition\": \"\",\n    \"involvedOfficer\": true,\n    \"involvedSuspect\": true,\n    \"involvedVictim\": true,\n    \"involvedWitness\": true,\n    \"involvedVehicle\": true,\n    \"involvedProperty\": true,\n    \"involvedInmate\": true,\n    \"involvedNarrative\": true,\n    \"involvedSupervisorReview\": true,\n    \"responseToResistanceEcd\": true,\n    \"responseToResistanceChemicalAgents\": true,\n    \"responseToResistanceImpactWeapons\": true,\n    \"responseToResistanceImpactMunitions\": true,\n    \"responseToResistanceK9\": true,\n    \"responseToResistanceHands\": true,\n    \"responseToResistanceTakedowns\": true,\n    \"responseToResistanceFirearms\": true,\n    \"responseToResistanceStopsticks\": true,\n    \"responseToResistanceOther\": false,\n    \"supervisorName\": \"John T. Goodman\",\n    \"managerNotified\": \"\",\n    \"managerName\": \"\",\n    \"managerNotifiedTime\": null,\n    \"managerArrivedTime\": null,\n    \"reasonForUseOfForce\": \"Destroy Animal\",\n    \"reasonForUseOfForceOther\": \"\",\n    \"incidentType\": \"Burglary\",\n    \"incidentTypeOther\": \"\",\n    \"trackingId\": 25,\n    \"trackingYear\": 2022,\n    \"trackingNumber\": \"2022 - 25\",\n    \"subReportNumber\": null,\n    \"historical\": false,\n    \"oldCreatorName\": \"\",\n    \"routing\": \"Command Staff\",\n    \"deleteComments\": \"\",\n    \"reportType\": \"\",\n    \"nonEditable\": false,\n    \"sealed\": false,\n    \"searchNarrative\": \"\",\n    \"incidentAddress2\": \"\",\n    \"zipCode\": \"\",\n    \"latitude\": \"\",\n    \"longitude\": \"\",\n    \"incidentAmbush\": \"\",\n    \"leoApproachSuspect\": \"\",\n    \"initialContactReason\": \"\",\n    \"forceResults\": \"\",\n    \"dontKnowRelatedIncidentCase\": \"\",\n    \"totalOfficersOwnAgencyApplyForce\": null,\n    \"dontKnowTotalOfficersOwnAgencyApplyForce\": \"\",\n    \"totalOfficersAllAgencyApplyForce\": null,\n    \"dontKnowTotalOfficersAllAgencyApplyForce\": \"\",\n    \"totalSuspectsDeceasedOrInjured\": null,\n    \"dontKnowTotalSuspectsDeceasedOrInjured\": \"\",\n    \"didOtherAgencyApplyForce\": false,\n    \"totalOtherAgencyApplyForce\": null,\n    \"otherAgencyCaseNumber\": \"\",\n    \"otherAgencyORI\": \"\",\n    \"dontKnowAddress\": \"\",\n    \"seniorOfficerPresent\": \"\",\n    \"seniorOfficerName\": \"\",\n    \"seniorOfficerNotifiedTime\": null,\n    \"seniorOfficerArrivedTime\": null,\n    \"incidentCategory\": \"\",\n    \"howmanyOfficersonCall\": \"\",\n    \"streetNumber\": \"\",\n    \"preDirectional\": \"\",\n    \"streetType\": \"\",\n    \"postDirectional\": \"\",\n    \"lethal\": false,\n    \"servicesRendered\": \"\",\n    \"primaryReferenceId\": null,\n    \"chemicals\": [\n        {\n            \"chemicalId\": 17157,\n            \"incidentId\": 17391,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"chemicalAgentTypeUsed\": \"MK-9 Handheld\",\n            \"chemicalSerialNumber\": \"\",\n            \"chemicalLotNumber\": \"\",\n            \"chemicalDurationOfSprayInSeconds1\": \"2 seconds\",\n            \"chemicalDurationOfSprayInSeconds2\": \"\",\n            \"chemicalDurationOfSprayInSeconds3\": \"\",\n            \"chemicalDurationOfSprayInSeconds4\": \"\",\n            \"chemicalDurationOfSprayInSeconds5\": \"\",\n            \"chemicalDurationOfSprayInSeconds6\": \"\",\n            \"chemicalDurationOfSprayInSeconds7\": \"\",\n            \"chemicalDurationOfSprayInSeconds8\": \"\",\n            \"chemicalDurationOfSprayInSeconds9\": \"\",\n            \"chemicalDurationOfSprayInSeconds10\": \"\",\n            \"chemicalDurationOfSprayInSeconds11\": \"\",\n            \"chemicalDurationOfSprayInSeconds12\": \"\",\n            \"chemicalDurationOfSprayInSeconds13\": \"\",\n            \"chemicalDurationOfSprayInSeconds14\": \"\",\n            \"chemicalDurationOfSprayInSeconds15\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect1\": \"16-20 feet\",\n            \"chemicalDistanceSprayDeployedFromSuspect2\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect3\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect4\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect5\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect6\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect7\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect8\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect9\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect10\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect11\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect12\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect13\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect14\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect15\": \"\",\n            \"chemicalBodyPartsSprayed1\": \"Face\",\n            \"chemicalBodyPartsSprayed2\": \"\",\n            \"chemicalBodyPartsSprayed3\": \"\",\n            \"chemicalBodyPartsSprayed4\": \"\",\n            \"chemicalBodyPartsSprayed5\": \"\",\n            \"chemicalBodyPartsSprayed6\": \"\",\n            \"chemicalBodyPartsSprayed7\": \"\",\n            \"chemicalBodyPartsSprayed8\": \"\",\n            \"chemicalBodyPartsSprayed9\": \"\",\n            \"chemicalBodyPartsSprayed10\": \"\",\n            \"chemicalBodyPartsSprayed11\": \"\",\n            \"chemicalBodyPartsSprayed12\": \"\",\n            \"chemicalBodyPartsSprayed13\": \"\",\n            \"chemicalBodyPartsSprayed14\": \"\",\n            \"chemicalBodyPartsSprayed15\": \"\",\n            \"chemicalSuspectDecontaminated\": \"Yes\",\n            \"chemicalSuspectDecontaminatedTime\": \"12:12:00\",\n            \"chemicalSuspectDecontaminatedBy\": \"The Decontaminator\",\n            \"chemicalHowSuspectDecontaminated\": \"Eye Drops\",\n            \"chemicalSuspectCompliedAfter\": \"No\",\n            \"sprayDuration\": 1,\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"chemicalOnlyDisplayed\": \"No\",\n            \"structure\": \"\",\n            \"primaryReferenceId\": null,\n            \"chemicalPointsOfContact\": [\n                {\n                    \"chemicalPointOfContactId\": 9073,\n                    \"chemicalId\": 17157,\n                    \"pointType\": \"Neck\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6545809\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6544842\"\n                },\n                {\n                    \"chemicalPointOfContactId\": 9074,\n                    \"chemicalId\": 17157,\n                    \"pointType\": \"Face\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6546362\",\n                    \"createdDate\": \"2022-04-01T15:16:20.654636\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:16:20.6539286\",\n            \"createdDate\": \"2022-04-01T15:16:20.6538824\"\n        }\n    ],\n    \"ecds\": [\n        {\n            \"ecdId\": 17159,\n            \"incidentId\": 17391,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"ecdDeploymentType\": \"Probes\",\n            \"ecdSerialNumber\": \"\",\n            \"ecdCartridgeNumber1\": \"\",\n            \"ecdCartridgeNumber2\": \"\",\n            \"ecdContactMade\": \"Yes\",\n            \"ecdNumberofContactsMade\": \"\",\n            \"ecdDeploymentDuration1\": \"4-6 sec\",\n            \"ecdDeploymentDistance1\": \"4-9 feet\",\n            \"ecdProbe1Connected1\": \"Yes\",\n            \"ecdProbe2Connected1\": \"No\",\n            \"ecdDeploymentDuration2\": \"10-12 sec\",\n            \"ecdDeploymentDistance2\": \"10-15 feet\",\n            \"ecdProbe1Connected2\": \"Yes\",\n            \"ecdProbe2Connected2\": \"Yes\",\n            \"ecdDeploymentDuration3\": \"\",\n            \"ecdDeploymentDistance3\": \"\",\n            \"ecdProbe1Connected3\": \"\",\n            \"ecdProbe2Connected3\": \"\",\n            \"ecdDeploymentDuration4\": \"\",\n            \"ecdDeploymentDistance4\": \"\",\n            \"ecdProbe1Connected4\": \"\",\n            \"ecdProbe2Connected4\": \"\",\n            \"ecdDeploymentDuration5\": \"\",\n            \"ecdDeploymentDistance5\": \"\",\n            \"ecdProbe1Connected5\": \"\",\n            \"ecdProbe2Connected5\": \"\",\n            \"ecdDeploymentDuration6\": \"\",\n            \"ecdDeploymentDistance6\": \"\",\n            \"ecdProbe1Connected6\": \"\",\n            \"ecdProbe2Connected6\": \"\",\n            \"ecdDeploymentDuration7\": \"\",\n            \"ecdDeploymentDistance7\": \"\",\n            \"ecdProbe1Connected7\": \"\",\n            \"ecdProbe2Connected7\": \"\",\n            \"ecdDeploymentDuration8\": \"\",\n            \"ecdDeploymentDistance8\": \"\",\n            \"ecdProbe1Connected8\": \"\",\n            \"ecdProbe2Connected8\": \"\",\n            \"ecdDeploymentDuration9\": \"\",\n            \"ecdDeploymentDistance9\": \"\",\n            \"ecdProbe1Connected9\": \"\",\n            \"ecdProbe2Connected9\": \"\",\n            \"ecdDeploymentDuration10\": \"\",\n            \"ecdDeploymentDistance10\": \"\",\n            \"ecdProbe1Connected10\": \"\",\n            \"ecdProbe2Connected10\": \"\",\n            \"ecdDeploymentDuration11\": \"\",\n            \"ecdDeploymentDistance11\": \"\",\n            \"ecdProbe1Connected11\": \"\",\n            \"ecdProbe2Connected11\": \"\",\n            \"ecdDeploymentDuration12\": \"\",\n            \"ecdDeploymentDistance12\": \"\",\n            \"ecdProbe1Connected12\": \"\",\n            \"ecdProbe2Connected12\": \"\",\n            \"ecdDeploymentDuration13\": \"\",\n            \"ecdDeploymentDistance13\": \"\",\n            \"ecdProbe1Connected13\": \"\",\n            \"ecdProbe2Connected13\": \"\",\n            \"ecdDeploymentDuration14\": \"\",\n            \"ecdDeploymentDistance14\": \"\",\n            \"ecdProbe1Connected14\": \"\",\n            \"ecdProbe2Connected14\": \"\",\n            \"ecdDeploymentDuration15\": \"\",\n            \"ecdDeploymentDistance15\": \"\",\n            \"ecdProbe1Connected15\": \"\",\n            \"ecdProbe2Connected15\": \"\",\n            \"ecdProbePenetratedSuspectSkin\": \"Yes\",\n            \"ecdProbesRemovedBy\": \"Officer Jimmy\",\n            \"ecdSuspectCompliedAfter\": \"Yes\",\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"deploymentFrequency\": 2,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"ecdOnlyDisplayed\": \"No\",\n            \"suspectIncapacitated\": \"\",\n            \"primaryReferenceId\": null,\n            \"ecdPointOfContact\": [\n                {\n                    \"ecdPointOfContactId\": 9075,\n                    \"ecdId\": 17159,\n                    \"pointType\": \"Forearm (back/left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.628289\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6281859\"\n                },\n                {\n                    \"ecdPointOfContactId\": 9076,\n                    \"ecdId\": 17159,\n                    \"pointType\": \"Upper Arm(right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6283481\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6283478\"\n                },\n                {\n                    \"ecdPointOfContactId\": 9077,\n                    \"ecdId\": 17159,\n                    \"pointType\": \"Forearm (front/left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6283491\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6283489\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:16:20.6275355\",\n            \"createdDate\": \"2022-04-01T15:16:20.62749\"\n        }\n    ],\n    \"firearms\": [\n        {\n            \"firearmId\": 16093,\n            \"incidentId\": 17391,\n            \"firearmDisplayedOnly\": \"No\",\n            \"firearmSuspectCompliedAfter\": \"\",\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"firearmMake\": \"Glock\",\n            \"firearmModel\": \"Shootmaster17\",\n            \"firearmSerialNumber\": \"AB123456\",\n            \"firearmDepartmentIssued\": \"Yes\",\n            \"firearmPurpose\": \"Primary\",\n            \"firearmNumberOfShotsFired\": \"\",\n            \"firearmShootingPosition\": \"\",\n            \"firearmStrongHandUsed\": \"Yes\",\n            \"firearmWeakHandUsed\": \"No\",\n            \"firearmReload\": \"\",\n            \"firearmAmmoMake\": \"10mm\",\n            \"firearmMalfunction\": \"\",\n            \"firearmOfficerConcealment\": \"From concealment.\",\n            \"firearmOfficerCover\": \"Under cover.\",\n            \"pointsOfContact\": \"\",\n            \"deployedByOfficer\": \"\",\n            \"deployedAtSuspect\": \"\",\n            \"accidentalDischarge\": \"\",\n            \"negligentDischarge\": \"\",\n            \"numberOfShotsFired\": \"02\",\n            \"distanceOfShotsfired\": \"\",\n            \"handUsedForFiring\": \"Both\",\n            \"shootingPosition\": \"Kneeling\",\n            \"wasIssuedWeaponUsed\": \"Yes\",\n            \"didOfficerHaveToReload\": \"Yes\",\n            \"firedBehindCover\": \"Yes\",\n            \"firedFromConcealment\": \"Yes\",\n            \"wasFirearmUnloaded\": \"\",\n            \"didFirearmMalfunction\": \"No\",\n            \"wasFirearmUnholstered\": \"\",\n            \"suspectComplyAfterFirearmUsed\": \"Yes\",\n            \"shotDistance\": \"02:1 foot,1-3 feet\",\n            \"pointsOfContact1\": \"\",\n            \"firearmUseSuspectCompliedAfter\": \"\",\n            \"didOfficerDischargeWeapon\": \"\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"primaryReferenceId\": null,\n            \"firearmPointsOfContact\": [\n                {\n                    \"firearmPointOfContactId\": 8028,\n                    \"firearmId\": 16093,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7346036\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7345078\"\n                },\n                {\n                    \"firearmPointOfContactId\": 8029,\n                    \"firearmId\": 16093,\n                    \"pointType\": \"Stomach\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7346622\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7346619\"\n                },\n                {\n                    \"firearmPointOfContactId\": 8030,\n                    \"firearmId\": 16093,\n                    \"pointType\": \"Groin\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7346633\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7346631\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:16:20.7339453\",\n            \"createdDate\": \"2022-04-01T15:16:20.7338963\"\n        }\n    ],\n    \"hands\": [\n        {\n            \"handId\": 4005,\n            \"incidentId\": 17391,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"handsTypeUsed\": \"Hands type 1\",\n            \"handsSuspectCompliedAfter\": \"No\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"handOnlyDisplayed\": \"\",\n            \"totalNumberOfStrikes\": \"\",\n            \"primaryReferenceId\": null,\n            \"handPointsOfContact\": [\n                {\n                    \"handPointOfContactId\": 2006,\n                    \"handId\": 4005,\n                    \"pointType\": \"Head\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7099429\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7098352\"\n                },\n                {\n                    \"handPointOfContactId\": 2005,\n                    \"handId\": 4005,\n                    \"pointType\": \"Upper Arm(left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7100008\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7100006\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:16:20.7092528\",\n            \"createdDate\": \"2022-04-01T15:16:20.709213\"\n        }\n    ],\n    \"inmates\": [\n        {\n            \"inmateId\": 10092,\n            \"incidentId\": 17391,\n            \"suspectName\": \"\",\n            \"inmateNumber\": \"645\",\n            \"inmateDetentionFacility\": \"Juvenile Detention\",\n            \"officerName\": \"\",\n            \"restraintsUsed\": \"One-Piece Restraints\",\n            \"restraintsUsedOther\": \"\",\n            \"reasonForceWasApplied\": \"Prevent Escape\",\n            \"reasonForceWasAppliedOther\": \"\",\n            \"restrainedHours\": \"11\",\n            \"restrainedMinute\": \"45\",\n            \"inmateHaveWeapon\": \"Yes\",\n            \"cell\": \"In the cell\",\n            \"nonEditable\": false,\n            \"inmateDetentionClassification\": \"\",\n            \"suspectBookingNumber\": \"\",\n            \"jailViolations\": \"\",\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T15:16:20.6020665\",\n            \"createdDate\": \"2022-04-01T15:16:20.6020158\"\n        }\n    ],\n    \"k9s\": [\n        {\n            \"k9Id\": 11077,\n            \"incidentId\": 17391,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"k9name\": \"Fluffy\",\n            \"k9breed\": \"German Shepherd\",\n            \"k9type\": \"Cross Certified\",\n            \"k9typeOtherDescription\": \"\",\n            \"k9reasonDeployed\": \"Citizen Protection\",\n            \"k9nnumberBites\": \"02\",\n            \"k9suspectCompliedAfter\": \"No\",\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"k9OnlyDisplayed\": \"No\",\n            \"k9Category\": \"\",\n            \"primaryReferenceId\": null,\n            \"k9PointOfContactId\": [\n                {\n                    \"k9PointOfContactId\": 4024,\n                    \"k9Id\": 11077,\n                    \"pointType\": \"Face\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7019671\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7018607\"\n                },\n                {\n                    \"k9PointOfContactId\": 4025,\n                    \"k9Id\": 11077,\n                    \"pointType\": \"Head\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7020264\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7020261\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:16:20.7012719\",\n            \"createdDate\": \"2022-04-01T15:16:20.7012225\"\n        }\n    ],\n    \"munitions\": [\n        {\n            \"munitionId\": 4017,\n            \"incidentId\": 17391,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"munitionSuspectHit\": \"Yes\",\n            \"munitionWeaponMake\": \"Impact munitions weapon make 1\",\n            \"munitionSerialNumber\": \"D123456\",\n            \"munitionDeploymentType\": \"Impact munitions deployment type 1\",\n            \"munitionExactImpact\": \"Yes\",\n            \"munitionContactMade\": \"Yes\",\n            \"munitionDeploymentDistance1\": \"3-5 feet\",\n            \"munitionNumberOfRounds1\": \"02\",\n            \"munitionCaliberUsed1\": \"Caliber 2\",\n            \"munitionDeploymentDistance2\": \"16-20 feet\",\n            \"munitionNumberOfRounds2\": \"01\",\n            \"munitionCaliberUsed2\": \"Caliber 1\",\n            \"munitionDeploymentDistance3\": \"\",\n            \"munitionNumberOfRounds3\": \"\",\n            \"munitionCaliberUsed3\": \"\",\n            \"munitionDeploymentDistance4\": \"\",\n            \"munitionNumberOfRounds4\": \"\",\n            \"munitionCaliberUsed4\": \"\",\n            \"munitionDeploymentDistance5\": \"\",\n            \"munitionNumberOfRounds5\": \"\",\n            \"munitionCaliberUsed5\": \"\",\n            \"munitionDeploymentDistance6\": \"\",\n            \"munitionNumberOfRounds6\": \"\",\n            \"munitionCaliberUsed6\": \"\",\n            \"munitionDeploymentDistance7\": \"\",\n            \"munitionNumberOfRounds7\": \"\",\n            \"munitionCaliberUsed7\": \"\",\n            \"munitionDeploymentDistance8\": \"\",\n            \"munitionNumberOfRounds8\": \"\",\n            \"munitionCaliberUsed8\": \"\",\n            \"munitionDeploymentDistance9\": \"\",\n            \"munitionNumberOfRounds9\": \"\",\n            \"munitionCaliberUsed9\": \"\",\n            \"munitionDeploymentDistance10\": \"\",\n            \"munitionNumberOfRounds10\": \"\",\n            \"munitionCaliberUsed10\": \"\",\n            \"munitionDeploymentDistance11\": \"\",\n            \"munitionNumberOfRounds11\": \"\",\n            \"munitionCaliberUsed11\": \"\",\n            \"munitionDeploymentDistance12\": \"\",\n            \"munitionNumberOfRounds12\": \"\",\n            \"munitionCaliberUsed12\": \"\",\n            \"munitionCaliberUsed13\": \"\",\n            \"munitionDeploymentDistance13\": \"\",\n            \"munitionNumberOfRounds13\": \"\",\n            \"munitionCaliberUsed14\": \"\",\n            \"munitionDeploymentDistance14\": \"\",\n            \"munitionNumberOfRounds14\": \"\",\n            \"munitionCaliberUsed15\": \"\",\n            \"munitionDeploymentDistance15\": \"\",\n            \"munitionNumberOfRounds15\": \"\",\n            \"munitionSuspectCompliedAfter\": \"No\",\n            \"deploymentFrequency\": 2,\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"munitionOnlyDisplayed\": \"No\",\n            \"primaryReferenceId\": null,\n            \"munitionPointsOfContact\": [\n                {\n                    \"munitionPointOfContactId\": 2010,\n                    \"munitionId\": 4017,\n                    \"pointType\": \"Hamstring (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6922037\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6921011\"\n                },\n                {\n                    \"munitionPointOfContactId\": 2011,\n                    \"munitionId\": 4017,\n                    \"pointType\": \"Hand (left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6922655\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6922652\"\n                },\n                {\n                    \"munitionPointOfContactId\": 2012,\n                    \"munitionId\": 4017,\n                    \"pointType\": \"Thigh (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6922665\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6922663\"\n                },\n                {\n                    \"munitionPointOfContactId\": 2013,\n                    \"munitionId\": 4017,\n                    \"pointType\": \"Palm (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6922674\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6922672\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:16:20.6915303\",\n            \"createdDate\": \"2022-04-01T15:16:20.691485\"\n        }\n    ],\n    \"narratives\": [\n        {\n            \"narrativeId\": 16223,\n            \"incidentId\": 17391,\n            \"narrative\": \"This is one great narrative.\",\n            \"nonEditable\": false,\n            \"modifiedDate\": \"2022-04-01T15:16:20.7475614\",\n            \"createdDate\": \"2022-04-01T15:16:20.7475111\"\n        }\n    ],\n    \"officers\": [\n        {\n            \"incidentOfficerId\": 17380,\n            \"incidentId\": 17391,\n            \"officerId\": \"1\",\n            \"firstName\": \"Durand\",\n            \"middleName\": \"\",\n            \"lastName\": \"Peterson\",\n            \"officerPrimary\": \"Yes\",\n            \"officerOnDuty\": \"Yes\",\n            \"officerPermanentAssignment\": \"North Sector\",\n            \"officerInUniform\": \"Yes\",\n            \"address\": \"\",\n            \"city\": \"\",\n            \"state\": \"\",\n            \"race\": \"Native Hawaiian or Other Pacific Islander\",\n            \"gender\": \"Male\",\n            \"dateOfBirth\": \"\",\n            \"age\": \"35\",\n            \"height\": \"5ft 4in\",\n            \"weight\": \"150\",\n            \"build\": \"\",\n            \"officerYearsWithAgency\": \"12\",\n            \"officerTotalYearsInLawEnforcement\": \"12\",\n            \"education\": \"16\",\n            \"officerInjured\": \"Yes\",\n            \"officerInjuryType\": \"Gunshot\",\n            \"officerInjurySeverity\": \"Fatal injury\",\n            \"officerHowInjuryOccurred\": \"Other Suspect\",\n            \"officerMedicalTreatmentReceived\": \"Yes\",\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\n            \"officerTransported\": \"Yes\",\n            \"officerTransportedBy\": \"EMS\",\n            \"officerTransportedTo\": \"The Hospital\",\n            \"officerTransportedTime\": \"12:12:00\",\n            \"officerInjuryPhotos\": \"\",\n            \"officerInjuryPhotosTakenBy\": \"\",\n            \"pointsOfContact\": \"\",\n            \"cit\": \"\",\n            \"nonEditable\": false,\n            \"deescalation\": \"Maximized the use of cover or concealment to reduce exposure to potential threats by placing the officer in a safer position\",\n            \"bodyWornCamera\": \"Yes\",\n            \"activated\": \"Yes\",\n            \"didOfficerUseForce\": \"\",\n            \"employmentFullTime\": \"\",\n            \"dontKnowAge\": \"\",\n            \"dontKnowHeight\": \"\",\n            \"dontKnowWeight\": \"\",\n            \"dontKnowYearsOfService\": \"\",\n            \"leoInjuredNIBRSIncidentNumber\": \"\",\n            \"dontKnowLEOInjuredNIBRSIncidentNumber\": \"\",\n            \"officerMedicalTreatmentReceivedByDropdown\": \"\",\n            \"officerTransportedByDropDown\": \"\",\n            \"officerTransportedToDropDown\": \"\",\n            \"primaryReferenceId\": null,\n            \"officerPointsOfContact\": [\n                {\n                    \"officerPointOfContactId\": 4112,\n                    \"officerId\": 17380,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.5443487\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5442679\"\n                },\n                {\n                    \"officerPointOfContactId\": 4113,\n                    \"officerId\": 17380,\n                    \"pointType\": \"Upper Back\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.5444079\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5444076\"\n                },\n                {\n                    \"officerPointOfContactId\": 4111,\n                    \"officerId\": 17380,\n                    \"pointType\": \"Lower Back\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.544409\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5444088\"\n                }\n            ],\n            \"victimRelationshipsToOfficer\": [],\n            \"witnessRelationshipsToOfficer\": [],\n            \"modifiedDate\": \"2022-04-01T15:16:20.5436479\",\n            \"createdDate\": \"2022-04-01T15:16:20.5435988\"\n        }\n    ],\n    \"properties\": [\n        {\n            \"propertyId\": 5024,\n            \"incidentId\": 17391,\n            \"owner\": \"Sara Smith (Witness)\",\n            \"propertyType\": \"LEGO Collection\",\n            \"propertyValue\": \"5.36\",\n            \"propertyOwnerName\": \"\",\n            \"propertyOwnerAddress\": \"\",\n            \"city\": \"\",\n            \"state\": \"\",\n            \"propertyOwnerEmail\": \"\",\n            \"propertyOwnerPhone1\": \"\",\n            \"propertyOwnerPhone2\": \"\",\n            \"race\": \"\",\n            \"gender\": \"\",\n            \"propertyOwnerDateOfBirth\": \"\",\n            \"age\": \"\",\n            \"nonEditable\": false,\n            \"propertyCategory\": \"\",\n            \"propertyMethod\": \"\",\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T15:16:20.5940172\",\n            \"createdDate\": \"2022-04-01T15:16:20.5939505\"\n        }\n    ],\n    \"stopSticks\": [\n        {\n            \"stopStickId\": 9071,\n            \"incidentId\": 17391,\n            \"officerName\": \"Durand Peterson\",\n            \"vehicleType\": \"Car\",\n            \"vehicleMake\": \"Mercury\",\n            \"vehicleModel\": \"Hooptie\",\n            \"vehicleYear\": \"1992\",\n            \"vehicleTag\": \"FL1234\",\n            \"stopstickOfficerTrainedInTechnique\": \"Yes\",\n            \"stopstickInvolvedStopSticksUsed\": \"Yes\",\n            \"stopstickPitManeuverUsed\": \"Yes\",\n            \"stopstickBoxinTechniqueUsed\": \"Yes\",\n            \"interventionUsed\": \"Intervention Used\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"stopstickOnlyDisplayed\": \"\",\n            \"state\": \"FL\",\n            \"primaryReferenceId\": null,\n            \"stopStickInfo\": [\n                {\n                    \"stopStickInfoId\": 8059,\n                    \"stopStickId\": 9071,\n                    \"stopstickInvolvedStopStickNumber\": \"Stick of Justice\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7439952\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7439126\"\n                },\n                {\n                    \"stopStickInfoId\": 8060,\n                    \"stopStickId\": 9071,\n                    \"stopstickInvolvedStopStickNumber\": \"Stick of Truth\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7440398\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7440395\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:16:20.7434678\",\n            \"createdDate\": \"2022-04-01T15:16:20.7434426\"\n        }\n    ],\n    \"suspects\": [\n        {\n            \"suspectId\": 16292,\n            \"incidentId\": 17391,\n            \"firstName\": \"John\",\n            \"middleName\": \"Jason\",\n            \"lastName\": \"Smith\",\n            \"suspectAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"race\": \"White\",\n            \"gender\": \"Male\",\n            \"suspectDateOfBirth\": \"03/01/1980\",\n            \"age\": \"\",\n            \"height\": \"5ft 6in\",\n            \"weight\": \" 171-180\",\n            \"build\": \"Thin\",\n            \"education\": \"\",\n            \"suspectActionsPresence\": true,\n            \"suspectActionsPassiveResistance\": true,\n            \"suspectActionsVerbalResistance\": true,\n            \"suspectActionsActiveAggression\": true,\n            \"suspectActionsAggressivePhysical\": true,\n            \"suspectActionsAggravatedPhysical\": true,\n            \"suspectActionsOther\": false,\n            \"suspectOfficersResponsePresence\": true,\n            \"suspectOfficersResponsePassiveResistance\": true,\n            \"suspectOfficersResponseVerbalResistance\": true,\n            \"suspectOfficersResponseAggression\": true,\n            \"suspectOfficersResponseAggravatedPhysical\": true,\n            \"suspectOfficersResponseOther\": false,\n            \"suspectOfficersResponseLevel7\": null,\n            \"suspectOfficersResponseLevel8\": null,\n            \"suspectWeaponUsedHands\": true,\n            \"suspectWeaponUsedBluntObject\": true,\n            \"suspectWeaponUsedEdgedObject\": true,\n            \"suspectWeaponUsedFirearm\": true,\n            \"suspectWeaponUsedOther\": true,\n            \"suspectArrested\": \"Yes\",\n            \"suspectWhyNotArrested\": \"\",\n            \"suspectArrestCharge\": \"28-1911 Failure to yield\",\n            \"suspectArrestedForFelony\": \"\",\n            \"suspectArresteeDeliveredTo\": \"\",\n            \"suspectJailNumber\": \"\",\n            \"suspectConditionPriorMellow\": false,\n            \"suspectConditionPriorDepressed\": false,\n            \"suspectConditionPriorAngry\": false,\n            \"suspectConditionPriorDisoriented\": true,\n            \"suspectConditionPriorDrugs\": true,\n            \"suspectConditionPriorAlcohol\": false,\n            \"suspectConditionPriorFighting\": false,\n            \"suspectConditionPriorOther\": false,\n            \"suspectConditionPostMellow\": true,\n            \"suspectConditionPostDepressed\": true,\n            \"suspectConditionPostAngry\": false,\n            \"suspectConditionPostDisoriented\": false,\n            \"suspectConditionPostDrugs\": false,\n            \"suspectConditionPostAlcohol\": false,\n            \"suspectConditionPostFighting\": false,\n            \"suspectConditionPostOther\": false,\n            \"suspectConditionPriorComment\": \"\",\n            \"suspectConditionPostComment\": \"\",\n            \"suspectInjured\": \"Yes\",\n            \"suspectInjuryType\": \"Gunshot\",\n            \"suspectInjurySeverity\": \"Fatal\",\n            \"howInjuryOccurredToSuspect\": \"Other Suspect\",\n            \"medicalTreatmentOfSuspect\": \"Yes\",\n            \"medicalTreatmentOfSuspectBy\": \"The Doctor\",\n            \"suspectTransported\": \"Yes\",\n            \"suspectTransportedBy\": \"EMS\",\n            \"suspectTransportedTo\": \"The Hospital\",\n            \"suspectTransportedTime\": \"12:12:00\",\n            \"suspectInjuryPhotos\": \"\",\n            \"suspectInjuryPhotosTakenBy\": \"\",\n            \"pointsOfContact\": \"\",\n            \"suspectExhibitsSignsofExcitedDelirium\": \"Yes\",\n            \"deliriumSignsDisplayed\": \"Incoherent Speech\",\n            \"suspectShowedSignsofMentalIllness\": \"Yes\",\n            \"showedSignsMentalIllness\": \"Depression\",\n            \"showedSignsMentalIllnessothers\": \"\",\n            \"rank1\": 1,\n            \"rank2\": 2,\n            \"rank3\": 4,\n            \"rank4\": 3,\n            \"rank5\": 6,\n            \"rank6\": 5,\n            \"rank7\": null,\n            \"rank8\": 1,\n            \"rank9\": 2,\n            \"rank10\": 5,\n            \"rank11\": 3,\n            \"rank12\": 4,\n            \"rank13\": null,\n            \"rank14\": null,\n            \"rank15\": null,\n            \"comments\": \"\",\n            \"nonEditable\": false,\n            \"arrestDate\": \"03/06/2022\",\n            \"arrestTime\": \"12:12:00\",\n            \"suspectForceCategory\": \"\",\n            \"suspectResistedType\": \"\",\n            \"suspectThreatPerson\": \"\",\n            \"estimatedAgeRange\": \"\",\n            \"dontKnowAge\": \"\",\n            \"knownImpairment\": \"\",\n            \"knownImpairmentType\": \"\",\n            \"suspectResisted\": \"\",\n            \"suspectArmed\": \"\",\n            \"dontKnowCharges\": \"\",\n            \"ethnicity\": \"\",\n            \"suspectTransportedByDropDown\": \"\",\n            \"suspectTransportedToDropDown\": \"\",\n            \"threatFactors\": \"\",\n            \"deEscalation\": \"\",\n            \"suspectWeaponUsedOption6\": null,\n            \"suspectWeaponUsedOption7\": null,\n            \"suspectWeaponUsedOption8\": null,\n            \"suspectWeaponUsedOption9\": null,\n            \"suspectDisabilities\": \"\",\n            \"knowledgeofSuspectDisability\": \"\",\n            \"mobilityDevices\": \"\",\n            \"remoteInterpreterUsed\": \"\",\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\n            \"suspectCategory\": \"\",\n            \"suffix\": \"\",\n            \"genderIdentify\": \"\",\n            \"inmateNumber\": \"\",\n            \"custodyLocation\": \"\",\n            \"civilianDistance\": \"\",\n            \"civilianResistance\": \"\",\n            \"primaryReferenceId\": null,\n            \"suspectPointsOfContact\": [\n                {\n                    \"suspectPointOfContactId\": 9206,\n                    \"suspectId\": 16292,\n                    \"pointType\": \"Face\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.524827\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5247266\"\n                },\n                {\n                    \"suspectPointOfContactId\": 9207,\n                    \"suspectId\": 16292,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.5248734\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5248732\"\n                },\n                {\n                    \"suspectPointOfContactId\": 9208,\n                    \"suspectId\": 16292,\n                    \"pointType\": \"Upper Arm (back/left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.5248745\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5248743\"\n                },\n                {\n                    \"suspectPointOfContactId\": 9209,\n                    \"suspectId\": 16292,\n                    \"pointType\": \"Heel (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.5248755\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5248753\"\n                }\n            ],\n            \"victimsRelationshipToSuspects\": [],\n            \"witnessesRelationshipToSuspects\": [],\n            \"suspectChargeClassifications\": [\n                {\n                    \"suspectChargeClassificationId\": 4090,\n                    \"suspectId\": 16292,\n                    \"charge\": \"28-1911 Failure to yield\",\n                    \"chargeClasification1\": false,\n                    \"chargeClasification2\": true,\n                    \"chargeClasification3\": false,\n                    \"chargeClasification4\": false,\n                    \"chargeClasification5\": false,\n                    \"chargeClasification6\": \"\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.5256666\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5255826\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:16:20.5241632\",\n            \"createdDate\": \"2022-04-01T15:16:20.5241246\"\n        }\n    ],\n    \"takedowns\": [\n        {\n            \"takedownId\": 11070,\n            \"incidentId\": 17391,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"takedownTypeUsed\": \"Leg Sweep\",\n            \"takedownSuspectCompliedAfter\": \"No\",\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"takedownOnlyDisplayed\": \"\",\n            \"primaryReferenceId\": null,\n            \"takedownPointsOfContact\": [\n                {\n                    \"takedownPointOfContactId\": 1005,\n                    \"takedownId\": 11070,\n                    \"pointType\": \"Hip (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7178303\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7177161\"\n                },\n                {\n                    \"takedownPointOfContactId\": 1006,\n                    \"takedownId\": 11070,\n                    \"pointType\": \"Glutes\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7178944\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7178941\"\n                },\n                {\n                    \"takedownPointOfContactId\": 1007,\n                    \"takedownId\": 11070,\n                    \"pointType\": \"Groin\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7178955\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7178953\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:16:20.7171352\",\n            \"createdDate\": \"2022-04-01T15:16:20.717086\"\n        }\n    ],\n    \"vehicles\": [\n        {\n            \"vehicleId\": 10105,\n            \"incidentId\": 17391,\n            \"driver\": \"John Smith (Suspect)\",\n            \"owner\": \"John Smith (Suspect)\",\n            \"passengers\": \"John Smith (Suspect)\",\n            \"vehicleType\": \"Motorcycle\",\n            \"vehicleMake\": \"BMW\",\n            \"vehicleModel\": \"Motormaster 8000\",\n            \"year\": \"2019\",\n            \"vehicleTag\": \"FL1234\",\n            \"state\": \"FL\",\n            \"vehicleSpeedDuringIncident\": \"41-50 MPH\",\n            \"nonEditable\": false,\n            \"vehicleDamage\": \"\",\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T15:16:20.5856491\",\n            \"createdDate\": \"2022-04-01T15:16:20.5856173\"\n        }\n    ],\n    \"victims\": [\n        {\n            \"victimId\": 9059,\n            \"incidentId\": 17391,\n            \"firstName\": \"Sara\",\n            \"middleName\": \"Jane\",\n            \"lastName\": \"Smith\",\n            \"victimAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"victimEmail\": \"sarasmith@gmail.com\",\n            \"victimPhone1\": \"111-111-1111 x11111\",\n            \"victimPhone2\": \"222-222-2222 x_____\",\n            \"race\": \"Hispanic/Latino\",\n            \"gender\": \"Female\",\n            \"victimDateOfBirth\": \"03/01/1980\",\n            \"age\": \"\",\n            \"suspectName1\": \"\",\n            \"victimRelationshipToSuspect1\": \"\",\n            \"officerName1\": \"\",\n            \"victimRelationshipToPrimaryOfficer1\": \"\",\n            \"suspectName2\": \"\",\n            \"victimRelationshipToSuspect2\": \"\",\n            \"officerName2\": \"\",\n            \"victimRelationshipToPrimaryOfficer2\": \"\",\n            \"suspectName3\": \"\",\n            \"victimRelationshipToSuspect3\": \"\",\n            \"officerName3\": \"\",\n            \"victimRelationshipToPrimaryOfficer3\": \"\",\n            \"suspectName4\": \"\",\n            \"victimRelationshipToSuspect4\": \"\",\n            \"officerName4\": \"\",\n            \"victimRelationshipToPrimaryOfficer4\": \"\",\n            \"suspectName5\": \"\",\n            \"victimRelationshipToSuspect5\": \"\",\n            \"officerName5\": \"\",\n            \"victimRelationshipToPrimaryOfficer5\": \"\",\n            \"victimInjured\": \"Yes\",\n            \"victimInjuryType\": \"Blunt Trauma\",\n            \"victimInjurySeverity\": \"Non-Incapacitating\",\n            \"victimHowInjuryToVictimOccurred\": \"Suspect's Actions\",\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\n            \"victimTransported\": \"Yes\",\n            \"victimTransportedBy\": \"EMS\",\n            \"victimTransportedTo\": \"The Hospital\",\n            \"victimTransportedTime\": \"12:12:00\",\n            \"victimInjuryPhotos\": \"\",\n            \"victimInjuryPhotosTakenBy\": \"\",\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"officerRole\": \"\",\n            \"outsideAgency\": \"\",\n            \"victimMedicalTreatmentOfVictimByDropdown\": \"\",\n            \"victimTransportedByDropDown\": \"\",\n            \"victimTransportedToDropDown\": \"\",\n            \"victimInUniform\": \"\",\n            \"primaryReferenceId\": null,\n            \"victimPointsOfContact\": [\n                {\n                    \"victimPointOfContactId\": 1011,\n                    \"victimId\": 9059,\n                    \"pointType\": \"Palm (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.56322\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5631206\"\n                },\n                {\n                    \"victimPointOfContactId\": 1012,\n                    \"victimId\": 9059,\n                    \"pointType\": \"Forearm (front/right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.563279\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5632788\"\n                }\n            ],\n            \"victimRelationshipsToOfficer\": [],\n            \"victimRelationshipsToSuspect\": [],\n            \"witnessRelationshipsToVictim\": [],\n            \"modifiedDate\": \"2022-04-01T15:16:20.5625434\",\n            \"createdDate\": \"2022-04-01T15:16:20.562515\"\n        }\n    ],\n    \"weapons\": [\n        {\n            \"weaponId\": 14078,\n            \"incidentId\": 17391,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"weaponTypeUsed\": \"Flashlight\",\n            \"weaponTotalNumberOfStrikes\": \"16\",\n            \"weaponBodyPartMadeContactWith1\": \"\",\n            \"weaponDurationOfImpactCountInSeconds1\": \"\",\n            \"weaponBodyPartMadeContactWith2\": \"\",\n            \"weaponDurationOfImpactCountInSeconds2\": \"\",\n            \"weaponBodyPartMadeContactWith3\": \"\",\n            \"weaponDurationOfImpactCountInSeconds3\": \"\",\n            \"weaponBodyPartMadeContactWith4\": \"\",\n            \"weaponDurationOfImpactCountInSeconds4\": \"\",\n            \"weaponBodyPartMadeContactWith5\": \"\",\n            \"weaponDurationOfImpactCountInSeconds5\": \"\",\n            \"weaponBodyPartMadeContactWith6\": \"\",\n            \"weaponDurationOfImpactCountInSeconds6\": \"\",\n            \"weaponBodyPartMadeContactWith7\": \"\",\n            \"weaponDurationOfImpactCountInSeconds7\": \"\",\n            \"weaponBodyPartMadeContactWith8\": \"\",\n            \"weaponDurationOfImpactCountInSeconds8\": \"\",\n            \"weaponBodyPartMadeContactWith9\": \"\",\n            \"weaponDurationOfImpactCountInSeconds9\": \"\",\n            \"weaponBodyPartMadeContactWith10\": \"\",\n            \"weaponDurationOfImpactCountInSeconds10\": \"\",\n            \"weaponBodyPartMadeContactWith11\": \"\",\n            \"weaponDurationOfImpactCountInSeconds11\": \"\",\n            \"weaponBodyPartMadeContactWith12\": \"\",\n            \"weaponDurationOfImpactCountInSeconds12\": \"\",\n            \"weaponBodyPartMadeContactWith13\": \"\",\n            \"weaponDurationOfImpactCountInSeconds13\": \"\",\n            \"weaponBodyPartMadeContactWith14\": \"\",\n            \"weaponDurationOfImpactCountInSeconds14\": \"\",\n            \"weaponBodyPartMadeContactWith15\": \"\",\n            \"weaponDurationOfImpactCountInSeconds15\": \"\",\n            \"weaponSuspectCompliedAfter\": \"Yes\",\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"impactContact\": 1,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"weaponOnlyDisplayed\": \"No\",\n            \"bodyPartsAimedFor\": \"\",\n            \"primaryReferenceId\": null,\n            \"weaponPointOfContact\": [\n                {\n                    \"weaponPointOfContactId\": 5025,\n                    \"weaponId\": 14078,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6714149\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6713159\"\n                },\n                {\n                    \"weaponPointOfContactId\": 5026,\n                    \"weaponId\": 14078,\n                    \"pointType\": \"Upper Arm(right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:16:20.671485\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6714848\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:16:20.6707151\",\n            \"createdDate\": \"2022-04-01T15:16:20.6706737\"\n        }\n    ],\n    \"witnesses\": [\n        {\n            \"witnessId\": 9073,\n            \"incidentId\": 17391,\n            \"firstName\": \"Sara\",\n            \"middleName\": \"Jane\",\n            \"lastName\": \"Smith\",\n            \"witnessAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"witnessEmail\": \"sarasmith@gmail.com\",\n            \"witnessPhone1\": \"111-111-1111 x111__\",\n            \"witnessPhone2\": \"222-222-2222 x_____\",\n            \"race\": \"Black\",\n            \"gender\": \"Female\",\n            \"witnessDateOfBirth\": \"03/01/1980\",\n            \"suspectName1\": \"\",\n            \"witnessRelationshipToSuspect1\": \"\",\n            \"officerName1\": \"\",\n            \"witnessRelationshipToPrimaryOfficer1\": \"\",\n            \"victimName1\": \"\",\n            \"witnessRelationshipToVictim1\": \"\",\n            \"suspectName2\": \"\",\n            \"witnessRelationshipToSuspect2\": \"\",\n            \"officerName2\": \"\",\n            \"witnessRelationshipToPrimaryOfficer2\": \"\",\n            \"victimName2\": \"\",\n            \"witnessRelationshipToVictim2\": \"\",\n            \"suspectName3\": \"\",\n            \"witnessRelationshipToSuspect3\": \"\",\n            \"officerName3\": \"\",\n            \"witnessRelationshipToPrimaryOfficer3\": \"\",\n            \"victimName3\": \"\",\n            \"witnessRelationshipToVictim3\": \"\",\n            \"suspectName4\": \"\",\n            \"witnessRelationshipToSuspect4\": \"\",\n            \"officerName4\": \"\",\n            \"witnessRelationshipToPrimaryOfficer4\": \"\",\n            \"victimName4\": \"\",\n            \"witnessRelationshipToVictim4\": \"\",\n            \"suspectName5\": \"\",\n            \"witnessRelationshipToSuspect5\": \"\",\n            \"officerName5\": \"\",\n            \"witnessRelationshipToPrimaryOfficer5\": \"\",\n            \"victimName5\": \"\",\n            \"witnessRelationshipToVictim5\": \"\",\n            \"nonEditable\": false,\n            \"primaryReferenceId\": null,\n            \"witnessRelationshipsToOfficer\": [],\n            \"witnessRelationshipsToSuspect\": [],\n            \"witnessRelationshipsToVictim\": [],\n            \"modifiedDate\": \"2022-04-01T15:16:20.5788151\",\n            \"createdDate\": \"2022-04-01T15:16:20.5787686\"\n        }\n    ],\n    \"reviews\": [],\n    \"reviewFormValues\": [\n        {\n            \"reviewFormValueId\": 5376,\n            \"title\": \"Supervisor assessment of incident:\",\n            \"type\": \"Textarea\",\n            \"value\": \"\",\n            \"ordinal\": 1,\n            \"indent\": 0,\n            \"helpSeg\": \"\",\n            \"formValue\": \"\",\n            \"incidentId\": 17391,\n            \"modifiedDate\": \"2022-04-01T15:16:20.7524227\",\n            \"createdDate\": \"2022-04-01T15:16:20.7523747\"\n        },\n        {\n            \"reviewFormValueId\": 5377,\n            \"title\": \"RECOMMENDATION\",\n            \"type\": \"Header\",\n            \"value\": \"\",\n            \"ordinal\": 2,\n            \"indent\": 1,\n            \"helpSeg\": \"\",\n            \"formValue\": \"\",\n            \"incidentId\": 17391,\n            \"modifiedDate\": \"2022-04-01T15:16:20.7524424\",\n            \"createdDate\": \"2022-04-01T15:16:20.7524422\"\n        },\n        {\n            \"reviewFormValueId\": 5375,\n            \"title\": \"Was policy violated?\",\n            \"type\": \"Checkbox\",\n            \"value\": \"Yes|||No\",\n            \"ordinal\": 3,\n            \"indent\": 2,\n            \"helpSeg\": \"\",\n            \"formValue\": \"\",\n            \"incidentId\": 17391,\n            \"modifiedDate\": \"2022-04-01T15:16:20.7524528\",\n            \"createdDate\": \"2022-04-01T15:16:20.7524527\"\n        },\n        {\n            \"reviewFormValueId\": 5374,\n            \"title\": \"Is additional training recommended?\",\n            \"type\": \"Checkbox\",\n            \"value\": \"Yes|||No\",\n            \"ordinal\": 4,\n            \"indent\": 2,\n            \"helpSeg\": \"\",\n            \"formValue\": \"\",\n            \"incidentId\": 17391,\n            \"modifiedDate\": \"2022-04-01T15:16:20.7524634\",\n            \"createdDate\": \"2022-04-01T15:16:20.7524632\"\n        }\n    ],\n    \"modifiedDate\": \"2022-04-01T15:16:20.4818276\",\n    \"createdDate\": \"2022-04-01T15:16:20.4817704\"\n}"},{"id":"4875e799-39fe-4aaf-9cd1-a74c1b631714","name":"Case File Already Exists","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 0,\r\n    \"status\": \"Completed\",\r\n    \"fdleSubmissionStatus\": \"\",\r\n    \"incidentCaseNumber\": \"MyCaseNumber-001\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"12/29/2012\",\r\n    \"incidentTime\": \"00:00:00\",\r\n    \"reportDate\": \"12/29/2012\",\r\n    \"reportTime\": \"00:00:00\",\r\n    \"incidentSupervisorNotified\": \"\",\r\n    \"incidentSupervisorNumber\": \"\",\r\n    \"incidentSupervisorNotifiedTime\": \"00:00:00\",\r\n    \"incidentSupervisorArrivedTime\": \"00:00:00\",\r\n    \"incidentVideoAttached\": \"\",\r\n    \"incidentDocumentAttached\": \"\",\r\n    \"incidentAddress\": \"4658 Commander Dr \",\r\n    \"city\": \"Orlando\",\r\n    \"state\": \"FL\",\r\n    \"area\": \"\",\r\n    \"district\": \"\",\r\n    \"sector\": \"\",\r\n    \"subsector\": \"\",\r\n    \"locationTypeApartment\": false,\r\n    \"locationTypeResidence\": false,\r\n    \"locationTypeHotelMotel\": false,\r\n    \"locationTypeRestaurantBar\": false,\r\n    \"locationTypeParkingLot\": false,\r\n    \"locationTypeOpenField\": false,\r\n    \"locationTypeWoodedArea\": false,\r\n    \"locationTypeOther\": false,\r\n    \"lightingConditionsDaylight\": false,\r\n    \"lightingConditionsDusk\": false,\r\n    \"lightingConditionsDawn\": false,\r\n    \"lightingConditionsDarkLighted\": false,\r\n    \"lightingConditionsDarkNotLighted\": false,\r\n    \"lightingConditionsDarkUnknownLighting\": false,\r\n    \"lightingConditionsOther\": false,\r\n    \"weatherConditionsClear\": false,\r\n    \"weatherConditionsCloudy\": false,\r\n    \"weatherConditionsRain\": false,\r\n    \"weatherConditionsSnow\": false,\r\n    \"weatherConditionsWindy\": false,\r\n    \"weatherConditionsFogSmokeSmog\": false,\r\n    \"weatherConditionsSleetHail\": false,\r\n    \"weatherConditionsOther\": false,\r\n    \"locationType\": \"\",\r\n    \"lightingCondition\": \"\",\r\n    \"weatherCondition\": \"\",\r\n    \"involvedOfficer\": true,\r\n    \"involvedSuspect\": true,\r\n    \"involvedVictim\": false,\r\n    \"involvedWitness\": false,\r\n    \"involvedVehicle\": false,\r\n    \"involvedProperty\": false,\r\n    \"involvedInmate\": false,\r\n    \"involvedNarrative\": true,\r\n    \"involvedSupervisorReview\": null,\r\n    \"responseToResistanceEcd\": true,\r\n    \"responseToResistanceChemicalAgents\": false,\r\n    \"responseToResistanceImpactWeapons\": false,\r\n    \"responseToResistanceImpactMunitions\": false,\r\n    \"responseToResistanceK9\": true,\r\n    \"responseToResistanceHands\": false,\r\n    \"responseToResistanceTakedowns\": true,\r\n    \"responseToResistanceFirearms\": false,\r\n    \"responseToResistanceStopsticks\": false,\r\n    \"responseToResistanceOther\": false,\r\n    \"supervisorName\": \"\",\r\n    \"managerNotified\": \"\",\r\n    \"managerName\": \"\",\r\n    \"managerNotifiedTime\": null,\r\n    \"managerArrivedTime\": null,\r\n    \"reasonForUseOfForce\": \"\",\r\n    \"reasonForUseOfForceOther\": \"\",\r\n    \"incidentType\": \"\",\r\n    \"incidentTypeOther\": \"\",\r\n    \"trackingId\": null,\r\n    \"trackingYear\": null,\r\n    \"trackingNumber\": \"\",\r\n    \"subReportNumber\": null,\r\n    \"historical\": true,\r\n    \"oldCreatorName\": \"John Miller\",\r\n    \"routing\": \"\",\r\n    \"deleteComments\": \"\",\r\n    \"reportType\": \"\",\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"searchNarrative\": \"\",\r\n    \"incidentAddress2\": \"\",\r\n    \"zipCode\": \"\",\r\n    \"latitude\": \"\",\r\n    \"longitude\": \"\",\r\n    \"incidentAmbush\": \"\",\r\n    \"leoApproachSuspect\": \"\",\r\n    \"initialContactReason\": \"\",\r\n    \"forceResults\": \"\",\r\n    \"dontKnowRelatedIncidentCase\": \"\",\r\n    \"totalOfficersOwnAgencyApplyForce\": null,\r\n    \"dontKnowTotalOfficersOwnAgencyApplyForce\": \"\",\r\n    \"totalOfficersAllAgencyApplyForce\": null,\r\n    \"dontKnowTotalOfficersAllAgencyApplyForce\": \"\",\r\n    \"totalSuspectsDeceasedOrInjured\": null,\r\n    \"dontKnowTotalSuspectsDeceasedOrInjured\": \"\",\r\n    \"didOtherAgencyApplyForce\": false,\r\n    \"totalOtherAgencyApplyForce\": null,\r\n    \"otherAgencyCaseNumber\": \"\",\r\n    \"otherAgencyORI\": \"\",\r\n    \"dontKnowAddress\": \"\",\r\n    \"seniorOfficerPresent\": \"\",\r\n    \"seniorOfficerName\": \"\",\r\n    \"seniorOfficerNotifiedTime\": null,\r\n    \"seniorOfficerArrivedTime\": null,\r\n    \"incidentCategory\": \"\",\r\n    \"howmanyOfficersonCall\": \"\",\r\n    \"streetNumber\": \"\",\r\n    \"preDirectional\": \"\",\r\n    \"streetType\": \"\",\r\n    \"postDirectional\": \"\",\r\n    \"lethal\": false,\r\n    \"servicesRendered\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"chemicals\": [],\r\n    \"ecds\": [],\r\n    \"firearms\": [],\r\n    \"hands\": [],\r\n    \"inmates\": [],\r\n    \"k9s\": [],\r\n    \"munitions\": [],\r\n    \"narratives\": [\r\n        {\r\n            \"narrative\": \"\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2012-12-29T18:25:17.177\",\r\n            \"createdDate\": \"2012-12-29T18:25:17.177\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"officerId\": \"1037\",\r\n            \"firstName\": \"Officer Kevin Sarria\",\r\n            \"middleName\": \"\",\r\n            \"lastName\": \"\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerOnDuty\": \"Yes\",\r\n            \"officerPermanentAssignment\": \"Patrol\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"address\": \"6000 International Dr.\",\r\n            \"city\": \"Orlando (city limits)\",\r\n            \"state\": \"FL\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"02/14/1985\",\r\n            \"age\": \"\",\r\n            \"height\": \"6ft or more\",\r\n            \"weight\": \"150-199\",\r\n            \"build\": \"Thin\",\r\n            \"officerYearsWithAgency\": \"4-6 years\",\r\n            \"officerTotalYearsInLawEnforcement\": \"4-6 years\",\r\n            \"education\": \"14\",\r\n            \"officerInjured\": \"No\",\r\n            \"officerInjuryType\": \"\",\r\n            \"officerInjurySeverity\": \"\",\r\n            \"officerHowInjuryOccurred\": \"\",\r\n            \"officerMedicalTreatmentReceived\": \"\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"\",\r\n            \"officerTransported\": \"\",\r\n            \"officerTransportedBy\": \"\",\r\n            \"officerTransportedTo\": \"\",\r\n            \"officerTransportedTime\": \"00:00:00\",\r\n            \"officerInjuryPhotos\": \"\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"cit\": \"\",\r\n            \"nonEditable\": false,\r\n            \"deescalation\": \"\",\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"didOfficerUseForce\": \"\",\r\n            \"employmentFullTime\": \"\",\r\n            \"dontKnowAge\": \"\",\r\n            \"dontKnowHeight\": \"\",\r\n            \"dontKnowWeight\": \"\",\r\n            \"dontKnowYearsOfService\": \"\",\r\n            \"leoInjuredNIBRSIncidentNumber\": \"\",\r\n            \"dontKnowLEOInjuredNIBRSIncidentNumber\": \"\",\r\n            \"officerMedicalTreatmentReceivedByDropdown\": \"\",\r\n            \"officerTransportedByDropDown\": \"\",\r\n            \"officerTransportedToDropDown\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"officerPointsOfContact\": [],\r\n            \"victimRelationshipsToOfficer\": [],\r\n            \"witnessRelationshipsToOfficer\": [],\r\n            \"modifiedDate\": \"2012-12-29T15:14:44.09\",\r\n            \"createdDate\": \"2012-12-29T15:14:44.09\"\r\n        }\r\n    ],\r\n    \"properties\": [],\r\n    \"stopSticks\": [],\r\n    \"suspects\": [\r\n        {\r\n            \"firstName\": \"James Monroe\",\r\n            \"middleName\": \"\",\r\n            \"lastName\": \"\",\r\n            \"suspectAddress\": \"123 Anywhere Rd.\",\r\n            \"city\": \"Orlando\",\r\n            \"state\": \"FL\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"suspectDateOfBirth\": \"05/08/1962\",\r\n            \"age\": \"\",\r\n            \"height\": \"5ft8-5ft11in\",\r\n            \"weight\": \"250-299\",\r\n            \"build\": \"Heavy\",\r\n            \"education\": \"16\",\r\n            \"suspectActionsPresence\": false,\r\n            \"suspectActionsPassiveResistance\": false,\r\n            \"suspectActionsVerbalResistance\": false,\r\n            \"suspectActionsActiveAggression\": false,\r\n            \"suspectActionsAggressivePhysical\": true,\r\n            \"suspectActionsAggravatedPhysical\": false,\r\n            \"suspectActionsOther\": false,\r\n            \"suspectOfficersResponsePresence\": false,\r\n            \"suspectOfficersResponsePassiveResistance\": false,\r\n            \"suspectOfficersResponseVerbalResistance\": false,\r\n            \"suspectOfficersResponseAggression\": false,\r\n            \"suspectOfficersResponseAggravatedPhysical\": true,\r\n            \"suspectOfficersResponseOther\": false,\r\n            \"suspectOfficersResponseLevel7\": null,\r\n            \"suspectOfficersResponseLevel8\": null,\r\n            \"suspectWeaponUsedHands\": false,\r\n            \"suspectWeaponUsedBluntObject\": false,\r\n            \"suspectWeaponUsedEdgedObject\": true,\r\n            \"suspectWeaponUsedFirearm\": false,\r\n            \"suspectWeaponUsedOther\": false,\r\n            \"suspectArrested\": \"Yes\",\r\n            \"suspectWhyNotArrested\": \"\",\r\n            \"suspectArrestCharge\": \"\",\r\n            \"suspectArrestedForFelony\": \"No\",\r\n            \"suspectArresteeDeliveredTo\": \"\",\r\n            \"suspectJailNumber\": \"\",\r\n            \"suspectConditionPriorMellow\": false,\r\n            \"suspectConditionPriorDepressed\": false,\r\n            \"suspectConditionPriorAngry\": true,\r\n            \"suspectConditionPriorDisoriented\": false,\r\n            \"suspectConditionPriorDrugs\": false,\r\n            \"suspectConditionPriorAlcohol\": false,\r\n            \"suspectConditionPriorFighting\": false,\r\n            \"suspectConditionPriorOther\": false,\r\n            \"suspectConditionPostMellow\": false,\r\n            \"suspectConditionPostDepressed\": false,\r\n            \"suspectConditionPostAngry\": true,\r\n            \"suspectConditionPostDisoriented\": false,\r\n            \"suspectConditionPostDrugs\": false,\r\n            \"suspectConditionPostAlcohol\": false,\r\n            \"suspectConditionPostFighting\": false,\r\n            \"suspectConditionPostOther\": false,\r\n            \"suspectConditionPriorComment\": \"\",\r\n            \"suspectConditionPostComment\": \"\",\r\n            \"suspectInjured\": \"No\",\r\n            \"suspectInjuryType\": \"\",\r\n            \"suspectInjurySeverity\": \"\",\r\n            \"howInjuryOccurredToSuspect\": \"\",\r\n            \"medicalTreatmentOfSuspect\": \"\",\r\n            \"medicalTreatmentOfSuspectBy\": \"\",\r\n            \"suspectTransported\": \"\",\r\n            \"suspectTransportedBy\": \"\",\r\n            \"suspectTransportedTo\": \"\",\r\n            \"suspectTransportedTime\": \"00:00:00\",\r\n            \"suspectInjuryPhotos\": \"\",\r\n            \"suspectInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"suspectExhibitsSignsofExcitedDelirium\": \"\",\r\n            \"deliriumSignsDisplayed\": \"\",\r\n            \"suspectShowedSignsofMentalIllness\": \"\",\r\n            \"showedSignsMentalIllness\": \"\",\r\n            \"showedSignsMentalIllnessothers\": \"\",\r\n            \"rank1\": null,\r\n            \"rank2\": null,\r\n            \"rank3\": null,\r\n            \"rank4\": null,\r\n            \"rank5\": null,\r\n            \"rank6\": null,\r\n            \"rank7\": null,\r\n            \"rank8\": null,\r\n            \"rank9\": null,\r\n            \"rank10\": null,\r\n            \"rank11\": null,\r\n            \"rank12\": null,\r\n            \"rank13\": null,\r\n            \"rank14\": null,\r\n            \"rank15\": null,\r\n            \"comments\": \"\",\r\n            \"nonEditable\": false,\r\n            \"arrestDate\": \"\",\r\n            \"arrestTime\": null,\r\n            \"suspectForceCategory\": \"\",\r\n            \"suspectResistedType\": \"\",\r\n            \"suspectThreatPerson\": \"\",\r\n            \"estimatedAgeRange\": \"\",\r\n            \"dontKnowAge\": \"\",\r\n            \"knownImpairment\": \"\",\r\n            \"knownImpairmentType\": \"\",\r\n            \"suspectResisted\": \"\",\r\n            \"suspectArmed\": \"\",\r\n            \"dontKnowCharges\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"suspectTransportedByDropDown\": \"\",\r\n            \"suspectTransportedToDropDown\": \"\",\r\n            \"threatFactors\": \"\",\r\n            \"deEscalation\": \"\",\r\n            \"suspectWeaponUsedOption6\": null,\r\n            \"suspectWeaponUsedOption7\": null,\r\n            \"suspectWeaponUsedOption8\": null,\r\n            \"suspectWeaponUsedOption9\": null,\r\n            \"suspectDisabilities\": \"\",\r\n            \"knowledgeofSuspectDisability\": \"\",\r\n            \"mobilityDevices\": \"\",\r\n            \"remoteInterpreterUsed\": \"\",\r\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\r\n            \"suspectCategory\": \"\",\r\n            \"suffix\": \"\",\r\n            \"genderIdentify\": \"\",\r\n            \"inmateNumber\": \"\",\r\n            \"custodyLocation\": \"\",\r\n            \"civilianDistance\": \"\",\r\n            \"civilianResistance\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"suspectPointsOfContact\": [],\r\n            \"victimsRelationshipToSuspects\": [],\r\n            \"witnessesRelationshipToSuspects\": [],\r\n            \"suspectChargeClassifications\": [],\r\n            \"modifiedDate\": \"2012-12-29T15:15:18.567\",\r\n            \"createdDate\": \"2012-12-29T15:15:18.567\"\r\n        }\r\n    ],\r\n    \"takedowns\": [],\r\n    \"vehicles\": [],\r\n    \"victims\": [],\r\n    \"weapons\": [],\r\n    \"witnesses\": [],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [],\r\n    \"modifiedDate\": \"2017-08-22T10:10:35.01\",\r\n    \"createdDate\": \"2012-12-29T15:11:05.96\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/facts"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcZmFjdHM=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 17:43:25 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"Supplied Incident Case Number already exists!\"\n}"}],"_postman_id":"0aef205b-897e-43b9-a005-878a5f9c278d"},{"name":"Update Use of Force Incident","id":"6faeb4d4-ef8e-4e44-9436-4ecaf28525a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": 17391,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"Editing\",\r\n    \"fdleSubmissionStatus\": \"\",\r\n    \"incidentCaseNumber\": \"TestCase-002\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"03/01/2022\",\r\n    \"incidentTime\": \"12:12:00\",\r\n    \"reportDate\": \"03/30/2022\",\r\n    \"reportTime\": \"16:38:00\",\r\n    \"incidentSupervisorNotified\": \"Yes\",\r\n    \"incidentSupervisorNumber\": \"\",\r\n    \"incidentSupervisorNotifiedTime\": \"12:12:00\",\r\n    \"incidentSupervisorArrivedTime\": \"13:12:00\",\r\n    \"incidentVideoAttached\": \"\",\r\n    \"incidentDocumentAttached\": \"\",\r\n    \"incidentAddress\": \"1234 Main Street\",\r\n    \"city\": \"Tampa\",\r\n    \"state\": \"FL\",\r\n    \"area\": \"District 731\",\r\n    \"district\": \"East\",\r\n    \"sector\": \"A-2\",\r\n    \"subsector\": \"Bravo - 1\",\r\n    \"locationTypeApartment\": false,\r\n    \"locationTypeResidence\": false,\r\n    \"locationTypeHotelMotel\": false,\r\n    \"locationTypeRestaurantBar\": false,\r\n    \"locationTypeParkingLot\": false,\r\n    \"locationTypeOpenField\": false,\r\n    \"locationTypeWoodedArea\": false,\r\n    \"locationTypeOther\": false,\r\n    \"lightingConditionsDaylight\": false,\r\n    \"lightingConditionsDusk\": false,\r\n    \"lightingConditionsDawn\": false,\r\n    \"lightingConditionsDarkLighted\": false,\r\n    \"lightingConditionsDarkNotLighted\": false,\r\n    \"lightingConditionsDarkUnknownLighting\": false,\r\n    \"lightingConditionsOther\": false,\r\n    \"weatherConditionsClear\": false,\r\n    \"weatherConditionsCloudy\": false,\r\n    \"weatherConditionsRain\": false,\r\n    \"weatherConditionsSnow\": false,\r\n    \"weatherConditionsWindy\": false,\r\n    \"weatherConditionsFogSmokeSmog\": false,\r\n    \"weatherConditionsSleetHail\": false,\r\n    \"weatherConditionsOther\": false,\r\n    \"locationType\": \"Camp/ Campground (42)\",\r\n    \"lightingCondition\": \"\",\r\n    \"weatherCondition\": \"\",\r\n    \"involvedOfficer\": true,\r\n    \"involvedSuspect\": true,\r\n    \"involvedVictim\": true,\r\n    \"involvedWitness\": true,\r\n    \"involvedVehicle\": true,\r\n    \"involvedProperty\": true,\r\n    \"involvedInmate\": true,\r\n    \"involvedNarrative\": true,\r\n    \"involvedSupervisorReview\": true,\r\n    \"responseToResistanceEcd\": true,\r\n    \"responseToResistanceChemicalAgents\": true,\r\n    \"responseToResistanceImpactWeapons\": true,\r\n    \"responseToResistanceImpactMunitions\": true,\r\n    \"responseToResistanceK9\": true,\r\n    \"responseToResistanceHands\": true,\r\n    \"responseToResistanceTakedowns\": true,\r\n    \"responseToResistanceFirearms\": true,\r\n    \"responseToResistanceStopsticks\": true,\r\n    \"responseToResistanceOther\": false,\r\n    \"supervisorName\": \"John T. Goodman\",\r\n    \"managerNotified\": \"\",\r\n    \"managerName\": \"\",\r\n    \"managerNotifiedTime\": null,\r\n    \"managerArrivedTime\": null,\r\n    \"reasonForUseOfForce\": \"Destroy Animal\",\r\n    \"reasonForUseOfForceOther\": \"\",\r\n    \"incidentType\": \"Burglary\",\r\n    \"incidentTypeOther\": \"\",\r\n    \"trackingId\": 25,\r\n    \"trackingYear\": 2022,\r\n    \"trackingNumber\": \"2022 - 25\",\r\n    \"subReportNumber\": null,\r\n    \"historical\": false,\r\n    \"oldCreatorName\": \"\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"reportType\": \"\",\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"searchNarrative\": \"\",\r\n    \"incidentAddress2\": \"\",\r\n    \"zipCode\": \"\",\r\n    \"latitude\": \"\",\r\n    \"longitude\": \"\",\r\n    \"incidentAmbush\": \"\",\r\n    \"leoApproachSuspect\": \"\",\r\n    \"initialContactReason\": \"\",\r\n    \"forceResults\": \"\",\r\n    \"dontKnowRelatedIncidentCase\": \"\",\r\n    \"totalOfficersOwnAgencyApplyForce\": null,\r\n    \"dontKnowTotalOfficersOwnAgencyApplyForce\": \"\",\r\n    \"totalOfficersAllAgencyApplyForce\": null,\r\n    \"dontKnowTotalOfficersAllAgencyApplyForce\": \"\",\r\n    \"totalSuspectsDeceasedOrInjured\": null,\r\n    \"dontKnowTotalSuspectsDeceasedOrInjured\": \"\",\r\n    \"didOtherAgencyApplyForce\": false,\r\n    \"totalOtherAgencyApplyForce\": null,\r\n    \"otherAgencyCaseNumber\": \"\",\r\n    \"otherAgencyORI\": \"\",\r\n    \"dontKnowAddress\": \"\",\r\n    \"seniorOfficerPresent\": \"\",\r\n    \"seniorOfficerName\": \"\",\r\n    \"seniorOfficerNotifiedTime\": null,\r\n    \"seniorOfficerArrivedTime\": null,\r\n    \"incidentCategory\": \"\",\r\n    \"howmanyOfficersonCall\": \"\",\r\n    \"streetNumber\": \"\",\r\n    \"preDirectional\": \"\",\r\n    \"streetType\": \"\",\r\n    \"postDirectional\": \"\",\r\n    \"lethal\": false,\r\n    \"servicesRendered\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"chemicals\": [\r\n        {\r\n            \"chemicalId\": 17157,\r\n            \"incidentId\": 17391,\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"chemicalAgentTypeUsed\": \"MK-9 Handheld\",\r\n            \"chemicalSerialNumber\": \"\",\r\n            \"chemicalLotNumber\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds1\": \"2 seconds\",\r\n            \"chemicalDurationOfSprayInSeconds2\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds3\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds4\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds5\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds6\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds7\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds8\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds9\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds10\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds11\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds12\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds13\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds14\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds15\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect1\": \"16-20 feet\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect2\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect3\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect4\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect5\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect6\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect7\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect8\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect9\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect10\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect11\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect12\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect13\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect14\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect15\": \"\",\r\n            \"chemicalBodyPartsSprayed1\": \"Face\",\r\n            \"chemicalBodyPartsSprayed2\": \"\",\r\n            \"chemicalBodyPartsSprayed3\": \"\",\r\n            \"chemicalBodyPartsSprayed4\": \"\",\r\n            \"chemicalBodyPartsSprayed5\": \"\",\r\n            \"chemicalBodyPartsSprayed6\": \"\",\r\n            \"chemicalBodyPartsSprayed7\": \"\",\r\n            \"chemicalBodyPartsSprayed8\": \"\",\r\n            \"chemicalBodyPartsSprayed9\": \"\",\r\n            \"chemicalBodyPartsSprayed10\": \"\",\r\n            \"chemicalBodyPartsSprayed11\": \"\",\r\n            \"chemicalBodyPartsSprayed12\": \"\",\r\n            \"chemicalBodyPartsSprayed13\": \"\",\r\n            \"chemicalBodyPartsSprayed14\": \"\",\r\n            \"chemicalBodyPartsSprayed15\": \"\",\r\n            \"chemicalSuspectDecontaminated\": \"Yes\",\r\n            \"chemicalSuspectDecontaminatedTime\": \"12:12:00\",\r\n            \"chemicalSuspectDecontaminatedBy\": \"The Decontaminator\",\r\n            \"chemicalHowSuspectDecontaminated\": \"Eye Drops\",\r\n            \"chemicalSuspectCompliedAfter\": \"No\",\r\n            \"sprayDuration\": 1,\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"chemicalOnlyDisplayed\": \"No\",\r\n            \"structure\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"chemicalPointsOfContact\": [\r\n                {\r\n                    \"chemicalPointOfContactId\": 9073,\r\n                    \"chemicalId\": 17157,\r\n                    \"pointType\": \"Neck\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6545809\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6544842\"\r\n                },\r\n                {\r\n                    \"chemicalPointOfContactId\": 9074,\r\n                    \"chemicalId\": 17157,\r\n                    \"pointType\": \"Face\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6546362\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.654636\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.6539286\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.6538824\"\r\n        }\r\n    ],\r\n    \"ecds\": [\r\n        {\r\n            \"ecdId\": 17159,\r\n            \"incidentId\": 17391,\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"ecdDeploymentType\": \"Probes\",\r\n            \"ecdSerialNumber\": \"\",\r\n            \"ecdCartridgeNumber1\": \"\",\r\n            \"ecdCartridgeNumber2\": \"\",\r\n            \"ecdContactMade\": \"Yes\",\r\n            \"ecdNumberofContactsMade\": \"\",\r\n            \"ecdDeploymentDuration1\": \"4-6 sec\",\r\n            \"ecdDeploymentDistance1\": \"4-9 feet\",\r\n            \"ecdProbe1Connected1\": \"Yes\",\r\n            \"ecdProbe2Connected1\": \"No\",\r\n            \"ecdDeploymentDuration2\": \"10-12 sec\",\r\n            \"ecdDeploymentDistance2\": \"10-15 feet\",\r\n            \"ecdProbe1Connected2\": \"Yes\",\r\n            \"ecdProbe2Connected2\": \"Yes\",\r\n            \"ecdDeploymentDuration3\": \"\",\r\n            \"ecdDeploymentDistance3\": \"\",\r\n            \"ecdProbe1Connected3\": \"\",\r\n            \"ecdProbe2Connected3\": \"\",\r\n            \"ecdDeploymentDuration4\": \"\",\r\n            \"ecdDeploymentDistance4\": \"\",\r\n            \"ecdProbe1Connected4\": \"\",\r\n            \"ecdProbe2Connected4\": \"\",\r\n            \"ecdDeploymentDuration5\": \"\",\r\n            \"ecdDeploymentDistance5\": \"\",\r\n            \"ecdProbe1Connected5\": \"\",\r\n            \"ecdProbe2Connected5\": \"\",\r\n            \"ecdDeploymentDuration6\": \"\",\r\n            \"ecdDeploymentDistance6\": \"\",\r\n            \"ecdProbe1Connected6\": \"\",\r\n            \"ecdProbe2Connected6\": \"\",\r\n            \"ecdDeploymentDuration7\": \"\",\r\n            \"ecdDeploymentDistance7\": \"\",\r\n            \"ecdProbe1Connected7\": \"\",\r\n            \"ecdProbe2Connected7\": \"\",\r\n            \"ecdDeploymentDuration8\": \"\",\r\n            \"ecdDeploymentDistance8\": \"\",\r\n            \"ecdProbe1Connected8\": \"\",\r\n            \"ecdProbe2Connected8\": \"\",\r\n            \"ecdDeploymentDuration9\": \"\",\r\n            \"ecdDeploymentDistance9\": \"\",\r\n            \"ecdProbe1Connected9\": \"\",\r\n            \"ecdProbe2Connected9\": \"\",\r\n            \"ecdDeploymentDuration10\": \"\",\r\n            \"ecdDeploymentDistance10\": \"\",\r\n            \"ecdProbe1Connected10\": \"\",\r\n            \"ecdProbe2Connected10\": \"\",\r\n            \"ecdDeploymentDuration11\": \"\",\r\n            \"ecdDeploymentDistance11\": \"\",\r\n            \"ecdProbe1Connected11\": \"\",\r\n            \"ecdProbe2Connected11\": \"\",\r\n            \"ecdDeploymentDuration12\": \"\",\r\n            \"ecdDeploymentDistance12\": \"\",\r\n            \"ecdProbe1Connected12\": \"\",\r\n            \"ecdProbe2Connected12\": \"\",\r\n            \"ecdDeploymentDuration13\": \"\",\r\n            \"ecdDeploymentDistance13\": \"\",\r\n            \"ecdProbe1Connected13\": \"\",\r\n            \"ecdProbe2Connected13\": \"\",\r\n            \"ecdDeploymentDuration14\": \"\",\r\n            \"ecdDeploymentDistance14\": \"\",\r\n            \"ecdProbe1Connected14\": \"\",\r\n            \"ecdProbe2Connected14\": \"\",\r\n            \"ecdDeploymentDuration15\": \"\",\r\n            \"ecdDeploymentDistance15\": \"\",\r\n            \"ecdProbe1Connected15\": \"\",\r\n            \"ecdProbe2Connected15\": \"\",\r\n            \"ecdProbePenetratedSuspectSkin\": \"Yes\",\r\n            \"ecdProbesRemovedBy\": \"Officer Jimmy\",\r\n            \"ecdSuspectCompliedAfter\": \"Yes\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"deploymentFrequency\": 2,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"ecdOnlyDisplayed\": \"No\",\r\n            \"suspectIncapacitated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"ecdPointOfContact\": [\r\n                {\r\n                    \"ecdPointOfContactId\": 9075,\r\n                    \"ecdId\": 17159,\r\n                    \"pointType\": \"Forearm (back/left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.628289\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6281859\"\r\n                },\r\n                {\r\n                    \"ecdPointOfContactId\": 9076,\r\n                    \"ecdId\": 17159,\r\n                    \"pointType\": \"Upper Arm(right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6283481\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6283478\"\r\n                },\r\n                {\r\n                    \"ecdPointOfContactId\": 9077,\r\n                    \"ecdId\": 17159,\r\n                    \"pointType\": \"Forearm (front/left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6283491\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6283489\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.6275355\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.62749\"\r\n        }\r\n    ],\r\n    \"firearms\": [\r\n        {\r\n            \"firearmId\": 16093,\r\n            \"incidentId\": 17391,\r\n            \"firearmDisplayedOnly\": \"No\",\r\n            \"firearmSuspectCompliedAfter\": \"\",\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"firearmMake\": \"Glock\",\r\n            \"firearmModel\": \"Shootmaster17\",\r\n            \"firearmSerialNumber\": \"AB123456\",\r\n            \"firearmDepartmentIssued\": \"Yes\",\r\n            \"firearmPurpose\": \"Primary\",\r\n            \"firearmNumberOfShotsFired\": \"\",\r\n            \"firearmShootingPosition\": \"\",\r\n            \"firearmStrongHandUsed\": \"Yes\",\r\n            \"firearmWeakHandUsed\": \"No\",\r\n            \"firearmReload\": \"\",\r\n            \"firearmAmmoMake\": \"10mm\",\r\n            \"firearmMalfunction\": \"\",\r\n            \"firearmOfficerConcealment\": \"From concealment.\",\r\n            \"firearmOfficerCover\": \"Under cover.\",\r\n            \"pointsOfContact\": \"\",\r\n            \"deployedByOfficer\": \"\",\r\n            \"deployedAtSuspect\": \"\",\r\n            \"accidentalDischarge\": \"\",\r\n            \"negligentDischarge\": \"\",\r\n            \"numberOfShotsFired\": \"02\",\r\n            \"distanceOfShotsfired\": \"\",\r\n            \"handUsedForFiring\": \"Both\",\r\n            \"shootingPosition\": \"Kneeling\",\r\n            \"wasIssuedWeaponUsed\": \"Yes\",\r\n            \"didOfficerHaveToReload\": \"Yes\",\r\n            \"firedBehindCover\": \"Yes\",\r\n            \"firedFromConcealment\": \"Yes\",\r\n            \"wasFirearmUnloaded\": \"\",\r\n            \"didFirearmMalfunction\": \"No\",\r\n            \"wasFirearmUnholstered\": \"\",\r\n            \"suspectComplyAfterFirearmUsed\": \"Yes\",\r\n            \"shotDistance\": \"02:1 foot,1-3 feet\",\r\n            \"pointsOfContact1\": \"\",\r\n            \"firearmUseSuspectCompliedAfter\": \"\",\r\n            \"didOfficerDischargeWeapon\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"firearmPointsOfContact\": [\r\n                {\r\n                    \"firearmPointOfContactId\": 8028,\r\n                    \"firearmId\": 16093,\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7346036\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7345078\"\r\n                },\r\n                {\r\n                    \"firearmPointOfContactId\": 8029,\r\n                    \"firearmId\": 16093,\r\n                    \"pointType\": \"Stomach\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7346622\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7346619\"\r\n                },\r\n                {\r\n                    \"firearmPointOfContactId\": 8030,\r\n                    \"firearmId\": 16093,\r\n                    \"pointType\": \"Groin\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7346633\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7346631\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7339453\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.7338963\"\r\n        }\r\n    ],\r\n    \"hands\": [\r\n        {\r\n            \"handId\": 4005,\r\n            \"incidentId\": 17391,\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"handsTypeUsed\": \"Hands type 1\",\r\n            \"handsSuspectCompliedAfter\": \"No\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"handOnlyDisplayed\": \"\",\r\n            \"totalNumberOfStrikes\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"handPointsOfContact\": [\r\n                {\r\n                    \"handPointOfContactId\": 2006,\r\n                    \"handId\": 4005,\r\n                    \"pointType\": \"Head\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7099429\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7098352\"\r\n                },\r\n                {\r\n                    \"handPointOfContactId\": 2005,\r\n                    \"handId\": 4005,\r\n                    \"pointType\": \"Upper Arm(left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7100008\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7100006\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7092528\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.709213\"\r\n        }\r\n    ],\r\n    \"inmates\": [\r\n        {\r\n            \"inmateId\": 10092,\r\n            \"incidentId\": 17391,\r\n            \"suspectName\": \"\",\r\n            \"inmateNumber\": \"645\",\r\n            \"inmateDetentionFacility\": \"Juvenile Detention\",\r\n            \"officerName\": \"\",\r\n            \"restraintsUsed\": \"One-Piece Restraints\",\r\n            \"restraintsUsedOther\": \"\",\r\n            \"reasonForceWasApplied\": \"Prevent Escape\",\r\n            \"reasonForceWasAppliedOther\": \"\",\r\n            \"restrainedHours\": \"11\",\r\n            \"restrainedMinute\": \"45\",\r\n            \"inmateHaveWeapon\": \"Yes\",\r\n            \"cell\": \"In the cell\",\r\n            \"nonEditable\": false,\r\n            \"inmateDetentionClassification\": \"\",\r\n            \"suspectBookingNumber\": \"\",\r\n            \"jailViolations\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.6020665\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.6020158\"\r\n        }\r\n    ],\r\n    \"k9s\": [\r\n        {\r\n            \"k9Id\": 11077,\r\n            \"incidentId\": 17391,\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"k9name\": \"Fluffy\",\r\n            \"k9breed\": \"German Shepherd\",\r\n            \"k9type\": \"Cross Certified\",\r\n            \"k9typeOtherDescription\": \"\",\r\n            \"k9reasonDeployed\": \"Citizen Protection\",\r\n            \"k9nnumberBites\": \"02\",\r\n            \"k9suspectCompliedAfter\": \"No\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"k9OnlyDisplayed\": \"No\",\r\n            \"k9Category\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"k9PointOfContactId\": [\r\n                {\r\n                    \"k9PointOfContactId\": 4024,\r\n                    \"k9Id\": 11077,\r\n                    \"pointType\": \"Face\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7019671\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7018607\"\r\n                },\r\n                {\r\n                    \"k9PointOfContactId\": 4025,\r\n                    \"k9Id\": 11077,\r\n                    \"pointType\": \"Head\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7020264\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7020261\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7012719\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.7012225\"\r\n        }\r\n    ],\r\n    \"munitions\": [\r\n        {\r\n            \"munitionId\": 4017,\r\n            \"incidentId\": 17391,\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"munitionSuspectHit\": \"Yes\",\r\n            \"munitionWeaponMake\": \"Impact munitions weapon make 1\",\r\n            \"munitionSerialNumber\": \"D123456\",\r\n            \"munitionDeploymentType\": \"Impact munitions deployment type 1\",\r\n            \"munitionExactImpact\": \"Yes\",\r\n            \"munitionContactMade\": \"Yes\",\r\n            \"munitionDeploymentDistance1\": \"3-5 feet\",\r\n            \"munitionNumberOfRounds1\": \"02\",\r\n            \"munitionCaliberUsed1\": \"Caliber 2\",\r\n            \"munitionDeploymentDistance2\": \"16-20 feet\",\r\n            \"munitionNumberOfRounds2\": \"01\",\r\n            \"munitionCaliberUsed2\": \"Caliber 1\",\r\n            \"munitionDeploymentDistance3\": \"\",\r\n            \"munitionNumberOfRounds3\": \"\",\r\n            \"munitionCaliberUsed3\": \"\",\r\n            \"munitionDeploymentDistance4\": \"\",\r\n            \"munitionNumberOfRounds4\": \"\",\r\n            \"munitionCaliberUsed4\": \"\",\r\n            \"munitionDeploymentDistance5\": \"\",\r\n            \"munitionNumberOfRounds5\": \"\",\r\n            \"munitionCaliberUsed5\": \"\",\r\n            \"munitionDeploymentDistance6\": \"\",\r\n            \"munitionNumberOfRounds6\": \"\",\r\n            \"munitionCaliberUsed6\": \"\",\r\n            \"munitionDeploymentDistance7\": \"\",\r\n            \"munitionNumberOfRounds7\": \"\",\r\n            \"munitionCaliberUsed7\": \"\",\r\n            \"munitionDeploymentDistance8\": \"\",\r\n            \"munitionNumberOfRounds8\": \"\",\r\n            \"munitionCaliberUsed8\": \"\",\r\n            \"munitionDeploymentDistance9\": \"\",\r\n            \"munitionNumberOfRounds9\": \"\",\r\n            \"munitionCaliberUsed9\": \"\",\r\n            \"munitionDeploymentDistance10\": \"\",\r\n            \"munitionNumberOfRounds10\": \"\",\r\n            \"munitionCaliberUsed10\": \"\",\r\n            \"munitionDeploymentDistance11\": \"\",\r\n            \"munitionNumberOfRounds11\": \"\",\r\n            \"munitionCaliberUsed11\": \"\",\r\n            \"munitionDeploymentDistance12\": \"\",\r\n            \"munitionNumberOfRounds12\": \"\",\r\n            \"munitionCaliberUsed12\": \"\",\r\n            \"munitionCaliberUsed13\": \"\",\r\n            \"munitionDeploymentDistance13\": \"\",\r\n            \"munitionNumberOfRounds13\": \"\",\r\n            \"munitionCaliberUsed14\": \"\",\r\n            \"munitionDeploymentDistance14\": \"\",\r\n            \"munitionNumberOfRounds14\": \"\",\r\n            \"munitionCaliberUsed15\": \"\",\r\n            \"munitionDeploymentDistance15\": \"\",\r\n            \"munitionNumberOfRounds15\": \"\",\r\n            \"munitionSuspectCompliedAfter\": \"No\",\r\n            \"deploymentFrequency\": 2,\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"munitionOnlyDisplayed\": \"No\",\r\n            \"primaryReferenceId\": null,\r\n            \"munitionPointsOfContact\": [\r\n                {\r\n                    \"munitionPointOfContactId\": 2010,\r\n                    \"munitionId\": 4017,\r\n                    \"pointType\": \"Hamstring (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6922037\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6921011\"\r\n                },\r\n                {\r\n                    \"munitionPointOfContactId\": 2011,\r\n                    \"munitionId\": 4017,\r\n                    \"pointType\": \"Hand (left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6922655\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6922652\"\r\n                },\r\n                {\r\n                    \"munitionPointOfContactId\": 2012,\r\n                    \"munitionId\": 4017,\r\n                    \"pointType\": \"Thigh (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6922665\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6922663\"\r\n                },\r\n                {\r\n                    \"munitionPointOfContactId\": 2013,\r\n                    \"munitionId\": 4017,\r\n                    \"pointType\": \"Palm (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6922674\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6922672\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.6915303\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.691485\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 16223,\r\n            \"incidentId\": 17391,\r\n            \"narrative\": \"This is one great narrative.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7475614\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.7475111\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"incidentOfficerId\": 17380,\r\n            \"incidentId\": 17391,\r\n            \"officerId\": \"1\",\r\n            \"firstName\": \"Durand\",\r\n            \"middleName\": \"\",\r\n            \"lastName\": \"Peterson\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerOnDuty\": \"Yes\",\r\n            \"officerPermanentAssignment\": \"North Sector\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"address\": \"\",\r\n            \"city\": \"\",\r\n            \"state\": \"\",\r\n            \"race\": \"Native Hawaiian or Other Pacific Islander\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"\",\r\n            \"age\": \"35\",\r\n            \"height\": \"5ft 4in\",\r\n            \"weight\": \"150\",\r\n            \"build\": \"\",\r\n            \"officerYearsWithAgency\": \"12\",\r\n            \"officerTotalYearsInLawEnforcement\": \"12\",\r\n            \"education\": \"16\",\r\n            \"officerInjured\": \"Yes\",\r\n            \"officerInjuryType\": \"Gunshot\",\r\n            \"officerInjurySeverity\": \"Fatal injury\",\r\n            \"officerHowInjuryOccurred\": \"Other Suspect\",\r\n            \"officerMedicalTreatmentReceived\": \"Yes\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\r\n            \"officerTransported\": \"Yes\",\r\n            \"officerTransportedBy\": \"EMS\",\r\n            \"officerTransportedTo\": \"The Hospital\",\r\n            \"officerTransportedTime\": \"12:12:00\",\r\n            \"officerInjuryPhotos\": \"\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"cit\": \"\",\r\n            \"nonEditable\": false,\r\n            \"deescalation\": \"Maximized the use of cover or concealment to reduce exposure to potential threats by placing the officer in a safer position\",\r\n            \"bodyWornCamera\": \"Yes\",\r\n            \"activated\": \"Yes\",\r\n            \"didOfficerUseForce\": \"\",\r\n            \"employmentFullTime\": \"\",\r\n            \"dontKnowAge\": \"\",\r\n            \"dontKnowHeight\": \"\",\r\n            \"dontKnowWeight\": \"\",\r\n            \"dontKnowYearsOfService\": \"\",\r\n            \"leoInjuredNIBRSIncidentNumber\": \"\",\r\n            \"dontKnowLEOInjuredNIBRSIncidentNumber\": \"\",\r\n            \"officerMedicalTreatmentReceivedByDropdown\": \"\",\r\n            \"officerTransportedByDropDown\": \"\",\r\n            \"officerTransportedToDropDown\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"officerPointsOfContact\": [\r\n                {\r\n                    \"officerPointOfContactId\": 4112,\r\n                    \"officerId\": 17380,\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.5443487\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5442679\"\r\n                },\r\n                {\r\n                    \"officerPointOfContactId\": 4113,\r\n                    \"officerId\": 17380,\r\n                    \"pointType\": \"Upper Back\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.5444079\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5444076\"\r\n                },\r\n                {\r\n                    \"officerPointOfContactId\": 4111,\r\n                    \"officerId\": 17380,\r\n                    \"pointType\": \"Lower Back\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.544409\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5444088\"\r\n                }\r\n            ],\r\n            \"victimRelationshipsToOfficer\": [],\r\n            \"witnessRelationshipsToOfficer\": [],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.5436479\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.5435988\"\r\n        }\r\n    ],\r\n    \"properties\": [\r\n        {\r\n            \"propertyId\": 5024,\r\n            \"incidentId\": 17391,\r\n            \"owner\": \"Sara Smith (Witness)\",\r\n            \"propertyType\": \"LEGO Collection\",\r\n            \"propertyValue\": \"5.36\",\r\n            \"propertyOwnerName\": \"\",\r\n            \"propertyOwnerAddress\": \"\",\r\n            \"city\": \"\",\r\n            \"state\": \"\",\r\n            \"propertyOwnerEmail\": \"\",\r\n            \"propertyOwnerPhone1\": \"\",\r\n            \"propertyOwnerPhone2\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"propertyOwnerDateOfBirth\": \"\",\r\n            \"age\": \"\",\r\n            \"nonEditable\": false,\r\n            \"propertyCategory\": \"\",\r\n            \"propertyMethod\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.5940172\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.5939505\"\r\n        }\r\n    ],\r\n    \"stopSticks\": [\r\n        {\r\n            \"stopStickId\": 9071,\r\n            \"incidentId\": 17391,\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"Mercury\",\r\n            \"vehicleModel\": \"Hooptie\",\r\n            \"vehicleYear\": \"1992\",\r\n            \"vehicleTag\": \"FL1234\",\r\n            \"stopstickOfficerTrainedInTechnique\": \"Yes\",\r\n            \"stopstickInvolvedStopSticksUsed\": \"Yes\",\r\n            \"stopstickPitManeuverUsed\": \"Yes\",\r\n            \"stopstickBoxinTechniqueUsed\": \"Yes\",\r\n            \"interventionUsed\": \"Intervention Used\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"stopstickOnlyDisplayed\": \"\",\r\n            \"state\": \"FL\",\r\n            \"primaryReferenceId\": null,\r\n            \"stopStickInfo\": [\r\n                {\r\n                    \"stopStickInfoId\": 8059,\r\n                    \"stopStickId\": 9071,\r\n                    \"stopstickInvolvedStopStickNumber\": \"Stick of Justice\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7439952\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7439126\"\r\n                },\r\n                {\r\n                    \"stopStickInfoId\": 8060,\r\n                    \"stopStickId\": 9071,\r\n                    \"stopstickInvolvedStopStickNumber\": \"Stick of Truth\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7440398\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7440395\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7434678\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.7434426\"\r\n        }\r\n    ],\r\n    \"suspects\": [\r\n        {\r\n            \"suspectId\": 16292,\r\n            \"incidentId\": 17391,\r\n            \"firstName\": \"John\",\r\n            \"middleName\": \"Jason\",\r\n            \"lastName\": \"Smith\",\r\n            \"suspectAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"suspectDateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"height\": \"5ft 6in\",\r\n            \"weight\": \" 171-180\",\r\n            \"build\": \"Thin\",\r\n            \"education\": \"\",\r\n            \"suspectActionsPresence\": true,\r\n            \"suspectActionsPassiveResistance\": true,\r\n            \"suspectActionsVerbalResistance\": true,\r\n            \"suspectActionsActiveAggression\": true,\r\n            \"suspectActionsAggressivePhysical\": true,\r\n            \"suspectActionsAggravatedPhysical\": true,\r\n            \"suspectActionsOther\": false,\r\n            \"suspectOfficersResponsePresence\": true,\r\n            \"suspectOfficersResponsePassiveResistance\": true,\r\n            \"suspectOfficersResponseVerbalResistance\": true,\r\n            \"suspectOfficersResponseAggression\": true,\r\n            \"suspectOfficersResponseAggravatedPhysical\": true,\r\n            \"suspectOfficersResponseOther\": false,\r\n            \"suspectOfficersResponseLevel7\": null,\r\n            \"suspectOfficersResponseLevel8\": null,\r\n            \"suspectWeaponUsedHands\": true,\r\n            \"suspectWeaponUsedBluntObject\": true,\r\n            \"suspectWeaponUsedEdgedObject\": true,\r\n            \"suspectWeaponUsedFirearm\": true,\r\n            \"suspectWeaponUsedOther\": true,\r\n            \"suspectArrested\": \"Yes\",\r\n            \"suspectWhyNotArrested\": \"\",\r\n            \"suspectArrestCharge\": \"28-1911 Failure to yield\",\r\n            \"suspectArrestedForFelony\": \"\",\r\n            \"suspectArresteeDeliveredTo\": \"\",\r\n            \"suspectJailNumber\": \"\",\r\n            \"suspectConditionPriorMellow\": false,\r\n            \"suspectConditionPriorDepressed\": false,\r\n            \"suspectConditionPriorAngry\": false,\r\n            \"suspectConditionPriorDisoriented\": true,\r\n            \"suspectConditionPriorDrugs\": true,\r\n            \"suspectConditionPriorAlcohol\": false,\r\n            \"suspectConditionPriorFighting\": false,\r\n            \"suspectConditionPriorOther\": false,\r\n            \"suspectConditionPostMellow\": true,\r\n            \"suspectConditionPostDepressed\": true,\r\n            \"suspectConditionPostAngry\": false,\r\n            \"suspectConditionPostDisoriented\": false,\r\n            \"suspectConditionPostDrugs\": false,\r\n            \"suspectConditionPostAlcohol\": false,\r\n            \"suspectConditionPostFighting\": false,\r\n            \"suspectConditionPostOther\": false,\r\n            \"suspectConditionPriorComment\": \"\",\r\n            \"suspectConditionPostComment\": \"\",\r\n            \"suspectInjured\": \"Yes\",\r\n            \"suspectInjuryType\": \"Gunshot\",\r\n            \"suspectInjurySeverity\": \"Fatal\",\r\n            \"howInjuryOccurredToSuspect\": \"Other Suspect\",\r\n            \"medicalTreatmentOfSuspect\": \"Yes\",\r\n            \"medicalTreatmentOfSuspectBy\": \"The Doctor\",\r\n            \"suspectTransported\": \"Yes\",\r\n            \"suspectTransportedBy\": \"EMS\",\r\n            \"suspectTransportedTo\": \"The Hospital\",\r\n            \"suspectTransportedTime\": \"12:12:00\",\r\n            \"suspectInjuryPhotos\": \"\",\r\n            \"suspectInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"suspectExhibitsSignsofExcitedDelirium\": \"Yes\",\r\n            \"deliriumSignsDisplayed\": \"Incoherent Speech\",\r\n            \"suspectShowedSignsofMentalIllness\": \"Yes\",\r\n            \"showedSignsMentalIllness\": \"Depression\",\r\n            \"showedSignsMentalIllnessothers\": \"\",\r\n            \"rank1\": 1,\r\n            \"rank2\": 2,\r\n            \"rank3\": 4,\r\n            \"rank4\": 3,\r\n            \"rank5\": 6,\r\n            \"rank6\": 5,\r\n            \"rank7\": null,\r\n            \"rank8\": 1,\r\n            \"rank9\": 2,\r\n            \"rank10\": 5,\r\n            \"rank11\": 3,\r\n            \"rank12\": 4,\r\n            \"rank13\": null,\r\n            \"rank14\": null,\r\n            \"rank15\": null,\r\n            \"comments\": \"\",\r\n            \"nonEditable\": false,\r\n            \"arrestDate\": \"03/06/2022\",\r\n            \"arrestTime\": \"12:12:00\",\r\n            \"suspectForceCategory\": \"\",\r\n            \"suspectResistedType\": \"\",\r\n            \"suspectThreatPerson\": \"\",\r\n            \"estimatedAgeRange\": \"\",\r\n            \"dontKnowAge\": \"\",\r\n            \"knownImpairment\": \"\",\r\n            \"knownImpairmentType\": \"\",\r\n            \"suspectResisted\": \"\",\r\n            \"suspectArmed\": \"\",\r\n            \"dontKnowCharges\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"suspectTransportedByDropDown\": \"\",\r\n            \"suspectTransportedToDropDown\": \"\",\r\n            \"threatFactors\": \"\",\r\n            \"deEscalation\": \"\",\r\n            \"suspectWeaponUsedOption6\": null,\r\n            \"suspectWeaponUsedOption7\": null,\r\n            \"suspectWeaponUsedOption8\": null,\r\n            \"suspectWeaponUsedOption9\": null,\r\n            \"suspectDisabilities\": \"\",\r\n            \"knowledgeofSuspectDisability\": \"\",\r\n            \"mobilityDevices\": \"\",\r\n            \"remoteInterpreterUsed\": \"\",\r\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\r\n            \"suspectCategory\": \"\",\r\n            \"suffix\": \"\",\r\n            \"genderIdentify\": \"\",\r\n            \"inmateNumber\": \"\",\r\n            \"custodyLocation\": \"\",\r\n            \"civilianDistance\": \"\",\r\n            \"civilianResistance\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"suspectPointsOfContact\": [\r\n                {\r\n                    \"suspectPointOfContactId\": 9206,\r\n                    \"suspectId\": 16292,\r\n                    \"pointType\": \"Face\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.524827\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5247266\"\r\n                },\r\n                {\r\n                    \"suspectPointOfContactId\": 9207,\r\n                    \"suspectId\": 16292,\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.5248734\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5248732\"\r\n                },\r\n                {\r\n                    \"suspectPointOfContactId\": 9208,\r\n                    \"suspectId\": 16292,\r\n                    \"pointType\": \"Upper Arm (back/left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.5248745\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5248743\"\r\n                },\r\n                {\r\n                    \"suspectPointOfContactId\": 9209,\r\n                    \"suspectId\": 16292,\r\n                    \"pointType\": \"Heel (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.5248755\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5248753\"\r\n                }\r\n            ],\r\n            \"victimsRelationshipToSuspects\": [],\r\n            \"witnessesRelationshipToSuspects\": [],\r\n            \"suspectChargeClassifications\": [\r\n                {\r\n                    \"suspectChargeClassificationId\": 4090,\r\n                    \"suspectId\": 16292,\r\n                    \"charge\": \"28-1911 Failure to yield\",\r\n                    \"chargeClasification1\": false,\r\n                    \"chargeClasification2\": true,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.5256666\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5255826\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.5241632\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.5241246\"\r\n        }\r\n    ],\r\n    \"takedowns\": [\r\n        {\r\n            \"takedownId\": 11070,\r\n            \"incidentId\": 17391,\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"takedownTypeUsed\": \"Leg Sweep\",\r\n            \"takedownSuspectCompliedAfter\": \"No\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"takedownOnlyDisplayed\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"takedownPointsOfContact\": [\r\n                {\r\n                    \"takedownPointOfContactId\": 1005,\r\n                    \"takedownId\": 11070,\r\n                    \"pointType\": \"Hip (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7178303\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7177161\"\r\n                },\r\n                {\r\n                    \"takedownPointOfContactId\": 1006,\r\n                    \"takedownId\": 11070,\r\n                    \"pointType\": \"Glutes\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7178944\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7178941\"\r\n                },\r\n                {\r\n                    \"takedownPointOfContactId\": 1007,\r\n                    \"takedownId\": 11070,\r\n                    \"pointType\": \"Groin\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7178955\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7178953\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7171352\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.717086\"\r\n        }\r\n    ],\r\n    \"vehicles\": [\r\n        {\r\n            \"vehicleId\": 10105,\r\n            \"incidentId\": 17391,\r\n            \"driver\": \"John Smith (Suspect)\",\r\n            \"owner\": \"John Smith (Suspect)\",\r\n            \"passengers\": \"John Smith (Suspect)\",\r\n            \"vehicleType\": \"Motorcycle\",\r\n            \"vehicleMake\": \"BMW\",\r\n            \"vehicleModel\": \"Motormaster 8000\",\r\n            \"year\": \"2019\",\r\n            \"vehicleTag\": \"FL1234\",\r\n            \"state\": \"FL\",\r\n            \"vehicleSpeedDuringIncident\": \"41-50 MPH\",\r\n            \"nonEditable\": false,\r\n            \"vehicleDamage\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.5856491\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.5856173\"\r\n        }\r\n    ],\r\n    \"victims\": [\r\n        {\r\n            \"victimId\": 9059,\r\n            \"incidentId\": 17391,\r\n            \"firstName\": \"Sara\",\r\n            \"middleName\": \"Jane\",\r\n            \"lastName\": \"Smith\",\r\n            \"victimAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"victimEmail\": \"sarasmith@gmail.com\",\r\n            \"victimPhone1\": \"111-111-1111 x11111\",\r\n            \"victimPhone2\": \"222-222-2222 x_____\",\r\n            \"race\": \"Hispanic/Latino\",\r\n            \"gender\": \"Female\",\r\n            \"victimDateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"suspectName1\": \"\",\r\n            \"victimRelationshipToSuspect1\": \"\",\r\n            \"officerName1\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer1\": \"\",\r\n            \"suspectName2\": \"\",\r\n            \"victimRelationshipToSuspect2\": \"\",\r\n            \"officerName2\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer2\": \"\",\r\n            \"suspectName3\": \"\",\r\n            \"victimRelationshipToSuspect3\": \"\",\r\n            \"officerName3\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer3\": \"\",\r\n            \"suspectName4\": \"\",\r\n            \"victimRelationshipToSuspect4\": \"\",\r\n            \"officerName4\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer4\": \"\",\r\n            \"suspectName5\": \"\",\r\n            \"victimRelationshipToSuspect5\": \"\",\r\n            \"officerName5\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer5\": \"\",\r\n            \"victimInjured\": \"Yes\",\r\n            \"victimInjuryType\": \"Blunt Trauma\",\r\n            \"victimInjurySeverity\": \"Non-Incapacitating\",\r\n            \"victimHowInjuryToVictimOccurred\": \"Suspect's Actions\",\r\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\r\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\r\n            \"victimTransported\": \"Yes\",\r\n            \"victimTransportedBy\": \"EMS\",\r\n            \"victimTransportedTo\": \"The Hospital\",\r\n            \"victimTransportedTime\": \"12:12:00\",\r\n            \"victimInjuryPhotos\": \"\",\r\n            \"victimInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"officerRole\": \"\",\r\n            \"outsideAgency\": \"\",\r\n            \"victimMedicalTreatmentOfVictimByDropdown\": \"\",\r\n            \"victimTransportedByDropDown\": \"\",\r\n            \"victimTransportedToDropDown\": \"\",\r\n            \"victimInUniform\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"victimPointsOfContact\": [\r\n                {\r\n                    \"victimPointOfContactId\": 1011,\r\n                    \"victimId\": 9059,\r\n                    \"pointType\": \"Palm (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.56322\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5631206\"\r\n                },\r\n                {\r\n                    \"victimPointOfContactId\": 1012,\r\n                    \"victimId\": 9059,\r\n                    \"pointType\": \"Forearm (front/right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.563279\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5632788\"\r\n                }\r\n            ],\r\n            \"victimRelationshipsToOfficer\": [],\r\n            \"victimRelationshipsToSuspect\": [],\r\n            \"witnessRelationshipsToVictim\": [],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.5625434\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.562515\"\r\n        }\r\n    ],\r\n    \"weapons\": [\r\n        {\r\n            \"weaponId\": 14078,\r\n            \"incidentId\": 17391,\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"weaponTypeUsed\": \"Flashlight\",\r\n            \"weaponTotalNumberOfStrikes\": \"16\",\r\n            \"weaponBodyPartMadeContactWith1\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds1\": \"\",\r\n            \"weaponBodyPartMadeContactWith2\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds2\": \"\",\r\n            \"weaponBodyPartMadeContactWith3\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds3\": \"\",\r\n            \"weaponBodyPartMadeContactWith4\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds4\": \"\",\r\n            \"weaponBodyPartMadeContactWith5\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds5\": \"\",\r\n            \"weaponBodyPartMadeContactWith6\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds6\": \"\",\r\n            \"weaponBodyPartMadeContactWith7\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds7\": \"\",\r\n            \"weaponBodyPartMadeContactWith8\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds8\": \"\",\r\n            \"weaponBodyPartMadeContactWith9\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds9\": \"\",\r\n            \"weaponBodyPartMadeContactWith10\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds10\": \"\",\r\n            \"weaponBodyPartMadeContactWith11\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds11\": \"\",\r\n            \"weaponBodyPartMadeContactWith12\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds12\": \"\",\r\n            \"weaponBodyPartMadeContactWith13\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds13\": \"\",\r\n            \"weaponBodyPartMadeContactWith14\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds14\": \"\",\r\n            \"weaponBodyPartMadeContactWith15\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds15\": \"\",\r\n            \"weaponSuspectCompliedAfter\": \"Yes\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"impactContact\": 1,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"weaponOnlyDisplayed\": \"No\",\r\n            \"bodyPartsAimedFor\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"weaponPointOfContact\": [\r\n                {\r\n                    \"weaponPointOfContactId\": 5025,\r\n                    \"weaponId\": 14078,\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6714149\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6713159\"\r\n                },\r\n                {\r\n                    \"weaponPointOfContactId\": 5026,\r\n                    \"weaponId\": 14078,\r\n                    \"pointType\": \"Upper Arm(right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.671485\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6714848\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.6707151\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.6706737\"\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 9073,\r\n            \"incidentId\": 17391,\r\n            \"firstName\": \"Sara\",\r\n            \"middleName\": \"Jane\",\r\n            \"lastName\": \"Smith\",\r\n            \"witnessAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"witnessEmail\": \"sarasmith@gmail.com\",\r\n            \"witnessPhone1\": \"111-111-1111 x111__\",\r\n            \"witnessPhone2\": \"222-222-2222 x_____\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Female\",\r\n            \"witnessDateOfBirth\": \"03/01/1980\",\r\n            \"suspectName1\": \"\",\r\n            \"witnessRelationshipToSuspect1\": \"\",\r\n            \"officerName1\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer1\": \"\",\r\n            \"victimName1\": \"\",\r\n            \"witnessRelationshipToVictim1\": \"\",\r\n            \"suspectName2\": \"\",\r\n            \"witnessRelationshipToSuspect2\": \"\",\r\n            \"officerName2\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer2\": \"\",\r\n            \"victimName2\": \"\",\r\n            \"witnessRelationshipToVictim2\": \"\",\r\n            \"suspectName3\": \"\",\r\n            \"witnessRelationshipToSuspect3\": \"\",\r\n            \"officerName3\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer3\": \"\",\r\n            \"victimName3\": \"\",\r\n            \"witnessRelationshipToVictim3\": \"\",\r\n            \"suspectName4\": \"\",\r\n            \"witnessRelationshipToSuspect4\": \"\",\r\n            \"officerName4\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer4\": \"\",\r\n            \"victimName4\": \"\",\r\n            \"witnessRelationshipToVictim4\": \"\",\r\n            \"suspectName5\": \"\",\r\n            \"witnessRelationshipToSuspect5\": \"\",\r\n            \"officerName5\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer5\": \"\",\r\n            \"victimName5\": \"\",\r\n            \"witnessRelationshipToVictim5\": \"\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"witnessRelationshipsToOfficer\": [],\r\n            \"witnessRelationshipsToSuspect\": [],\r\n            \"witnessRelationshipsToVictim\": [],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.5788151\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.5787686\"\r\n        }\r\n    ],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [\r\n        {\r\n            \"reviewFormValueId\": 5376,\r\n            \"title\": \"Supervisor assessment of incident:\",\r\n            \"type\": \"Textarea\",\r\n            \"value\": \"\",\r\n            \"ordinal\": 1,\r\n            \"indent\": 0,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 17391,\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7524227\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.7523747\"\r\n        },\r\n        {\r\n            \"reviewFormValueId\": 5377,\r\n            \"title\": \"RECOMMENDATION\",\r\n            \"type\": \"Header\",\r\n            \"value\": \"\",\r\n            \"ordinal\": 2,\r\n            \"indent\": 1,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 17391,\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7524424\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.7524422\"\r\n        },\r\n        {\r\n            \"reviewFormValueId\": 5375,\r\n            \"title\": \"Was policy violated?\",\r\n            \"type\": \"Checkbox\",\r\n            \"value\": \"Yes|||No\",\r\n            \"ordinal\": 3,\r\n            \"indent\": 2,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 17391,\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7524528\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.7524527\"\r\n        },\r\n        {\r\n            \"reviewFormValueId\": 5374,\r\n            \"title\": \"Is additional training recommended?\",\r\n            \"type\": \"Checkbox\",\r\n            \"value\": \"Yes|||No\",\r\n            \"ordinal\": 4,\r\n            \"indent\": 2,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 17391,\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7524634\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.7524632\"\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-04-01T15:16:20.4818276\",\r\n    \"createdDate\": \"2022-04-01T15:16:20.4817704\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/facts","description":"<p>Update an existing use of force incident. An error will be thrown if an Incident with the supplied Incident Id cannot be found within the system. You must ensure that the Incident Id exists.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","facts"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"33020721-6784-4063-9c61-ffc6897b53f5","name":"Success","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": 17391,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"Editing\",\r\n    \"fdleSubmissionStatus\": \"\",\r\n    \"incidentCaseNumber\": \"TestCase-002\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"03/01/2022\",\r\n    \"incidentTime\": \"12:12:00\",\r\n    \"reportDate\": \"03/30/2022\",\r\n    \"reportTime\": \"16:38:00\",\r\n    \"incidentSupervisorNotified\": \"Yes\",\r\n    \"incidentSupervisorNumber\": \"\",\r\n    \"incidentSupervisorNotifiedTime\": \"12:12:00\",\r\n    \"incidentSupervisorArrivedTime\": \"13:12:00\",\r\n    \"incidentVideoAttached\": \"\",\r\n    \"incidentDocumentAttached\": \"\",\r\n    \"incidentAddress\": \"1234 Main Street\",\r\n    \"city\": \"Tampa\",\r\n    \"state\": \"FL\",\r\n    \"area\": \"District 731\",\r\n    \"district\": \"East\",\r\n    \"sector\": \"A-2\",\r\n    \"subsector\": \"Bravo - 1\",\r\n    \"locationTypeApartment\": false,\r\n    \"locationTypeResidence\": false,\r\n    \"locationTypeHotelMotel\": false,\r\n    \"locationTypeRestaurantBar\": false,\r\n    \"locationTypeParkingLot\": false,\r\n    \"locationTypeOpenField\": false,\r\n    \"locationTypeWoodedArea\": false,\r\n    \"locationTypeOther\": false,\r\n    \"lightingConditionsDaylight\": false,\r\n    \"lightingConditionsDusk\": false,\r\n    \"lightingConditionsDawn\": false,\r\n    \"lightingConditionsDarkLighted\": false,\r\n    \"lightingConditionsDarkNotLighted\": false,\r\n    \"lightingConditionsDarkUnknownLighting\": false,\r\n    \"lightingConditionsOther\": false,\r\n    \"weatherConditionsClear\": false,\r\n    \"weatherConditionsCloudy\": false,\r\n    \"weatherConditionsRain\": false,\r\n    \"weatherConditionsSnow\": false,\r\n    \"weatherConditionsWindy\": false,\r\n    \"weatherConditionsFogSmokeSmog\": false,\r\n    \"weatherConditionsSleetHail\": false,\r\n    \"weatherConditionsOther\": false,\r\n    \"locationType\": \"Camp/ Campground (42)\",\r\n    \"lightingCondition\": \"\",\r\n    \"weatherCondition\": \"\",\r\n    \"involvedOfficer\": true,\r\n    \"involvedSuspect\": true,\r\n    \"involvedVictim\": true,\r\n    \"involvedWitness\": true,\r\n    \"involvedVehicle\": true,\r\n    \"involvedProperty\": true,\r\n    \"involvedInmate\": true,\r\n    \"involvedNarrative\": true,\r\n    \"involvedSupervisorReview\": true,\r\n    \"responseToResistanceEcd\": true,\r\n    \"responseToResistanceChemicalAgents\": true,\r\n    \"responseToResistanceImpactWeapons\": true,\r\n    \"responseToResistanceImpactMunitions\": true,\r\n    \"responseToResistanceK9\": true,\r\n    \"responseToResistanceHands\": true,\r\n    \"responseToResistanceTakedowns\": true,\r\n    \"responseToResistanceFirearms\": true,\r\n    \"responseToResistanceStopsticks\": true,\r\n    \"responseToResistanceOther\": false,\r\n    \"supervisorName\": \"John T. Goodman\",\r\n    \"managerNotified\": \"\",\r\n    \"managerName\": \"\",\r\n    \"managerNotifiedTime\": null,\r\n    \"managerArrivedTime\": null,\r\n    \"reasonForUseOfForce\": \"Destroy Animal\",\r\n    \"reasonForUseOfForceOther\": \"\",\r\n    \"incidentType\": \"Burglary\",\r\n    \"incidentTypeOther\": \"\",\r\n    \"trackingId\": 25,\r\n    \"trackingYear\": 2022,\r\n    \"trackingNumber\": \"2022 - 25\",\r\n    \"subReportNumber\": null,\r\n    \"historical\": false,\r\n    \"oldCreatorName\": \"\",\r\n    \"routing\": \"Command Staff\",\r\n    \"deleteComments\": \"\",\r\n    \"reportType\": \"\",\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"searchNarrative\": \"\",\r\n    \"incidentAddress2\": \"\",\r\n    \"zipCode\": \"\",\r\n    \"latitude\": \"\",\r\n    \"longitude\": \"\",\r\n    \"incidentAmbush\": \"\",\r\n    \"leoApproachSuspect\": \"\",\r\n    \"initialContactReason\": \"\",\r\n    \"forceResults\": \"\",\r\n    \"dontKnowRelatedIncidentCase\": \"\",\r\n    \"totalOfficersOwnAgencyApplyForce\": null,\r\n    \"dontKnowTotalOfficersOwnAgencyApplyForce\": \"\",\r\n    \"totalOfficersAllAgencyApplyForce\": null,\r\n    \"dontKnowTotalOfficersAllAgencyApplyForce\": \"\",\r\n    \"totalSuspectsDeceasedOrInjured\": null,\r\n    \"dontKnowTotalSuspectsDeceasedOrInjured\": \"\",\r\n    \"didOtherAgencyApplyForce\": false,\r\n    \"totalOtherAgencyApplyForce\": null,\r\n    \"otherAgencyCaseNumber\": \"\",\r\n    \"otherAgencyORI\": \"\",\r\n    \"dontKnowAddress\": \"\",\r\n    \"seniorOfficerPresent\": \"\",\r\n    \"seniorOfficerName\": \"\",\r\n    \"seniorOfficerNotifiedTime\": null,\r\n    \"seniorOfficerArrivedTime\": null,\r\n    \"incidentCategory\": \"\",\r\n    \"howmanyOfficersonCall\": \"\",\r\n    \"streetNumber\": \"\",\r\n    \"preDirectional\": \"\",\r\n    \"streetType\": \"\",\r\n    \"postDirectional\": \"\",\r\n    \"lethal\": false,\r\n    \"servicesRendered\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"chemicals\": [\r\n        {\r\n            \"chemicalId\": 17157,\r\n            \"incidentId\": 17391,\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"chemicalAgentTypeUsed\": \"MK-9 Handheld\",\r\n            \"chemicalSerialNumber\": \"\",\r\n            \"chemicalLotNumber\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds1\": \"2 seconds\",\r\n            \"chemicalDurationOfSprayInSeconds2\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds3\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds4\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds5\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds6\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds7\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds8\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds9\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds10\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds11\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds12\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds13\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds14\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds15\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect1\": \"16-20 feet\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect2\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect3\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect4\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect5\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect6\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect7\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect8\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect9\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect10\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect11\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect12\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect13\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect14\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect15\": \"\",\r\n            \"chemicalBodyPartsSprayed1\": \"Face\",\r\n            \"chemicalBodyPartsSprayed2\": \"\",\r\n            \"chemicalBodyPartsSprayed3\": \"\",\r\n            \"chemicalBodyPartsSprayed4\": \"\",\r\n            \"chemicalBodyPartsSprayed5\": \"\",\r\n            \"chemicalBodyPartsSprayed6\": \"\",\r\n            \"chemicalBodyPartsSprayed7\": \"\",\r\n            \"chemicalBodyPartsSprayed8\": \"\",\r\n            \"chemicalBodyPartsSprayed9\": \"\",\r\n            \"chemicalBodyPartsSprayed10\": \"\",\r\n            \"chemicalBodyPartsSprayed11\": \"\",\r\n            \"chemicalBodyPartsSprayed12\": \"\",\r\n            \"chemicalBodyPartsSprayed13\": \"\",\r\n            \"chemicalBodyPartsSprayed14\": \"\",\r\n            \"chemicalBodyPartsSprayed15\": \"\",\r\n            \"chemicalSuspectDecontaminated\": \"Yes\",\r\n            \"chemicalSuspectDecontaminatedTime\": \"12:12:00\",\r\n            \"chemicalSuspectDecontaminatedBy\": \"The Decontaminator\",\r\n            \"chemicalHowSuspectDecontaminated\": \"Eye Drops\",\r\n            \"chemicalSuspectCompliedAfter\": \"No\",\r\n            \"sprayDuration\": 1,\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"chemicalOnlyDisplayed\": \"No\",\r\n            \"structure\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"chemicalPointsOfContact\": [\r\n                {\r\n                    \"chemicalPointOfContactId\": 9073,\r\n                    \"chemicalId\": 17157,\r\n                    \"pointType\": \"Neck\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6545809\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6544842\"\r\n                },\r\n                {\r\n                    \"chemicalPointOfContactId\": 9074,\r\n                    \"chemicalId\": 17157,\r\n                    \"pointType\": \"Face\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6546362\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.654636\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.6539286\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.6538824\"\r\n        }\r\n    ],\r\n    \"ecds\": [\r\n        {\r\n            \"ecdId\": 17159,\r\n            \"incidentId\": 17391,\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"ecdDeploymentType\": \"Probes\",\r\n            \"ecdSerialNumber\": \"\",\r\n            \"ecdCartridgeNumber1\": \"\",\r\n            \"ecdCartridgeNumber2\": \"\",\r\n            \"ecdContactMade\": \"Yes\",\r\n            \"ecdNumberofContactsMade\": \"\",\r\n            \"ecdDeploymentDuration1\": \"4-6 sec\",\r\n            \"ecdDeploymentDistance1\": \"4-9 feet\",\r\n            \"ecdProbe1Connected1\": \"Yes\",\r\n            \"ecdProbe2Connected1\": \"No\",\r\n            \"ecdDeploymentDuration2\": \"10-12 sec\",\r\n            \"ecdDeploymentDistance2\": \"10-15 feet\",\r\n            \"ecdProbe1Connected2\": \"Yes\",\r\n            \"ecdProbe2Connected2\": \"Yes\",\r\n            \"ecdDeploymentDuration3\": \"\",\r\n            \"ecdDeploymentDistance3\": \"\",\r\n            \"ecdProbe1Connected3\": \"\",\r\n            \"ecdProbe2Connected3\": \"\",\r\n            \"ecdDeploymentDuration4\": \"\",\r\n            \"ecdDeploymentDistance4\": \"\",\r\n            \"ecdProbe1Connected4\": \"\",\r\n            \"ecdProbe2Connected4\": \"\",\r\n            \"ecdDeploymentDuration5\": \"\",\r\n            \"ecdDeploymentDistance5\": \"\",\r\n            \"ecdProbe1Connected5\": \"\",\r\n            \"ecdProbe2Connected5\": \"\",\r\n            \"ecdDeploymentDuration6\": \"\",\r\n            \"ecdDeploymentDistance6\": \"\",\r\n            \"ecdProbe1Connected6\": \"\",\r\n            \"ecdProbe2Connected6\": \"\",\r\n            \"ecdDeploymentDuration7\": \"\",\r\n            \"ecdDeploymentDistance7\": \"\",\r\n            \"ecdProbe1Connected7\": \"\",\r\n            \"ecdProbe2Connected7\": \"\",\r\n            \"ecdDeploymentDuration8\": \"\",\r\n            \"ecdDeploymentDistance8\": \"\",\r\n            \"ecdProbe1Connected8\": \"\",\r\n            \"ecdProbe2Connected8\": \"\",\r\n            \"ecdDeploymentDuration9\": \"\",\r\n            \"ecdDeploymentDistance9\": \"\",\r\n            \"ecdProbe1Connected9\": \"\",\r\n            \"ecdProbe2Connected9\": \"\",\r\n            \"ecdDeploymentDuration10\": \"\",\r\n            \"ecdDeploymentDistance10\": \"\",\r\n            \"ecdProbe1Connected10\": \"\",\r\n            \"ecdProbe2Connected10\": \"\",\r\n            \"ecdDeploymentDuration11\": \"\",\r\n            \"ecdDeploymentDistance11\": \"\",\r\n            \"ecdProbe1Connected11\": \"\",\r\n            \"ecdProbe2Connected11\": \"\",\r\n            \"ecdDeploymentDuration12\": \"\",\r\n            \"ecdDeploymentDistance12\": \"\",\r\n            \"ecdProbe1Connected12\": \"\",\r\n            \"ecdProbe2Connected12\": \"\",\r\n            \"ecdDeploymentDuration13\": \"\",\r\n            \"ecdDeploymentDistance13\": \"\",\r\n            \"ecdProbe1Connected13\": \"\",\r\n            \"ecdProbe2Connected13\": \"\",\r\n            \"ecdDeploymentDuration14\": \"\",\r\n            \"ecdDeploymentDistance14\": \"\",\r\n            \"ecdProbe1Connected14\": \"\",\r\n            \"ecdProbe2Connected14\": \"\",\r\n            \"ecdDeploymentDuration15\": \"\",\r\n            \"ecdDeploymentDistance15\": \"\",\r\n            \"ecdProbe1Connected15\": \"\",\r\n            \"ecdProbe2Connected15\": \"\",\r\n            \"ecdProbePenetratedSuspectSkin\": \"Yes\",\r\n            \"ecdProbesRemovedBy\": \"Officer Jimmy\",\r\n            \"ecdSuspectCompliedAfter\": \"Yes\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"deploymentFrequency\": 2,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"ecdOnlyDisplayed\": \"No\",\r\n            \"suspectIncapacitated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"ecdPointOfContact\": [\r\n                {\r\n                    \"ecdPointOfContactId\": 9075,\r\n                    \"ecdId\": 17159,\r\n                    \"pointType\": \"Forearm (back/left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.628289\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6281859\"\r\n                },\r\n                {\r\n                    \"ecdPointOfContactId\": 9076,\r\n                    \"ecdId\": 17159,\r\n                    \"pointType\": \"Upper Arm(right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6283481\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6283478\"\r\n                },\r\n                {\r\n                    \"ecdPointOfContactId\": 9077,\r\n                    \"ecdId\": 17159,\r\n                    \"pointType\": \"Forearm (front/left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6283491\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6283489\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.6275355\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.62749\"\r\n        }\r\n    ],\r\n    \"firearms\": [\r\n        {\r\n            \"firearmId\": 16093,\r\n            \"incidentId\": 17391,\r\n            \"firearmDisplayedOnly\": \"No\",\r\n            \"firearmSuspectCompliedAfter\": \"\",\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"firearmMake\": \"Glock\",\r\n            \"firearmModel\": \"Shootmaster17\",\r\n            \"firearmSerialNumber\": \"AB123456\",\r\n            \"firearmDepartmentIssued\": \"Yes\",\r\n            \"firearmPurpose\": \"Primary\",\r\n            \"firearmNumberOfShotsFired\": \"\",\r\n            \"firearmShootingPosition\": \"\",\r\n            \"firearmStrongHandUsed\": \"Yes\",\r\n            \"firearmWeakHandUsed\": \"No\",\r\n            \"firearmReload\": \"\",\r\n            \"firearmAmmoMake\": \"10mm\",\r\n            \"firearmMalfunction\": \"\",\r\n            \"firearmOfficerConcealment\": \"From concealment.\",\r\n            \"firearmOfficerCover\": \"Under cover.\",\r\n            \"pointsOfContact\": \"\",\r\n            \"deployedByOfficer\": \"\",\r\n            \"deployedAtSuspect\": \"\",\r\n            \"accidentalDischarge\": \"\",\r\n            \"negligentDischarge\": \"\",\r\n            \"numberOfShotsFired\": \"02\",\r\n            \"distanceOfShotsfired\": \"\",\r\n            \"handUsedForFiring\": \"Both\",\r\n            \"shootingPosition\": \"Kneeling\",\r\n            \"wasIssuedWeaponUsed\": \"Yes\",\r\n            \"didOfficerHaveToReload\": \"Yes\",\r\n            \"firedBehindCover\": \"Yes\",\r\n            \"firedFromConcealment\": \"Yes\",\r\n            \"wasFirearmUnloaded\": \"\",\r\n            \"didFirearmMalfunction\": \"No\",\r\n            \"wasFirearmUnholstered\": \"\",\r\n            \"suspectComplyAfterFirearmUsed\": \"Yes\",\r\n            \"shotDistance\": \"02:1 foot,1-3 feet\",\r\n            \"pointsOfContact1\": \"\",\r\n            \"firearmUseSuspectCompliedAfter\": \"\",\r\n            \"didOfficerDischargeWeapon\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"firearmPointsOfContact\": [\r\n                {\r\n                    \"firearmPointOfContactId\": 8028,\r\n                    \"firearmId\": 16093,\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7346036\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7345078\"\r\n                },\r\n                {\r\n                    \"firearmPointOfContactId\": 8029,\r\n                    \"firearmId\": 16093,\r\n                    \"pointType\": \"Stomach\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7346622\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7346619\"\r\n                },\r\n                {\r\n                    \"firearmPointOfContactId\": 8030,\r\n                    \"firearmId\": 16093,\r\n                    \"pointType\": \"Groin\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7346633\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7346631\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7339453\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.7338963\"\r\n        }\r\n    ],\r\n    \"hands\": [\r\n        {\r\n            \"handId\": 4005,\r\n            \"incidentId\": 17391,\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"handsTypeUsed\": \"Hands type 1\",\r\n            \"handsSuspectCompliedAfter\": \"No\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"handOnlyDisplayed\": \"\",\r\n            \"totalNumberOfStrikes\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"handPointsOfContact\": [\r\n                {\r\n                    \"handPointOfContactId\": 2006,\r\n                    \"handId\": 4005,\r\n                    \"pointType\": \"Head\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7099429\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7098352\"\r\n                },\r\n                {\r\n                    \"handPointOfContactId\": 2005,\r\n                    \"handId\": 4005,\r\n                    \"pointType\": \"Upper Arm(left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7100008\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7100006\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7092528\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.709213\"\r\n        }\r\n    ],\r\n    \"inmates\": [\r\n        {\r\n            \"inmateId\": 10092,\r\n            \"incidentId\": 17391,\r\n            \"suspectName\": \"\",\r\n            \"inmateNumber\": \"645\",\r\n            \"inmateDetentionFacility\": \"Juvenile Detention\",\r\n            \"officerName\": \"\",\r\n            \"restraintsUsed\": \"One-Piece Restraints\",\r\n            \"restraintsUsedOther\": \"\",\r\n            \"reasonForceWasApplied\": \"Prevent Escape\",\r\n            \"reasonForceWasAppliedOther\": \"\",\r\n            \"restrainedHours\": \"11\",\r\n            \"restrainedMinute\": \"45\",\r\n            \"inmateHaveWeapon\": \"Yes\",\r\n            \"cell\": \"In the cell\",\r\n            \"nonEditable\": false,\r\n            \"inmateDetentionClassification\": \"\",\r\n            \"suspectBookingNumber\": \"\",\r\n            \"jailViolations\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.6020665\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.6020158\"\r\n        }\r\n    ],\r\n    \"k9s\": [\r\n        {\r\n            \"k9Id\": 11077,\r\n            \"incidentId\": 17391,\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"k9name\": \"Fluffy\",\r\n            \"k9breed\": \"German Shepherd\",\r\n            \"k9type\": \"Cross Certified\",\r\n            \"k9typeOtherDescription\": \"\",\r\n            \"k9reasonDeployed\": \"Citizen Protection\",\r\n            \"k9nnumberBites\": \"02\",\r\n            \"k9suspectCompliedAfter\": \"No\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"k9OnlyDisplayed\": \"No\",\r\n            \"k9Category\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"k9PointOfContactId\": [\r\n                {\r\n                    \"k9PointOfContactId\": 4024,\r\n                    \"k9Id\": 11077,\r\n                    \"pointType\": \"Face\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7019671\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7018607\"\r\n                },\r\n                {\r\n                    \"k9PointOfContactId\": 4025,\r\n                    \"k9Id\": 11077,\r\n                    \"pointType\": \"Head\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7020264\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7020261\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7012719\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.7012225\"\r\n        }\r\n    ],\r\n    \"munitions\": [\r\n        {\r\n            \"munitionId\": 4017,\r\n            \"incidentId\": 17391,\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"munitionSuspectHit\": \"Yes\",\r\n            \"munitionWeaponMake\": \"Impact munitions weapon make 1\",\r\n            \"munitionSerialNumber\": \"D123456\",\r\n            \"munitionDeploymentType\": \"Impact munitions deployment type 1\",\r\n            \"munitionExactImpact\": \"Yes\",\r\n            \"munitionContactMade\": \"Yes\",\r\n            \"munitionDeploymentDistance1\": \"3-5 feet\",\r\n            \"munitionNumberOfRounds1\": \"02\",\r\n            \"munitionCaliberUsed1\": \"Caliber 2\",\r\n            \"munitionDeploymentDistance2\": \"16-20 feet\",\r\n            \"munitionNumberOfRounds2\": \"01\",\r\n            \"munitionCaliberUsed2\": \"Caliber 1\",\r\n            \"munitionDeploymentDistance3\": \"\",\r\n            \"munitionNumberOfRounds3\": \"\",\r\n            \"munitionCaliberUsed3\": \"\",\r\n            \"munitionDeploymentDistance4\": \"\",\r\n            \"munitionNumberOfRounds4\": \"\",\r\n            \"munitionCaliberUsed4\": \"\",\r\n            \"munitionDeploymentDistance5\": \"\",\r\n            \"munitionNumberOfRounds5\": \"\",\r\n            \"munitionCaliberUsed5\": \"\",\r\n            \"munitionDeploymentDistance6\": \"\",\r\n            \"munitionNumberOfRounds6\": \"\",\r\n            \"munitionCaliberUsed6\": \"\",\r\n            \"munitionDeploymentDistance7\": \"\",\r\n            \"munitionNumberOfRounds7\": \"\",\r\n            \"munitionCaliberUsed7\": \"\",\r\n            \"munitionDeploymentDistance8\": \"\",\r\n            \"munitionNumberOfRounds8\": \"\",\r\n            \"munitionCaliberUsed8\": \"\",\r\n            \"munitionDeploymentDistance9\": \"\",\r\n            \"munitionNumberOfRounds9\": \"\",\r\n            \"munitionCaliberUsed9\": \"\",\r\n            \"munitionDeploymentDistance10\": \"\",\r\n            \"munitionNumberOfRounds10\": \"\",\r\n            \"munitionCaliberUsed10\": \"\",\r\n            \"munitionDeploymentDistance11\": \"\",\r\n            \"munitionNumberOfRounds11\": \"\",\r\n            \"munitionCaliberUsed11\": \"\",\r\n            \"munitionDeploymentDistance12\": \"\",\r\n            \"munitionNumberOfRounds12\": \"\",\r\n            \"munitionCaliberUsed12\": \"\",\r\n            \"munitionCaliberUsed13\": \"\",\r\n            \"munitionDeploymentDistance13\": \"\",\r\n            \"munitionNumberOfRounds13\": \"\",\r\n            \"munitionCaliberUsed14\": \"\",\r\n            \"munitionDeploymentDistance14\": \"\",\r\n            \"munitionNumberOfRounds14\": \"\",\r\n            \"munitionCaliberUsed15\": \"\",\r\n            \"munitionDeploymentDistance15\": \"\",\r\n            \"munitionNumberOfRounds15\": \"\",\r\n            \"munitionSuspectCompliedAfter\": \"No\",\r\n            \"deploymentFrequency\": 2,\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"munitionOnlyDisplayed\": \"No\",\r\n            \"primaryReferenceId\": null,\r\n            \"munitionPointsOfContact\": [\r\n                {\r\n                    \"munitionPointOfContactId\": 2010,\r\n                    \"munitionId\": 4017,\r\n                    \"pointType\": \"Hamstring (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6922037\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6921011\"\r\n                },\r\n                {\r\n                    \"munitionPointOfContactId\": 2011,\r\n                    \"munitionId\": 4017,\r\n                    \"pointType\": \"Hand (left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6922655\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6922652\"\r\n                },\r\n                {\r\n                    \"munitionPointOfContactId\": 2012,\r\n                    \"munitionId\": 4017,\r\n                    \"pointType\": \"Thigh (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6922665\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6922663\"\r\n                },\r\n                {\r\n                    \"munitionPointOfContactId\": 2013,\r\n                    \"munitionId\": 4017,\r\n                    \"pointType\": \"Palm (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6922674\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6922672\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.6915303\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.691485\"\r\n        }\r\n    ],\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 16223,\r\n            \"incidentId\": 17391,\r\n            \"narrative\": \"This is one great narrative.\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7475614\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.7475111\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"incidentOfficerId\": 17380,\r\n            \"incidentId\": 17391,\r\n            \"officerId\": \"1\",\r\n            \"firstName\": \"Durand\",\r\n            \"middleName\": \"\",\r\n            \"lastName\": \"Peterson\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerOnDuty\": \"Yes\",\r\n            \"officerPermanentAssignment\": \"North Sector\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"address\": \"\",\r\n            \"city\": \"\",\r\n            \"state\": \"\",\r\n            \"race\": \"Native Hawaiian or Other Pacific Islander\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"\",\r\n            \"age\": \"35\",\r\n            \"height\": \"5ft 4in\",\r\n            \"weight\": \"150\",\r\n            \"build\": \"\",\r\n            \"officerYearsWithAgency\": \"12\",\r\n            \"officerTotalYearsInLawEnforcement\": \"12\",\r\n            \"education\": \"16\",\r\n            \"officerInjured\": \"Yes\",\r\n            \"officerInjuryType\": \"Gunshot\",\r\n            \"officerInjurySeverity\": \"Fatal injury\",\r\n            \"officerHowInjuryOccurred\": \"Other Suspect\",\r\n            \"officerMedicalTreatmentReceived\": \"Yes\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\r\n            \"officerTransported\": \"Yes\",\r\n            \"officerTransportedBy\": \"EMS\",\r\n            \"officerTransportedTo\": \"The Hospital\",\r\n            \"officerTransportedTime\": \"12:12:00\",\r\n            \"officerInjuryPhotos\": \"\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"cit\": \"\",\r\n            \"nonEditable\": false,\r\n            \"deescalation\": \"Maximized the use of cover or concealment to reduce exposure to potential threats by placing the officer in a safer position\",\r\n            \"bodyWornCamera\": \"Yes\",\r\n            \"activated\": \"Yes\",\r\n            \"didOfficerUseForce\": \"\",\r\n            \"employmentFullTime\": \"\",\r\n            \"dontKnowAge\": \"\",\r\n            \"dontKnowHeight\": \"\",\r\n            \"dontKnowWeight\": \"\",\r\n            \"dontKnowYearsOfService\": \"\",\r\n            \"leoInjuredNIBRSIncidentNumber\": \"\",\r\n            \"dontKnowLEOInjuredNIBRSIncidentNumber\": \"\",\r\n            \"officerMedicalTreatmentReceivedByDropdown\": \"\",\r\n            \"officerTransportedByDropDown\": \"\",\r\n            \"officerTransportedToDropDown\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"officerPointsOfContact\": [\r\n                {\r\n                    \"officerPointOfContactId\": 4112,\r\n                    \"officerId\": 17380,\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.5443487\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5442679\"\r\n                },\r\n                {\r\n                    \"officerPointOfContactId\": 4113,\r\n                    \"officerId\": 17380,\r\n                    \"pointType\": \"Upper Back\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.5444079\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5444076\"\r\n                },\r\n                {\r\n                    \"officerPointOfContactId\": 4111,\r\n                    \"officerId\": 17380,\r\n                    \"pointType\": \"Lower Back\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.544409\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5444088\"\r\n                }\r\n            ],\r\n            \"victimRelationshipsToOfficer\": [],\r\n            \"witnessRelationshipsToOfficer\": [],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.5436479\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.5435988\"\r\n        }\r\n    ],\r\n    \"properties\": [\r\n        {\r\n            \"propertyId\": 5024,\r\n            \"incidentId\": 17391,\r\n            \"owner\": \"Sara Smith (Witness)\",\r\n            \"propertyType\": \"LEGO Collection\",\r\n            \"propertyValue\": \"5.36\",\r\n            \"propertyOwnerName\": \"\",\r\n            \"propertyOwnerAddress\": \"\",\r\n            \"city\": \"\",\r\n            \"state\": \"\",\r\n            \"propertyOwnerEmail\": \"\",\r\n            \"propertyOwnerPhone1\": \"\",\r\n            \"propertyOwnerPhone2\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"propertyOwnerDateOfBirth\": \"\",\r\n            \"age\": \"\",\r\n            \"nonEditable\": false,\r\n            \"propertyCategory\": \"\",\r\n            \"propertyMethod\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.5940172\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.5939505\"\r\n        }\r\n    ],\r\n    \"stopSticks\": [\r\n        {\r\n            \"stopStickId\": 9071,\r\n            \"incidentId\": 17391,\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"Mercury\",\r\n            \"vehicleModel\": \"Hooptie\",\r\n            \"vehicleYear\": \"1992\",\r\n            \"vehicleTag\": \"FL1234\",\r\n            \"stopstickOfficerTrainedInTechnique\": \"Yes\",\r\n            \"stopstickInvolvedStopSticksUsed\": \"Yes\",\r\n            \"stopstickPitManeuverUsed\": \"Yes\",\r\n            \"stopstickBoxinTechniqueUsed\": \"Yes\",\r\n            \"interventionUsed\": \"Intervention Used\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"stopstickOnlyDisplayed\": \"\",\r\n            \"state\": \"FL\",\r\n            \"primaryReferenceId\": null,\r\n            \"stopStickInfo\": [\r\n                {\r\n                    \"stopStickInfoId\": 8059,\r\n                    \"stopStickId\": 9071,\r\n                    \"stopstickInvolvedStopStickNumber\": \"Stick of Justice\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7439952\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7439126\"\r\n                },\r\n                {\r\n                    \"stopStickInfoId\": 8060,\r\n                    \"stopStickId\": 9071,\r\n                    \"stopstickInvolvedStopStickNumber\": \"Stick of Truth\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7440398\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7440395\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7434678\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.7434426\"\r\n        }\r\n    ],\r\n    \"suspects\": [\r\n        {\r\n            \"suspectId\": 16292,\r\n            \"incidentId\": 17391,\r\n            \"firstName\": \"John\",\r\n            \"middleName\": \"Jason\",\r\n            \"lastName\": \"Smith\",\r\n            \"suspectAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"suspectDateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"height\": \"5ft 6in\",\r\n            \"weight\": \" 171-180\",\r\n            \"build\": \"Thin\",\r\n            \"education\": \"\",\r\n            \"suspectActionsPresence\": true,\r\n            \"suspectActionsPassiveResistance\": true,\r\n            \"suspectActionsVerbalResistance\": true,\r\n            \"suspectActionsActiveAggression\": true,\r\n            \"suspectActionsAggressivePhysical\": true,\r\n            \"suspectActionsAggravatedPhysical\": true,\r\n            \"suspectActionsOther\": false,\r\n            \"suspectOfficersResponsePresence\": true,\r\n            \"suspectOfficersResponsePassiveResistance\": true,\r\n            \"suspectOfficersResponseVerbalResistance\": true,\r\n            \"suspectOfficersResponseAggression\": true,\r\n            \"suspectOfficersResponseAggravatedPhysical\": true,\r\n            \"suspectOfficersResponseOther\": false,\r\n            \"suspectOfficersResponseLevel7\": null,\r\n            \"suspectOfficersResponseLevel8\": null,\r\n            \"suspectWeaponUsedHands\": true,\r\n            \"suspectWeaponUsedBluntObject\": true,\r\n            \"suspectWeaponUsedEdgedObject\": true,\r\n            \"suspectWeaponUsedFirearm\": true,\r\n            \"suspectWeaponUsedOther\": true,\r\n            \"suspectArrested\": \"Yes\",\r\n            \"suspectWhyNotArrested\": \"\",\r\n            \"suspectArrestCharge\": \"28-1911 Failure to yield\",\r\n            \"suspectArrestedForFelony\": \"\",\r\n            \"suspectArresteeDeliveredTo\": \"\",\r\n            \"suspectJailNumber\": \"\",\r\n            \"suspectConditionPriorMellow\": false,\r\n            \"suspectConditionPriorDepressed\": false,\r\n            \"suspectConditionPriorAngry\": false,\r\n            \"suspectConditionPriorDisoriented\": true,\r\n            \"suspectConditionPriorDrugs\": true,\r\n            \"suspectConditionPriorAlcohol\": false,\r\n            \"suspectConditionPriorFighting\": false,\r\n            \"suspectConditionPriorOther\": false,\r\n            \"suspectConditionPostMellow\": true,\r\n            \"suspectConditionPostDepressed\": true,\r\n            \"suspectConditionPostAngry\": false,\r\n            \"suspectConditionPostDisoriented\": false,\r\n            \"suspectConditionPostDrugs\": false,\r\n            \"suspectConditionPostAlcohol\": false,\r\n            \"suspectConditionPostFighting\": false,\r\n            \"suspectConditionPostOther\": false,\r\n            \"suspectConditionPriorComment\": \"\",\r\n            \"suspectConditionPostComment\": \"\",\r\n            \"suspectInjured\": \"Yes\",\r\n            \"suspectInjuryType\": \"Gunshot\",\r\n            \"suspectInjurySeverity\": \"Fatal\",\r\n            \"howInjuryOccurredToSuspect\": \"Other Suspect\",\r\n            \"medicalTreatmentOfSuspect\": \"Yes\",\r\n            \"medicalTreatmentOfSuspectBy\": \"The Doctor\",\r\n            \"suspectTransported\": \"Yes\",\r\n            \"suspectTransportedBy\": \"EMS\",\r\n            \"suspectTransportedTo\": \"The Hospital\",\r\n            \"suspectTransportedTime\": \"12:12:00\",\r\n            \"suspectInjuryPhotos\": \"\",\r\n            \"suspectInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"suspectExhibitsSignsofExcitedDelirium\": \"Yes\",\r\n            \"deliriumSignsDisplayed\": \"Incoherent Speech\",\r\n            \"suspectShowedSignsofMentalIllness\": \"Yes\",\r\n            \"showedSignsMentalIllness\": \"Depression\",\r\n            \"showedSignsMentalIllnessothers\": \"\",\r\n            \"rank1\": 1,\r\n            \"rank2\": 2,\r\n            \"rank3\": 4,\r\n            \"rank4\": 3,\r\n            \"rank5\": 6,\r\n            \"rank6\": 5,\r\n            \"rank7\": null,\r\n            \"rank8\": 1,\r\n            \"rank9\": 2,\r\n            \"rank10\": 5,\r\n            \"rank11\": 3,\r\n            \"rank12\": 4,\r\n            \"rank13\": null,\r\n            \"rank14\": null,\r\n            \"rank15\": null,\r\n            \"comments\": \"\",\r\n            \"nonEditable\": false,\r\n            \"arrestDate\": \"03/06/2022\",\r\n            \"arrestTime\": \"12:12:00\",\r\n            \"suspectForceCategory\": \"\",\r\n            \"suspectResistedType\": \"\",\r\n            \"suspectThreatPerson\": \"\",\r\n            \"estimatedAgeRange\": \"\",\r\n            \"dontKnowAge\": \"\",\r\n            \"knownImpairment\": \"\",\r\n            \"knownImpairmentType\": \"\",\r\n            \"suspectResisted\": \"\",\r\n            \"suspectArmed\": \"\",\r\n            \"dontKnowCharges\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"suspectTransportedByDropDown\": \"\",\r\n            \"suspectTransportedToDropDown\": \"\",\r\n            \"threatFactors\": \"\",\r\n            \"deEscalation\": \"\",\r\n            \"suspectWeaponUsedOption6\": null,\r\n            \"suspectWeaponUsedOption7\": null,\r\n            \"suspectWeaponUsedOption8\": null,\r\n            \"suspectWeaponUsedOption9\": null,\r\n            \"suspectDisabilities\": \"\",\r\n            \"knowledgeofSuspectDisability\": \"\",\r\n            \"mobilityDevices\": \"\",\r\n            \"remoteInterpreterUsed\": \"\",\r\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\r\n            \"suspectCategory\": \"\",\r\n            \"suffix\": \"\",\r\n            \"genderIdentify\": \"\",\r\n            \"inmateNumber\": \"\",\r\n            \"custodyLocation\": \"\",\r\n            \"civilianDistance\": \"\",\r\n            \"civilianResistance\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"suspectPointsOfContact\": [\r\n                {\r\n                    \"suspectPointOfContactId\": 9206,\r\n                    \"suspectId\": 16292,\r\n                    \"pointType\": \"Face\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.524827\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5247266\"\r\n                },\r\n                {\r\n                    \"suspectPointOfContactId\": 9207,\r\n                    \"suspectId\": 16292,\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.5248734\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5248732\"\r\n                },\r\n                {\r\n                    \"suspectPointOfContactId\": 9208,\r\n                    \"suspectId\": 16292,\r\n                    \"pointType\": \"Upper Arm (back/left)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.5248745\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5248743\"\r\n                },\r\n                {\r\n                    \"suspectPointOfContactId\": 9209,\r\n                    \"suspectId\": 16292,\r\n                    \"pointType\": \"Heel (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.5248755\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5248753\"\r\n                }\r\n            ],\r\n            \"victimsRelationshipToSuspects\": [],\r\n            \"witnessesRelationshipToSuspects\": [],\r\n            \"suspectChargeClassifications\": [\r\n                {\r\n                    \"suspectChargeClassificationId\": 4090,\r\n                    \"suspectId\": 16292,\r\n                    \"charge\": \"28-1911 Failure to yield\",\r\n                    \"chargeClasification1\": false,\r\n                    \"chargeClasification2\": true,\r\n                    \"chargeClasification3\": false,\r\n                    \"chargeClasification4\": false,\r\n                    \"chargeClasification5\": false,\r\n                    \"chargeClasification6\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.5256666\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5255826\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.5241632\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.5241246\"\r\n        }\r\n    ],\r\n    \"takedowns\": [\r\n        {\r\n            \"takedownId\": 11070,\r\n            \"incidentId\": 17391,\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"takedownTypeUsed\": \"Leg Sweep\",\r\n            \"takedownSuspectCompliedAfter\": \"No\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"takedownOnlyDisplayed\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"takedownPointsOfContact\": [\r\n                {\r\n                    \"takedownPointOfContactId\": 1005,\r\n                    \"takedownId\": 11070,\r\n                    \"pointType\": \"Hip (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7178303\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7177161\"\r\n                },\r\n                {\r\n                    \"takedownPointOfContactId\": 1006,\r\n                    \"takedownId\": 11070,\r\n                    \"pointType\": \"Glutes\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7178944\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7178941\"\r\n                },\r\n                {\r\n                    \"takedownPointOfContactId\": 1007,\r\n                    \"takedownId\": 11070,\r\n                    \"pointType\": \"Groin\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.7178955\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.7178953\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7171352\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.717086\"\r\n        }\r\n    ],\r\n    \"vehicles\": [\r\n        {\r\n            \"vehicleId\": 10105,\r\n            \"incidentId\": 17391,\r\n            \"driver\": \"John Smith (Suspect)\",\r\n            \"owner\": \"John Smith (Suspect)\",\r\n            \"passengers\": \"John Smith (Suspect)\",\r\n            \"vehicleType\": \"Motorcycle\",\r\n            \"vehicleMake\": \"BMW\",\r\n            \"vehicleModel\": \"Motormaster 8000\",\r\n            \"year\": \"2019\",\r\n            \"vehicleTag\": \"FL1234\",\r\n            \"state\": \"FL\",\r\n            \"vehicleSpeedDuringIncident\": \"41-50 MPH\",\r\n            \"nonEditable\": false,\r\n            \"vehicleDamage\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.5856491\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.5856173\"\r\n        }\r\n    ],\r\n    \"victims\": [\r\n        {\r\n            \"victimId\": 9059,\r\n            \"incidentId\": 17391,\r\n            \"firstName\": \"Sara\",\r\n            \"middleName\": \"Jane\",\r\n            \"lastName\": \"Smith\",\r\n            \"victimAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"victimEmail\": \"sarasmith@gmail.com\",\r\n            \"victimPhone1\": \"111-111-1111 x11111\",\r\n            \"victimPhone2\": \"222-222-2222 x_____\",\r\n            \"race\": \"Hispanic/Latino\",\r\n            \"gender\": \"Female\",\r\n            \"victimDateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"suspectName1\": \"\",\r\n            \"victimRelationshipToSuspect1\": \"\",\r\n            \"officerName1\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer1\": \"\",\r\n            \"suspectName2\": \"\",\r\n            \"victimRelationshipToSuspect2\": \"\",\r\n            \"officerName2\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer2\": \"\",\r\n            \"suspectName3\": \"\",\r\n            \"victimRelationshipToSuspect3\": \"\",\r\n            \"officerName3\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer3\": \"\",\r\n            \"suspectName4\": \"\",\r\n            \"victimRelationshipToSuspect4\": \"\",\r\n            \"officerName4\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer4\": \"\",\r\n            \"suspectName5\": \"\",\r\n            \"victimRelationshipToSuspect5\": \"\",\r\n            \"officerName5\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer5\": \"\",\r\n            \"victimInjured\": \"Yes\",\r\n            \"victimInjuryType\": \"Blunt Trauma\",\r\n            \"victimInjurySeverity\": \"Non-Incapacitating\",\r\n            \"victimHowInjuryToVictimOccurred\": \"Suspect's Actions\",\r\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\r\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\r\n            \"victimTransported\": \"Yes\",\r\n            \"victimTransportedBy\": \"EMS\",\r\n            \"victimTransportedTo\": \"The Hospital\",\r\n            \"victimTransportedTime\": \"12:12:00\",\r\n            \"victimInjuryPhotos\": \"\",\r\n            \"victimInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"officerRole\": \"\",\r\n            \"outsideAgency\": \"\",\r\n            \"victimMedicalTreatmentOfVictimByDropdown\": \"\",\r\n            \"victimTransportedByDropDown\": \"\",\r\n            \"victimTransportedToDropDown\": \"\",\r\n            \"victimInUniform\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"victimPointsOfContact\": [\r\n                {\r\n                    \"victimPointOfContactId\": 1011,\r\n                    \"victimId\": 9059,\r\n                    \"pointType\": \"Palm (right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.56322\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5631206\"\r\n                },\r\n                {\r\n                    \"victimPointOfContactId\": 1012,\r\n                    \"victimId\": 9059,\r\n                    \"pointType\": \"Forearm (front/right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.563279\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.5632788\"\r\n                }\r\n            ],\r\n            \"victimRelationshipsToOfficer\": [],\r\n            \"victimRelationshipsToSuspect\": [],\r\n            \"witnessRelationshipsToVictim\": [],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.5625434\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.562515\"\r\n        }\r\n    ],\r\n    \"weapons\": [\r\n        {\r\n            \"weaponId\": 14078,\r\n            \"incidentId\": 17391,\r\n            \"suspectName\": \"John Smith\",\r\n            \"officerName\": \"Durand Peterson\",\r\n            \"weaponTypeUsed\": \"Flashlight\",\r\n            \"weaponTotalNumberOfStrikes\": \"16\",\r\n            \"weaponBodyPartMadeContactWith1\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds1\": \"\",\r\n            \"weaponBodyPartMadeContactWith2\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds2\": \"\",\r\n            \"weaponBodyPartMadeContactWith3\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds3\": \"\",\r\n            \"weaponBodyPartMadeContactWith4\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds4\": \"\",\r\n            \"weaponBodyPartMadeContactWith5\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds5\": \"\",\r\n            \"weaponBodyPartMadeContactWith6\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds6\": \"\",\r\n            \"weaponBodyPartMadeContactWith7\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds7\": \"\",\r\n            \"weaponBodyPartMadeContactWith8\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds8\": \"\",\r\n            \"weaponBodyPartMadeContactWith9\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds9\": \"\",\r\n            \"weaponBodyPartMadeContactWith10\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds10\": \"\",\r\n            \"weaponBodyPartMadeContactWith11\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds11\": \"\",\r\n            \"weaponBodyPartMadeContactWith12\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds12\": \"\",\r\n            \"weaponBodyPartMadeContactWith13\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds13\": \"\",\r\n            \"weaponBodyPartMadeContactWith14\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds14\": \"\",\r\n            \"weaponBodyPartMadeContactWith15\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds15\": \"\",\r\n            \"weaponSuspectCompliedAfter\": \"Yes\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"impactContact\": 1,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"weaponOnlyDisplayed\": \"No\",\r\n            \"bodyPartsAimedFor\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"weaponPointOfContact\": [\r\n                {\r\n                    \"weaponPointOfContactId\": 5025,\r\n                    \"weaponId\": 14078,\r\n                    \"pointType\": \"Upper Chest\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.6714149\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6713159\"\r\n                },\r\n                {\r\n                    \"weaponPointOfContactId\": 5026,\r\n                    \"weaponId\": 14078,\r\n                    \"pointType\": \"Upper Arm(right)\",\r\n                    \"value\": \"1\",\r\n                    \"nonEditable\": false,\r\n                    \"modifiedDate\": \"2022-04-01T15:16:20.671485\",\r\n                    \"createdDate\": \"2022-04-01T15:16:20.6714848\"\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.6707151\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.6706737\"\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 9073,\r\n            \"incidentId\": 17391,\r\n            \"firstName\": \"Sara\",\r\n            \"middleName\": \"Jane\",\r\n            \"lastName\": \"Smith\",\r\n            \"witnessAddress\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"witnessEmail\": \"sarasmith@gmail.com\",\r\n            \"witnessPhone1\": \"111-111-1111 x111__\",\r\n            \"witnessPhone2\": \"222-222-2222 x_____\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Female\",\r\n            \"witnessDateOfBirth\": \"03/01/1980\",\r\n            \"suspectName1\": \"\",\r\n            \"witnessRelationshipToSuspect1\": \"\",\r\n            \"officerName1\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer1\": \"\",\r\n            \"victimName1\": \"\",\r\n            \"witnessRelationshipToVictim1\": \"\",\r\n            \"suspectName2\": \"\",\r\n            \"witnessRelationshipToSuspect2\": \"\",\r\n            \"officerName2\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer2\": \"\",\r\n            \"victimName2\": \"\",\r\n            \"witnessRelationshipToVictim2\": \"\",\r\n            \"suspectName3\": \"\",\r\n            \"witnessRelationshipToSuspect3\": \"\",\r\n            \"officerName3\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer3\": \"\",\r\n            \"victimName3\": \"\",\r\n            \"witnessRelationshipToVictim3\": \"\",\r\n            \"suspectName4\": \"\",\r\n            \"witnessRelationshipToSuspect4\": \"\",\r\n            \"officerName4\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer4\": \"\",\r\n            \"victimName4\": \"\",\r\n            \"witnessRelationshipToVictim4\": \"\",\r\n            \"suspectName5\": \"\",\r\n            \"witnessRelationshipToSuspect5\": \"\",\r\n            \"officerName5\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer5\": \"\",\r\n            \"victimName5\": \"\",\r\n            \"witnessRelationshipToVictim5\": \"\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"witnessRelationshipsToOfficer\": [],\r\n            \"witnessRelationshipsToSuspect\": [],\r\n            \"witnessRelationshipsToVictim\": [],\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.5788151\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.5787686\"\r\n        }\r\n    ],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [\r\n        {\r\n            \"reviewFormValueId\": 5376,\r\n            \"title\": \"Supervisor assessment of incident:\",\r\n            \"type\": \"Textarea\",\r\n            \"value\": \"\",\r\n            \"ordinal\": 1,\r\n            \"indent\": 0,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 17391,\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7524227\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.7523747\"\r\n        },\r\n        {\r\n            \"reviewFormValueId\": 5377,\r\n            \"title\": \"RECOMMENDATION\",\r\n            \"type\": \"Header\",\r\n            \"value\": \"\",\r\n            \"ordinal\": 2,\r\n            \"indent\": 1,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 17391,\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7524424\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.7524422\"\r\n        },\r\n        {\r\n            \"reviewFormValueId\": 5375,\r\n            \"title\": \"Was policy violated?\",\r\n            \"type\": \"Checkbox\",\r\n            \"value\": \"Yes|||No\",\r\n            \"ordinal\": 3,\r\n            \"indent\": 2,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 17391,\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7524528\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.7524527\"\r\n        },\r\n        {\r\n            \"reviewFormValueId\": 5374,\r\n            \"title\": \"Is additional training recommended?\",\r\n            \"type\": \"Checkbox\",\r\n            \"value\": \"Yes|||No\",\r\n            \"ordinal\": 4,\r\n            \"indent\": 2,\r\n            \"helpSeg\": \"\",\r\n            \"formValue\": \"\",\r\n            \"incidentId\": 17391,\r\n            \"modifiedDate\": \"2022-04-01T15:16:20.7524634\",\r\n            \"createdDate\": \"2022-04-01T15:16:20.7524632\"\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-04-01T15:16:20.4818276\",\r\n    \"createdDate\": \"2022-04-01T15:16:20.4817704\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/facts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcZmFjdHM=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Apr 2022 19:20:10 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"incidentId\": 17391,\n    \"creator\": \"\",\n    \"reviewer\": \"\",\n    \"creatorId\": 8,\n    \"status\": \"Editing\",\n    \"fdleSubmissionStatus\": \"\",\n    \"incidentCaseNumber\": \"TestCase-002\",\n    \"relatedIncidentCase\": \"\",\n    \"incidentDate\": \"03/01/2022\",\n    \"incidentTime\": \"12:12:00\",\n    \"reportDate\": \"03/30/2022\",\n    \"reportTime\": \"16:38:00\",\n    \"incidentSupervisorNotified\": \"Yes\",\n    \"incidentSupervisorNumber\": \"\",\n    \"incidentSupervisorNotifiedTime\": \"12:12:00\",\n    \"incidentSupervisorArrivedTime\": \"13:12:00\",\n    \"incidentVideoAttached\": \"\",\n    \"incidentDocumentAttached\": \"\",\n    \"incidentAddress\": \"1234 Main Street\",\n    \"city\": \"Tampa\",\n    \"state\": \"FL\",\n    \"area\": \"District 731\",\n    \"district\": \"East\",\n    \"sector\": \"A-2\",\n    \"subsector\": \"Bravo - 1\",\n    \"locationTypeApartment\": false,\n    \"locationTypeResidence\": false,\n    \"locationTypeHotelMotel\": false,\n    \"locationTypeRestaurantBar\": false,\n    \"locationTypeParkingLot\": false,\n    \"locationTypeOpenField\": false,\n    \"locationTypeWoodedArea\": false,\n    \"locationTypeOther\": false,\n    \"lightingConditionsDaylight\": false,\n    \"lightingConditionsDusk\": false,\n    \"lightingConditionsDawn\": false,\n    \"lightingConditionsDarkLighted\": false,\n    \"lightingConditionsDarkNotLighted\": false,\n    \"lightingConditionsDarkUnknownLighting\": false,\n    \"lightingConditionsOther\": false,\n    \"weatherConditionsClear\": false,\n    \"weatherConditionsCloudy\": false,\n    \"weatherConditionsRain\": false,\n    \"weatherConditionsSnow\": false,\n    \"weatherConditionsWindy\": false,\n    \"weatherConditionsFogSmokeSmog\": false,\n    \"weatherConditionsSleetHail\": false,\n    \"weatherConditionsOther\": false,\n    \"locationType\": \"Camp/ Campground (42)\",\n    \"lightingCondition\": \"\",\n    \"weatherCondition\": \"\",\n    \"involvedOfficer\": true,\n    \"involvedSuspect\": true,\n    \"involvedVictim\": true,\n    \"involvedWitness\": true,\n    \"involvedVehicle\": true,\n    \"involvedProperty\": true,\n    \"involvedInmate\": true,\n    \"involvedNarrative\": true,\n    \"involvedSupervisorReview\": true,\n    \"responseToResistanceEcd\": true,\n    \"responseToResistanceChemicalAgents\": true,\n    \"responseToResistanceImpactWeapons\": true,\n    \"responseToResistanceImpactMunitions\": true,\n    \"responseToResistanceK9\": true,\n    \"responseToResistanceHands\": true,\n    \"responseToResistanceTakedowns\": true,\n    \"responseToResistanceFirearms\": true,\n    \"responseToResistanceStopsticks\": true,\n    \"responseToResistanceOther\": false,\n    \"supervisorName\": \"John T. Goodman\",\n    \"managerNotified\": \"\",\n    \"managerName\": \"\",\n    \"managerNotifiedTime\": null,\n    \"managerArrivedTime\": null,\n    \"reasonForUseOfForce\": \"Destroy Animal\",\n    \"reasonForUseOfForceOther\": \"\",\n    \"incidentType\": \"Burglary\",\n    \"incidentTypeOther\": \"\",\n    \"trackingId\": 25,\n    \"trackingYear\": 2022,\n    \"trackingNumber\": \"2022 - 25\",\n    \"subReportNumber\": null,\n    \"historical\": false,\n    \"oldCreatorName\": \"\",\n    \"routing\": \"Command Staff\",\n    \"deleteComments\": \"\",\n    \"reportType\": \"\",\n    \"nonEditable\": false,\n    \"sealed\": false,\n    \"searchNarrative\": \"\",\n    \"incidentAddress2\": \"\",\n    \"zipCode\": \"\",\n    \"latitude\": \"\",\n    \"longitude\": \"\",\n    \"incidentAmbush\": \"\",\n    \"leoApproachSuspect\": \"\",\n    \"initialContactReason\": \"\",\n    \"forceResults\": \"\",\n    \"dontKnowRelatedIncidentCase\": \"\",\n    \"totalOfficersOwnAgencyApplyForce\": null,\n    \"dontKnowTotalOfficersOwnAgencyApplyForce\": \"\",\n    \"totalOfficersAllAgencyApplyForce\": null,\n    \"dontKnowTotalOfficersAllAgencyApplyForce\": \"\",\n    \"totalSuspectsDeceasedOrInjured\": null,\n    \"dontKnowTotalSuspectsDeceasedOrInjured\": \"\",\n    \"didOtherAgencyApplyForce\": false,\n    \"totalOtherAgencyApplyForce\": null,\n    \"otherAgencyCaseNumber\": \"\",\n    \"otherAgencyORI\": \"\",\n    \"dontKnowAddress\": \"\",\n    \"seniorOfficerPresent\": \"\",\n    \"seniorOfficerName\": \"\",\n    \"seniorOfficerNotifiedTime\": null,\n    \"seniorOfficerArrivedTime\": null,\n    \"incidentCategory\": \"\",\n    \"howmanyOfficersonCall\": \"\",\n    \"streetNumber\": \"\",\n    \"preDirectional\": \"\",\n    \"streetType\": \"\",\n    \"postDirectional\": \"\",\n    \"lethal\": false,\n    \"servicesRendered\": \"\",\n    \"primaryReferenceId\": null,\n    \"chemicals\": [\n        {\n            \"chemicalId\": 17157,\n            \"incidentId\": 17391,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"chemicalAgentTypeUsed\": \"MK-9 Handheld\",\n            \"chemicalSerialNumber\": \"\",\n            \"chemicalLotNumber\": \"\",\n            \"chemicalDurationOfSprayInSeconds1\": \"2 seconds\",\n            \"chemicalDurationOfSprayInSeconds2\": \"\",\n            \"chemicalDurationOfSprayInSeconds3\": \"\",\n            \"chemicalDurationOfSprayInSeconds4\": \"\",\n            \"chemicalDurationOfSprayInSeconds5\": \"\",\n            \"chemicalDurationOfSprayInSeconds6\": \"\",\n            \"chemicalDurationOfSprayInSeconds7\": \"\",\n            \"chemicalDurationOfSprayInSeconds8\": \"\",\n            \"chemicalDurationOfSprayInSeconds9\": \"\",\n            \"chemicalDurationOfSprayInSeconds10\": \"\",\n            \"chemicalDurationOfSprayInSeconds11\": \"\",\n            \"chemicalDurationOfSprayInSeconds12\": \"\",\n            \"chemicalDurationOfSprayInSeconds13\": \"\",\n            \"chemicalDurationOfSprayInSeconds14\": \"\",\n            \"chemicalDurationOfSprayInSeconds15\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect1\": \"16-20 feet\",\n            \"chemicalDistanceSprayDeployedFromSuspect2\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect3\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect4\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect5\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect6\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect7\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect8\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect9\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect10\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect11\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect12\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect13\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect14\": \"\",\n            \"chemicalDistanceSprayDeployedFromSuspect15\": \"\",\n            \"chemicalBodyPartsSprayed1\": \"Face\",\n            \"chemicalBodyPartsSprayed2\": \"\",\n            \"chemicalBodyPartsSprayed3\": \"\",\n            \"chemicalBodyPartsSprayed4\": \"\",\n            \"chemicalBodyPartsSprayed5\": \"\",\n            \"chemicalBodyPartsSprayed6\": \"\",\n            \"chemicalBodyPartsSprayed7\": \"\",\n            \"chemicalBodyPartsSprayed8\": \"\",\n            \"chemicalBodyPartsSprayed9\": \"\",\n            \"chemicalBodyPartsSprayed10\": \"\",\n            \"chemicalBodyPartsSprayed11\": \"\",\n            \"chemicalBodyPartsSprayed12\": \"\",\n            \"chemicalBodyPartsSprayed13\": \"\",\n            \"chemicalBodyPartsSprayed14\": \"\",\n            \"chemicalBodyPartsSprayed15\": \"\",\n            \"chemicalSuspectDecontaminated\": \"Yes\",\n            \"chemicalSuspectDecontaminatedTime\": \"12:12:00\",\n            \"chemicalSuspectDecontaminatedBy\": \"The Decontaminator\",\n            \"chemicalHowSuspectDecontaminated\": \"Eye Drops\",\n            \"chemicalSuspectCompliedAfter\": \"No\",\n            \"sprayDuration\": 1,\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"chemicalOnlyDisplayed\": \"No\",\n            \"structure\": \"\",\n            \"primaryReferenceId\": null,\n            \"chemicalPointsOfContact\": [\n                {\n                    \"chemicalPointOfContactId\": 9073,\n                    \"chemicalId\": 17157,\n                    \"pointType\": \"Neck\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7201743\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6544842\"\n                },\n                {\n                    \"chemicalPointOfContactId\": 9074,\n                    \"chemicalId\": 17157,\n                    \"pointType\": \"Face\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7201778\",\n                    \"createdDate\": \"2022-04-01T15:16:20.654636\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:20:10.7193746\",\n            \"createdDate\": \"2022-04-01T15:16:20.6538824\"\n        }\n    ],\n    \"ecds\": [\n        {\n            \"ecdId\": 17159,\n            \"incidentId\": 17391,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"ecdDeploymentType\": \"Probes\",\n            \"ecdSerialNumber\": \"\",\n            \"ecdCartridgeNumber1\": \"\",\n            \"ecdCartridgeNumber2\": \"\",\n            \"ecdContactMade\": \"Yes\",\n            \"ecdNumberofContactsMade\": \"\",\n            \"ecdDeploymentDuration1\": \"4-6 sec\",\n            \"ecdDeploymentDistance1\": \"4-9 feet\",\n            \"ecdProbe1Connected1\": \"Yes\",\n            \"ecdProbe2Connected1\": \"No\",\n            \"ecdDeploymentDuration2\": \"10-12 sec\",\n            \"ecdDeploymentDistance2\": \"10-15 feet\",\n            \"ecdProbe1Connected2\": \"Yes\",\n            \"ecdProbe2Connected2\": \"Yes\",\n            \"ecdDeploymentDuration3\": \"\",\n            \"ecdDeploymentDistance3\": \"\",\n            \"ecdProbe1Connected3\": \"\",\n            \"ecdProbe2Connected3\": \"\",\n            \"ecdDeploymentDuration4\": \"\",\n            \"ecdDeploymentDistance4\": \"\",\n            \"ecdProbe1Connected4\": \"\",\n            \"ecdProbe2Connected4\": \"\",\n            \"ecdDeploymentDuration5\": \"\",\n            \"ecdDeploymentDistance5\": \"\",\n            \"ecdProbe1Connected5\": \"\",\n            \"ecdProbe2Connected5\": \"\",\n            \"ecdDeploymentDuration6\": \"\",\n            \"ecdDeploymentDistance6\": \"\",\n            \"ecdProbe1Connected6\": \"\",\n            \"ecdProbe2Connected6\": \"\",\n            \"ecdDeploymentDuration7\": \"\",\n            \"ecdDeploymentDistance7\": \"\",\n            \"ecdProbe1Connected7\": \"\",\n            \"ecdProbe2Connected7\": \"\",\n            \"ecdDeploymentDuration8\": \"\",\n            \"ecdDeploymentDistance8\": \"\",\n            \"ecdProbe1Connected8\": \"\",\n            \"ecdProbe2Connected8\": \"\",\n            \"ecdDeploymentDuration9\": \"\",\n            \"ecdDeploymentDistance9\": \"\",\n            \"ecdProbe1Connected9\": \"\",\n            \"ecdProbe2Connected9\": \"\",\n            \"ecdDeploymentDuration10\": \"\",\n            \"ecdDeploymentDistance10\": \"\",\n            \"ecdProbe1Connected10\": \"\",\n            \"ecdProbe2Connected10\": \"\",\n            \"ecdDeploymentDuration11\": \"\",\n            \"ecdDeploymentDistance11\": \"\",\n            \"ecdProbe1Connected11\": \"\",\n            \"ecdProbe2Connected11\": \"\",\n            \"ecdDeploymentDuration12\": \"\",\n            \"ecdDeploymentDistance12\": \"\",\n            \"ecdProbe1Connected12\": \"\",\n            \"ecdProbe2Connected12\": \"\",\n            \"ecdDeploymentDuration13\": \"\",\n            \"ecdDeploymentDistance13\": \"\",\n            \"ecdProbe1Connected13\": \"\",\n            \"ecdProbe2Connected13\": \"\",\n            \"ecdDeploymentDuration14\": \"\",\n            \"ecdDeploymentDistance14\": \"\",\n            \"ecdProbe1Connected14\": \"\",\n            \"ecdProbe2Connected14\": \"\",\n            \"ecdDeploymentDuration15\": \"\",\n            \"ecdDeploymentDistance15\": \"\",\n            \"ecdProbe1Connected15\": \"\",\n            \"ecdProbe2Connected15\": \"\",\n            \"ecdProbePenetratedSuspectSkin\": \"Yes\",\n            \"ecdProbesRemovedBy\": \"Officer Jimmy\",\n            \"ecdSuspectCompliedAfter\": \"Yes\",\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"deploymentFrequency\": 2,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"ecdOnlyDisplayed\": \"No\",\n            \"suspectIncapacitated\": \"\",\n            \"primaryReferenceId\": null,\n            \"ecdPointOfContact\": [\n                {\n                    \"ecdPointOfContactId\": 9075,\n                    \"ecdId\": 17159,\n                    \"pointType\": \"Forearm (back/left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7179772\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6281859\"\n                },\n                {\n                    \"ecdPointOfContactId\": 9076,\n                    \"ecdId\": 17159,\n                    \"pointType\": \"Upper Arm(right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7179805\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6283478\"\n                },\n                {\n                    \"ecdPointOfContactId\": 9077,\n                    \"ecdId\": 17159,\n                    \"pointType\": \"Forearm (front/left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7179813\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6283489\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:20:10.7171312\",\n            \"createdDate\": \"2022-04-01T15:16:20.62749\"\n        }\n    ],\n    \"firearms\": [\n        {\n            \"firearmId\": 16093,\n            \"incidentId\": 17391,\n            \"firearmDisplayedOnly\": \"No\",\n            \"firearmSuspectCompliedAfter\": \"\",\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"firearmMake\": \"Glock\",\n            \"firearmModel\": \"Shootmaster17\",\n            \"firearmSerialNumber\": \"AB123456\",\n            \"firearmDepartmentIssued\": \"Yes\",\n            \"firearmPurpose\": \"Primary\",\n            \"firearmNumberOfShotsFired\": \"\",\n            \"firearmShootingPosition\": \"\",\n            \"firearmStrongHandUsed\": \"Yes\",\n            \"firearmWeakHandUsed\": \"No\",\n            \"firearmReload\": \"\",\n            \"firearmAmmoMake\": \"10mm\",\n            \"firearmMalfunction\": \"\",\n            \"firearmOfficerConcealment\": \"From concealment.\",\n            \"firearmOfficerCover\": \"Under cover.\",\n            \"pointsOfContact\": \"\",\n            \"deployedByOfficer\": \"\",\n            \"deployedAtSuspect\": \"\",\n            \"accidentalDischarge\": \"\",\n            \"negligentDischarge\": \"\",\n            \"numberOfShotsFired\": \"02\",\n            \"distanceOfShotsfired\": \"\",\n            \"handUsedForFiring\": \"Both\",\n            \"shootingPosition\": \"Kneeling\",\n            \"wasIssuedWeaponUsed\": \"Yes\",\n            \"didOfficerHaveToReload\": \"Yes\",\n            \"firedBehindCover\": \"Yes\",\n            \"firedFromConcealment\": \"Yes\",\n            \"wasFirearmUnloaded\": \"\",\n            \"didFirearmMalfunction\": \"No\",\n            \"wasFirearmUnholstered\": \"\",\n            \"suspectComplyAfterFirearmUsed\": \"Yes\",\n            \"shotDistance\": \"02:1 foot,1-3 feet\",\n            \"pointsOfContact1\": \"\",\n            \"firearmUseSuspectCompliedAfter\": \"\",\n            \"didOfficerDischargeWeapon\": \"\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"primaryReferenceId\": null,\n            \"firearmPointsOfContact\": [\n                {\n                    \"firearmPointOfContactId\": 8028,\n                    \"firearmId\": 16093,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7331754\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7345078\"\n                },\n                {\n                    \"firearmPointOfContactId\": 8029,\n                    \"firearmId\": 16093,\n                    \"pointType\": \"Stomach\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7331783\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7346619\"\n                },\n                {\n                    \"firearmPointOfContactId\": 8030,\n                    \"firearmId\": 16093,\n                    \"pointType\": \"Groin\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7331791\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7346631\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:20:10.7323489\",\n            \"createdDate\": \"2022-04-01T15:16:20.7338963\"\n        }\n    ],\n    \"hands\": [\n        {\n            \"handId\": 4005,\n            \"incidentId\": 17391,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"handsTypeUsed\": \"Hands type 1\",\n            \"handsSuspectCompliedAfter\": \"No\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"handOnlyDisplayed\": \"\",\n            \"totalNumberOfStrikes\": \"\",\n            \"primaryReferenceId\": null,\n            \"handPointsOfContact\": [\n                {\n                    \"handPointOfContactId\": 2005,\n                    \"handId\": 4005,\n                    \"pointType\": \"Upper Arm(left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7287932\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7100006\"\n                },\n                {\n                    \"handPointOfContactId\": 2006,\n                    \"handId\": 4005,\n                    \"pointType\": \"Head\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7287909\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7098352\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:20:10.7280324\",\n            \"createdDate\": \"2022-04-01T15:16:20.709213\"\n        }\n    ],\n    \"inmates\": [\n        {\n            \"inmateId\": 10092,\n            \"incidentId\": 17391,\n            \"suspectName\": \"\",\n            \"inmateNumber\": \"645\",\n            \"inmateDetentionFacility\": \"Juvenile Detention\",\n            \"officerName\": \"\",\n            \"restraintsUsed\": \"One-Piece Restraints\",\n            \"restraintsUsedOther\": \"\",\n            \"reasonForceWasApplied\": \"Prevent Escape\",\n            \"reasonForceWasAppliedOther\": \"\",\n            \"restrainedHours\": \"11\",\n            \"restrainedMinute\": \"45\",\n            \"inmateHaveWeapon\": \"Yes\",\n            \"cell\": \"In the cell\",\n            \"nonEditable\": false,\n            \"inmateDetentionClassification\": \"\",\n            \"suspectBookingNumber\": \"\",\n            \"jailViolations\": \"\",\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T15:20:10.7158994\",\n            \"createdDate\": \"2022-04-01T15:16:20.6020158\"\n        }\n    ],\n    \"k9s\": [\n        {\n            \"k9Id\": 11077,\n            \"incidentId\": 17391,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"k9name\": \"Fluffy\",\n            \"k9breed\": \"German Shepherd\",\n            \"k9type\": \"Cross Certified\",\n            \"k9typeOtherDescription\": \"\",\n            \"k9reasonDeployed\": \"Citizen Protection\",\n            \"k9nnumberBites\": \"02\",\n            \"k9suspectCompliedAfter\": \"No\",\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"k9OnlyDisplayed\": \"No\",\n            \"k9Category\": \"\",\n            \"primaryReferenceId\": null,\n            \"k9PointOfContactId\": [\n                {\n                    \"k9PointOfContactId\": 4024,\n                    \"k9Id\": 11077,\n                    \"pointType\": \"Face\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7267213\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7018607\"\n                },\n                {\n                    \"k9PointOfContactId\": 4025,\n                    \"k9Id\": 11077,\n                    \"pointType\": \"Head\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.726725\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7020261\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:20:10.7259044\",\n            \"createdDate\": \"2022-04-01T15:16:20.7012225\"\n        }\n    ],\n    \"munitions\": [\n        {\n            \"munitionId\": 4017,\n            \"incidentId\": 17391,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"munitionSuspectHit\": \"Yes\",\n            \"munitionWeaponMake\": \"Impact munitions weapon make 1\",\n            \"munitionSerialNumber\": \"D123456\",\n            \"munitionDeploymentType\": \"Impact munitions deployment type 1\",\n            \"munitionExactImpact\": \"Yes\",\n            \"munitionContactMade\": \"Yes\",\n            \"munitionDeploymentDistance1\": \"3-5 feet\",\n            \"munitionNumberOfRounds1\": \"02\",\n            \"munitionCaliberUsed1\": \"Caliber 2\",\n            \"munitionDeploymentDistance2\": \"16-20 feet\",\n            \"munitionNumberOfRounds2\": \"01\",\n            \"munitionCaliberUsed2\": \"Caliber 1\",\n            \"munitionDeploymentDistance3\": \"\",\n            \"munitionNumberOfRounds3\": \"\",\n            \"munitionCaliberUsed3\": \"\",\n            \"munitionDeploymentDistance4\": \"\",\n            \"munitionNumberOfRounds4\": \"\",\n            \"munitionCaliberUsed4\": \"\",\n            \"munitionDeploymentDistance5\": \"\",\n            \"munitionNumberOfRounds5\": \"\",\n            \"munitionCaliberUsed5\": \"\",\n            \"munitionDeploymentDistance6\": \"\",\n            \"munitionNumberOfRounds6\": \"\",\n            \"munitionCaliberUsed6\": \"\",\n            \"munitionDeploymentDistance7\": \"\",\n            \"munitionNumberOfRounds7\": \"\",\n            \"munitionCaliberUsed7\": \"\",\n            \"munitionDeploymentDistance8\": \"\",\n            \"munitionNumberOfRounds8\": \"\",\n            \"munitionCaliberUsed8\": \"\",\n            \"munitionDeploymentDistance9\": \"\",\n            \"munitionNumberOfRounds9\": \"\",\n            \"munitionCaliberUsed9\": \"\",\n            \"munitionDeploymentDistance10\": \"\",\n            \"munitionNumberOfRounds10\": \"\",\n            \"munitionCaliberUsed10\": \"\",\n            \"munitionDeploymentDistance11\": \"\",\n            \"munitionNumberOfRounds11\": \"\",\n            \"munitionCaliberUsed11\": \"\",\n            \"munitionDeploymentDistance12\": \"\",\n            \"munitionNumberOfRounds12\": \"\",\n            \"munitionCaliberUsed12\": \"\",\n            \"munitionCaliberUsed13\": \"\",\n            \"munitionDeploymentDistance13\": \"\",\n            \"munitionNumberOfRounds13\": \"\",\n            \"munitionCaliberUsed14\": \"\",\n            \"munitionDeploymentDistance14\": \"\",\n            \"munitionNumberOfRounds14\": \"\",\n            \"munitionCaliberUsed15\": \"\",\n            \"munitionDeploymentDistance15\": \"\",\n            \"munitionNumberOfRounds15\": \"\",\n            \"munitionSuspectCompliedAfter\": \"No\",\n            \"deploymentFrequency\": 2,\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"munitionOnlyDisplayed\": \"No\",\n            \"primaryReferenceId\": null,\n            \"munitionPointsOfContact\": [\n                {\n                    \"munitionPointOfContactId\": 2010,\n                    \"munitionId\": 4017,\n                    \"pointType\": \"Hamstring (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7246343\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6921011\"\n                },\n                {\n                    \"munitionPointOfContactId\": 2011,\n                    \"munitionId\": 4017,\n                    \"pointType\": \"Hand (left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7246372\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6922652\"\n                },\n                {\n                    \"munitionPointOfContactId\": 2012,\n                    \"munitionId\": 4017,\n                    \"pointType\": \"Thigh (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7246383\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6922663\"\n                },\n                {\n                    \"munitionPointOfContactId\": 2013,\n                    \"munitionId\": 4017,\n                    \"pointType\": \"Palm (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7246392\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6922672\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:20:10.7237987\",\n            \"createdDate\": \"2022-04-01T15:16:20.691485\"\n        }\n    ],\n    \"narratives\": [\n        {\n            \"narrativeId\": 16223,\n            \"incidentId\": 17391,\n            \"narrative\": \"This is one great narrative.\",\n            \"nonEditable\": false,\n            \"modifiedDate\": \"2022-04-01T15:20:10.7365769\",\n            \"createdDate\": \"2022-04-01T15:16:20.7475111\"\n        }\n    ],\n    \"officers\": [\n        {\n            \"incidentOfficerId\": 17380,\n            \"incidentId\": 17391,\n            \"officerId\": \"1\",\n            \"firstName\": \"Durand\",\n            \"middleName\": \"\",\n            \"lastName\": \"Peterson\",\n            \"officerPrimary\": \"Yes\",\n            \"officerOnDuty\": \"Yes\",\n            \"officerPermanentAssignment\": \"North Sector\",\n            \"officerInUniform\": \"Yes\",\n            \"address\": \"\",\n            \"city\": \"\",\n            \"state\": \"\",\n            \"race\": \"Native Hawaiian or Other Pacific Islander\",\n            \"gender\": \"Male\",\n            \"dateOfBirth\": \"\",\n            \"age\": \"35\",\n            \"height\": \"5ft 4in\",\n            \"weight\": \"150\",\n            \"build\": \"\",\n            \"officerYearsWithAgency\": \"12\",\n            \"officerTotalYearsInLawEnforcement\": \"12\",\n            \"education\": \"16\",\n            \"officerInjured\": \"Yes\",\n            \"officerInjuryType\": \"Gunshot\",\n            \"officerInjurySeverity\": \"Fatal injury\",\n            \"officerHowInjuryOccurred\": \"Other Suspect\",\n            \"officerMedicalTreatmentReceived\": \"Yes\",\n            \"officerMedicalTreatmentReceivedBy\": \"The Doctor\",\n            \"officerTransported\": \"Yes\",\n            \"officerTransportedBy\": \"EMS\",\n            \"officerTransportedTo\": \"The Hospital\",\n            \"officerTransportedTime\": \"12:12:00\",\n            \"officerInjuryPhotos\": \"\",\n            \"officerInjuryPhotosTakenBy\": \"\",\n            \"pointsOfContact\": \"\",\n            \"cit\": \"\",\n            \"nonEditable\": false,\n            \"deescalation\": \"Maximized the use of cover or concealment to reduce exposure to potential threats by placing the officer in a safer position\",\n            \"bodyWornCamera\": \"Yes\",\n            \"activated\": \"Yes\",\n            \"didOfficerUseForce\": \"\",\n            \"employmentFullTime\": \"\",\n            \"dontKnowAge\": \"\",\n            \"dontKnowHeight\": \"\",\n            \"dontKnowWeight\": \"\",\n            \"dontKnowYearsOfService\": \"\",\n            \"leoInjuredNIBRSIncidentNumber\": \"\",\n            \"dontKnowLEOInjuredNIBRSIncidentNumber\": \"\",\n            \"officerMedicalTreatmentReceivedByDropdown\": \"\",\n            \"officerTransportedByDropDown\": \"\",\n            \"officerTransportedToDropDown\": \"\",\n            \"primaryReferenceId\": null,\n            \"officerPointsOfContact\": [\n                {\n                    \"officerPointOfContactId\": 4111,\n                    \"officerId\": 17380,\n                    \"pointType\": \"Lower Back\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7102757\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5444088\"\n                },\n                {\n                    \"officerPointOfContactId\": 4112,\n                    \"officerId\": 17380,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7102713\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5442679\"\n                },\n                {\n                    \"officerPointOfContactId\": 4113,\n                    \"officerId\": 17380,\n                    \"pointType\": \"Upper Back\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7102749\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5444076\"\n                }\n            ],\n            \"victimRelationshipsToOfficer\": [],\n            \"witnessRelationshipsToOfficer\": [],\n            \"modifiedDate\": \"2022-04-01T15:20:10.7093882\",\n            \"createdDate\": \"2022-04-01T15:16:20.5435988\"\n        }\n    ],\n    \"properties\": [\n        {\n            \"propertyId\": 5024,\n            \"incidentId\": 17391,\n            \"owner\": \"Sara Smith (Witness)\",\n            \"propertyType\": \"LEGO Collection\",\n            \"propertyValue\": \"5.36\",\n            \"propertyOwnerName\": \"\",\n            \"propertyOwnerAddress\": \"\",\n            \"city\": \"\",\n            \"state\": \"\",\n            \"propertyOwnerEmail\": \"\",\n            \"propertyOwnerPhone1\": \"\",\n            \"propertyOwnerPhone2\": \"\",\n            \"race\": \"\",\n            \"gender\": \"\",\n            \"propertyOwnerDateOfBirth\": \"\",\n            \"age\": \"\",\n            \"nonEditable\": false,\n            \"propertyCategory\": \"\",\n            \"propertyMethod\": \"\",\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T15:20:10.7152506\",\n            \"createdDate\": \"2022-04-01T15:16:20.5939505\"\n        }\n    ],\n    \"stopSticks\": [\n        {\n            \"stopStickId\": 9071,\n            \"incidentId\": 17391,\n            \"officerName\": \"Durand Peterson\",\n            \"vehicleType\": \"Car\",\n            \"vehicleMake\": \"Mercury\",\n            \"vehicleModel\": \"Hooptie\",\n            \"vehicleYear\": \"1992\",\n            \"vehicleTag\": \"FL1234\",\n            \"stopstickOfficerTrainedInTechnique\": \"Yes\",\n            \"stopstickInvolvedStopSticksUsed\": \"Yes\",\n            \"stopstickPitManeuverUsed\": \"Yes\",\n            \"stopstickBoxinTechniqueUsed\": \"Yes\",\n            \"interventionUsed\": \"Intervention Used\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"stopstickOnlyDisplayed\": \"\",\n            \"state\": \"FL\",\n            \"primaryReferenceId\": null,\n            \"stopStickInfo\": [\n                {\n                    \"stopStickInfoId\": 8059,\n                    \"stopStickId\": 9071,\n                    \"stopstickInvolvedStopStickNumber\": \"Stick of Justice\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7354104\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7439126\"\n                },\n                {\n                    \"stopStickInfoId\": 8060,\n                    \"stopStickId\": 9071,\n                    \"stopstickInvolvedStopStickNumber\": \"Stick of Truth\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7354133\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7440395\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:20:10.7345887\",\n            \"createdDate\": \"2022-04-01T15:16:20.7434426\"\n        }\n    ],\n    \"suspects\": [\n        {\n            \"suspectId\": 16292,\n            \"incidentId\": 17391,\n            \"firstName\": \"John\",\n            \"middleName\": \"Jason\",\n            \"lastName\": \"Smith\",\n            \"suspectAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"race\": \"White\",\n            \"gender\": \"Male\",\n            \"suspectDateOfBirth\": \"03/01/1980\",\n            \"age\": \"\",\n            \"height\": \"5ft 6in\",\n            \"weight\": \" 171-180\",\n            \"build\": \"Thin\",\n            \"education\": \"\",\n            \"suspectActionsPresence\": true,\n            \"suspectActionsPassiveResistance\": true,\n            \"suspectActionsVerbalResistance\": true,\n            \"suspectActionsActiveAggression\": true,\n            \"suspectActionsAggressivePhysical\": true,\n            \"suspectActionsAggravatedPhysical\": true,\n            \"suspectActionsOther\": false,\n            \"suspectOfficersResponsePresence\": true,\n            \"suspectOfficersResponsePassiveResistance\": true,\n            \"suspectOfficersResponseVerbalResistance\": true,\n            \"suspectOfficersResponseAggression\": true,\n            \"suspectOfficersResponseAggravatedPhysical\": true,\n            \"suspectOfficersResponseOther\": false,\n            \"suspectOfficersResponseLevel7\": null,\n            \"suspectOfficersResponseLevel8\": null,\n            \"suspectWeaponUsedHands\": true,\n            \"suspectWeaponUsedBluntObject\": true,\n            \"suspectWeaponUsedEdgedObject\": true,\n            \"suspectWeaponUsedFirearm\": true,\n            \"suspectWeaponUsedOther\": true,\n            \"suspectArrested\": \"Yes\",\n            \"suspectWhyNotArrested\": \"\",\n            \"suspectArrestCharge\": \"28-1911 Failure to yield\",\n            \"suspectArrestedForFelony\": \"\",\n            \"suspectArresteeDeliveredTo\": \"\",\n            \"suspectJailNumber\": \"\",\n            \"suspectConditionPriorMellow\": false,\n            \"suspectConditionPriorDepressed\": false,\n            \"suspectConditionPriorAngry\": false,\n            \"suspectConditionPriorDisoriented\": true,\n            \"suspectConditionPriorDrugs\": true,\n            \"suspectConditionPriorAlcohol\": false,\n            \"suspectConditionPriorFighting\": false,\n            \"suspectConditionPriorOther\": false,\n            \"suspectConditionPostMellow\": true,\n            \"suspectConditionPostDepressed\": true,\n            \"suspectConditionPostAngry\": false,\n            \"suspectConditionPostDisoriented\": false,\n            \"suspectConditionPostDrugs\": false,\n            \"suspectConditionPostAlcohol\": false,\n            \"suspectConditionPostFighting\": false,\n            \"suspectConditionPostOther\": false,\n            \"suspectConditionPriorComment\": \"\",\n            \"suspectConditionPostComment\": \"\",\n            \"suspectInjured\": \"Yes\",\n            \"suspectInjuryType\": \"Gunshot\",\n            \"suspectInjurySeverity\": \"Fatal\",\n            \"howInjuryOccurredToSuspect\": \"Other Suspect\",\n            \"medicalTreatmentOfSuspect\": \"Yes\",\n            \"medicalTreatmentOfSuspectBy\": \"The Doctor\",\n            \"suspectTransported\": \"Yes\",\n            \"suspectTransportedBy\": \"EMS\",\n            \"suspectTransportedTo\": \"The Hospital\",\n            \"suspectTransportedTime\": \"12:12:00\",\n            \"suspectInjuryPhotos\": \"\",\n            \"suspectInjuryPhotosTakenBy\": \"\",\n            \"pointsOfContact\": \"\",\n            \"suspectExhibitsSignsofExcitedDelirium\": \"Yes\",\n            \"deliriumSignsDisplayed\": \"Incoherent Speech\",\n            \"suspectShowedSignsofMentalIllness\": \"Yes\",\n            \"showedSignsMentalIllness\": \"Depression\",\n            \"showedSignsMentalIllnessothers\": \"\",\n            \"rank1\": 1,\n            \"rank2\": 2,\n            \"rank3\": 4,\n            \"rank4\": 3,\n            \"rank5\": 6,\n            \"rank6\": 5,\n            \"rank7\": null,\n            \"rank8\": 1,\n            \"rank9\": 2,\n            \"rank10\": 5,\n            \"rank11\": 3,\n            \"rank12\": 4,\n            \"rank13\": null,\n            \"rank14\": null,\n            \"rank15\": null,\n            \"comments\": \"\",\n            \"nonEditable\": false,\n            \"arrestDate\": \"03/06/2022\",\n            \"arrestTime\": \"12:12:00\",\n            \"suspectForceCategory\": \"\",\n            \"suspectResistedType\": \"\",\n            \"suspectThreatPerson\": \"\",\n            \"estimatedAgeRange\": \"\",\n            \"dontKnowAge\": \"\",\n            \"knownImpairment\": \"\",\n            \"knownImpairmentType\": \"\",\n            \"suspectResisted\": \"\",\n            \"suspectArmed\": \"\",\n            \"dontKnowCharges\": \"\",\n            \"ethnicity\": \"\",\n            \"suspectTransportedByDropDown\": \"\",\n            \"suspectTransportedToDropDown\": \"\",\n            \"threatFactors\": \"\",\n            \"deEscalation\": \"\",\n            \"suspectWeaponUsedOption6\": null,\n            \"suspectWeaponUsedOption7\": null,\n            \"suspectWeaponUsedOption8\": null,\n            \"suspectWeaponUsedOption9\": null,\n            \"suspectDisabilities\": \"\",\n            \"knowledgeofSuspectDisability\": \"\",\n            \"mobilityDevices\": \"\",\n            \"remoteInterpreterUsed\": \"\",\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\n            \"suspectCategory\": \"\",\n            \"suffix\": \"\",\n            \"genderIdentify\": \"\",\n            \"inmateNumber\": \"\",\n            \"custodyLocation\": \"\",\n            \"civilianDistance\": \"\",\n            \"civilianResistance\": \"\",\n            \"primaryReferenceId\": null,\n            \"suspectPointsOfContact\": [\n                {\n                    \"suspectPointOfContactId\": 9206,\n                    \"suspectId\": 16292,\n                    \"pointType\": \"Face\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7064669\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5247266\"\n                },\n                {\n                    \"suspectPointOfContactId\": 9207,\n                    \"suspectId\": 16292,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7064706\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5248732\"\n                },\n                {\n                    \"suspectPointOfContactId\": 9208,\n                    \"suspectId\": 16292,\n                    \"pointType\": \"Upper Arm (back/left)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7064713\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5248743\"\n                },\n                {\n                    \"suspectPointOfContactId\": 9209,\n                    \"suspectId\": 16292,\n                    \"pointType\": \"Heel (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7064727\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5248753\"\n                }\n            ],\n            \"victimsRelationshipToSuspects\": [],\n            \"witnessesRelationshipToSuspects\": [],\n            \"suspectChargeClassifications\": [\n                {\n                    \"suspectChargeClassificationId\": 4090,\n                    \"suspectId\": 16292,\n                    \"charge\": \"28-1911 Failure to yield\",\n                    \"chargeClasification1\": false,\n                    \"chargeClasification2\": true,\n                    \"chargeClasification3\": false,\n                    \"chargeClasification4\": false,\n                    \"chargeClasification5\": false,\n                    \"chargeClasification6\": \"\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7077888\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5255826\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:20:10.7055327\",\n            \"createdDate\": \"2022-04-01T15:16:20.5241246\"\n        }\n    ],\n    \"takedowns\": [\n        {\n            \"takedownId\": 11070,\n            \"incidentId\": 17391,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"takedownTypeUsed\": \"Leg Sweep\",\n            \"takedownSuspectCompliedAfter\": \"No\",\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"takedownOnlyDisplayed\": \"\",\n            \"primaryReferenceId\": null,\n            \"takedownPointsOfContact\": [\n                {\n                    \"takedownPointOfContactId\": 1005,\n                    \"takedownId\": 11070,\n                    \"pointType\": \"Hip (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7309347\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7177161\"\n                },\n                {\n                    \"takedownPointOfContactId\": 1006,\n                    \"takedownId\": 11070,\n                    \"pointType\": \"Glutes\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7309379\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7178941\"\n                },\n                {\n                    \"takedownPointOfContactId\": 1007,\n                    \"takedownId\": 11070,\n                    \"pointType\": \"Groin\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7309388\",\n                    \"createdDate\": \"2022-04-01T15:16:20.7178953\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:20:10.7301836\",\n            \"createdDate\": \"2022-04-01T15:16:20.717086\"\n        }\n    ],\n    \"vehicles\": [\n        {\n            \"vehicleId\": 10105,\n            \"incidentId\": 17391,\n            \"driver\": \"John Smith (Suspect)\",\n            \"owner\": \"John Smith (Suspect)\",\n            \"passengers\": \"John Smith (Suspect)\",\n            \"vehicleType\": \"Motorcycle\",\n            \"vehicleMake\": \"BMW\",\n            \"vehicleModel\": \"Motormaster 8000\",\n            \"year\": \"2019\",\n            \"vehicleTag\": \"FL1234\",\n            \"state\": \"FL\",\n            \"vehicleSpeedDuringIncident\": \"41-50 MPH\",\n            \"nonEditable\": false,\n            \"vehicleDamage\": \"\",\n            \"primaryReferenceId\": null,\n            \"modifiedDate\": \"2022-04-01T15:20:10.7145349\",\n            \"createdDate\": \"2022-04-01T15:16:20.5856173\"\n        }\n    ],\n    \"victims\": [\n        {\n            \"victimId\": 9059,\n            \"incidentId\": 17391,\n            \"firstName\": \"Sara\",\n            \"middleName\": \"Jane\",\n            \"lastName\": \"Smith\",\n            \"victimAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"victimEmail\": \"sarasmith@gmail.com\",\n            \"victimPhone1\": \"111-111-1111 x11111\",\n            \"victimPhone2\": \"222-222-2222 x_____\",\n            \"race\": \"Hispanic/Latino\",\n            \"gender\": \"Female\",\n            \"victimDateOfBirth\": \"03/01/1980\",\n            \"age\": \"\",\n            \"suspectName1\": \"\",\n            \"victimRelationshipToSuspect1\": \"\",\n            \"officerName1\": \"\",\n            \"victimRelationshipToPrimaryOfficer1\": \"\",\n            \"suspectName2\": \"\",\n            \"victimRelationshipToSuspect2\": \"\",\n            \"officerName2\": \"\",\n            \"victimRelationshipToPrimaryOfficer2\": \"\",\n            \"suspectName3\": \"\",\n            \"victimRelationshipToSuspect3\": \"\",\n            \"officerName3\": \"\",\n            \"victimRelationshipToPrimaryOfficer3\": \"\",\n            \"suspectName4\": \"\",\n            \"victimRelationshipToSuspect4\": \"\",\n            \"officerName4\": \"\",\n            \"victimRelationshipToPrimaryOfficer4\": \"\",\n            \"suspectName5\": \"\",\n            \"victimRelationshipToSuspect5\": \"\",\n            \"officerName5\": \"\",\n            \"victimRelationshipToPrimaryOfficer5\": \"\",\n            \"victimInjured\": \"Yes\",\n            \"victimInjuryType\": \"Blunt Trauma\",\n            \"victimInjurySeverity\": \"Non-Incapacitating\",\n            \"victimHowInjuryToVictimOccurred\": \"Suspect's Actions\",\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\n            \"victimMedicalTreatmentOfVictimBy\": \"The Doctor\",\n            \"victimTransported\": \"Yes\",\n            \"victimTransportedBy\": \"EMS\",\n            \"victimTransportedTo\": \"The Hospital\",\n            \"victimTransportedTime\": \"12:12:00\",\n            \"victimInjuryPhotos\": \"\",\n            \"victimInjuryPhotosTakenBy\": \"\",\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"officerRole\": \"\",\n            \"outsideAgency\": \"\",\n            \"victimMedicalTreatmentOfVictimByDropdown\": \"\",\n            \"victimTransportedByDropDown\": \"\",\n            \"victimTransportedToDropDown\": \"\",\n            \"victimInUniform\": \"\",\n            \"primaryReferenceId\": null,\n            \"victimPointsOfContact\": [\n                {\n                    \"victimPointOfContactId\": 1011,\n                    \"victimId\": 9059,\n                    \"pointType\": \"Palm (right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7126539\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5631206\"\n                },\n                {\n                    \"victimPointOfContactId\": 1012,\n                    \"victimId\": 9059,\n                    \"pointType\": \"Forearm (front/right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7126572\",\n                    \"createdDate\": \"2022-04-01T15:16:20.5632788\"\n                }\n            ],\n            \"victimRelationshipsToOfficer\": [],\n            \"victimRelationshipsToSuspect\": [],\n            \"witnessRelationshipsToVictim\": [],\n            \"modifiedDate\": \"2022-04-01T15:20:10.7117786\",\n            \"createdDate\": \"2022-04-01T15:16:20.562515\"\n        }\n    ],\n    \"weapons\": [\n        {\n            \"weaponId\": 14078,\n            \"incidentId\": 17391,\n            \"suspectName\": \"John Smith\",\n            \"officerName\": \"Durand Peterson\",\n            \"weaponTypeUsed\": \"Flashlight\",\n            \"weaponTotalNumberOfStrikes\": \"16\",\n            \"weaponBodyPartMadeContactWith1\": \"\",\n            \"weaponDurationOfImpactCountInSeconds1\": \"\",\n            \"weaponBodyPartMadeContactWith2\": \"\",\n            \"weaponDurationOfImpactCountInSeconds2\": \"\",\n            \"weaponBodyPartMadeContactWith3\": \"\",\n            \"weaponDurationOfImpactCountInSeconds3\": \"\",\n            \"weaponBodyPartMadeContactWith4\": \"\",\n            \"weaponDurationOfImpactCountInSeconds4\": \"\",\n            \"weaponBodyPartMadeContactWith5\": \"\",\n            \"weaponDurationOfImpactCountInSeconds5\": \"\",\n            \"weaponBodyPartMadeContactWith6\": \"\",\n            \"weaponDurationOfImpactCountInSeconds6\": \"\",\n            \"weaponBodyPartMadeContactWith7\": \"\",\n            \"weaponDurationOfImpactCountInSeconds7\": \"\",\n            \"weaponBodyPartMadeContactWith8\": \"\",\n            \"weaponDurationOfImpactCountInSeconds8\": \"\",\n            \"weaponBodyPartMadeContactWith9\": \"\",\n            \"weaponDurationOfImpactCountInSeconds9\": \"\",\n            \"weaponBodyPartMadeContactWith10\": \"\",\n            \"weaponDurationOfImpactCountInSeconds10\": \"\",\n            \"weaponBodyPartMadeContactWith11\": \"\",\n            \"weaponDurationOfImpactCountInSeconds11\": \"\",\n            \"weaponBodyPartMadeContactWith12\": \"\",\n            \"weaponDurationOfImpactCountInSeconds12\": \"\",\n            \"weaponBodyPartMadeContactWith13\": \"\",\n            \"weaponDurationOfImpactCountInSeconds13\": \"\",\n            \"weaponBodyPartMadeContactWith14\": \"\",\n            \"weaponDurationOfImpactCountInSeconds14\": \"\",\n            \"weaponBodyPartMadeContactWith15\": \"\",\n            \"weaponDurationOfImpactCountInSeconds15\": \"\",\n            \"weaponSuspectCompliedAfter\": \"Yes\",\n            \"pointsOfContact\": \"\",\n            \"nonEditable\": false,\n            \"impactContact\": 1,\n            \"injured\": \"\",\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"describeInjury\": \"\",\n            \"injuryNotes\": \"\",\n            \"weaponOnlyDisplayed\": \"No\",\n            \"bodyPartsAimedFor\": \"\",\n            \"primaryReferenceId\": null,\n            \"weaponPointOfContact\": [\n                {\n                    \"weaponPointOfContactId\": 5025,\n                    \"weaponId\": 14078,\n                    \"pointType\": \"Upper Chest\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7223867\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6713159\"\n                },\n                {\n                    \"weaponPointOfContactId\": 5026,\n                    \"weaponId\": 14078,\n                    \"pointType\": \"Upper Arm(right)\",\n                    \"value\": \"1\",\n                    \"nonEditable\": false,\n                    \"modifiedDate\": \"2022-04-01T15:20:10.7223899\",\n                    \"createdDate\": \"2022-04-01T15:16:20.6714848\"\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:20:10.7216183\",\n            \"createdDate\": \"2022-04-01T15:16:20.6706737\"\n        }\n    ],\n    \"witnesses\": [\n        {\n            \"witnessId\": 9073,\n            \"incidentId\": 17391,\n            \"firstName\": \"Sara\",\n            \"middleName\": \"Jane\",\n            \"lastName\": \"Smith\",\n            \"witnessAddress\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"witnessEmail\": \"sarasmith@gmail.com\",\n            \"witnessPhone1\": \"111-111-1111 x111__\",\n            \"witnessPhone2\": \"222-222-2222 x_____\",\n            \"race\": \"Black\",\n            \"gender\": \"Female\",\n            \"witnessDateOfBirth\": \"03/01/1980\",\n            \"suspectName1\": \"\",\n            \"witnessRelationshipToSuspect1\": \"\",\n            \"officerName1\": \"\",\n            \"witnessRelationshipToPrimaryOfficer1\": \"\",\n            \"victimName1\": \"\",\n            \"witnessRelationshipToVictim1\": \"\",\n            \"suspectName2\": \"\",\n            \"witnessRelationshipToSuspect2\": \"\",\n            \"officerName2\": \"\",\n            \"witnessRelationshipToPrimaryOfficer2\": \"\",\n            \"victimName2\": \"\",\n            \"witnessRelationshipToVictim2\": \"\",\n            \"suspectName3\": \"\",\n            \"witnessRelationshipToSuspect3\": \"\",\n            \"officerName3\": \"\",\n            \"witnessRelationshipToPrimaryOfficer3\": \"\",\n            \"victimName3\": \"\",\n            \"witnessRelationshipToVictim3\": \"\",\n            \"suspectName4\": \"\",\n            \"witnessRelationshipToSuspect4\": \"\",\n            \"officerName4\": \"\",\n            \"witnessRelationshipToPrimaryOfficer4\": \"\",\n            \"victimName4\": \"\",\n            \"witnessRelationshipToVictim4\": \"\",\n            \"suspectName5\": \"\",\n            \"witnessRelationshipToSuspect5\": \"\",\n            \"officerName5\": \"\",\n            \"witnessRelationshipToPrimaryOfficer5\": \"\",\n            \"victimName5\": \"\",\n            \"witnessRelationshipToVictim5\": \"\",\n            \"nonEditable\": false,\n            \"primaryReferenceId\": null,\n            \"witnessRelationshipsToOfficer\": [],\n            \"witnessRelationshipsToSuspect\": [],\n            \"witnessRelationshipsToVictim\": [],\n            \"modifiedDate\": \"2022-04-01T15:20:10.7138411\",\n            \"createdDate\": \"2022-04-01T15:16:20.5787686\"\n        }\n    ],\n    \"reviews\": [],\n    \"reviewFormValues\": [],\n    \"modifiedDate\": \"2022-04-01T15:20:10.7367587\",\n    \"createdDate\": \"2022-04-01T15:16:20.4817704\"\n}"},{"id":"ad9281b4-a905-4331-b840-14e6f23315b3","name":"Record Locked","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": 16376,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"Editing\",\r\n    \"fdleSubmissionStatus\": \"\",\r\n    \"incidentCaseNumber\": \"MyCaseNumber-001\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"12/29/2012\",\r\n    \"incidentTime\": \"00:00:00\",\r\n    \"reportDate\": \"12/29/2012\",\r\n    \"reportTime\": \"00:00:00\",\r\n    \"incidentSupervisorNotified\": \"\",\r\n    \"incidentSupervisorNumber\": \"\",\r\n    \"incidentSupervisorNotifiedTime\": \"00:00:00\",\r\n    \"incidentSupervisorArrivedTime\": \"00:00:00\",\r\n    \"incidentVideoAttached\": \"\",\r\n    \"incidentDocumentAttached\": \"\",\r\n    \"incidentAddress\": \"4658 Commander Dr \",\r\n    \"city\": \"Orlando\",\r\n    \"state\": \"FL\",\r\n    \"area\": \"\",\r\n    \"district\": \"\",\r\n    \"sector\": \"\",\r\n    \"subsector\": \"\",\r\n    \"locationTypeApartment\": false,\r\n    \"locationTypeResidence\": false,\r\n    \"locationTypeHotelMotel\": false,\r\n    \"locationTypeRestaurantBar\": false,\r\n    \"locationTypeParkingLot\": false,\r\n    \"locationTypeOpenField\": false,\r\n    \"locationTypeWoodedArea\": false,\r\n    \"locationTypeOther\": false,\r\n    \"lightingConditionsDaylight\": false,\r\n    \"lightingConditionsDusk\": false,\r\n    \"lightingConditionsDawn\": false,\r\n    \"lightingConditionsDarkLighted\": false,\r\n    \"lightingConditionsDarkNotLighted\": false,\r\n    \"lightingConditionsDarkUnknownLighting\": false,\r\n    \"lightingConditionsOther\": false,\r\n    \"weatherConditionsClear\": false,\r\n    \"weatherConditionsCloudy\": false,\r\n    \"weatherConditionsRain\": false,\r\n    \"weatherConditionsSnow\": false,\r\n    \"weatherConditionsWindy\": false,\r\n    \"weatherConditionsFogSmokeSmog\": false,\r\n    \"weatherConditionsSleetHail\": false,\r\n    \"weatherConditionsOther\": false,\r\n    \"locationType\": \"\",\r\n    \"lightingCondition\": \"\",\r\n    \"weatherCondition\": \"\",\r\n    \"involvedOfficer\": true,\r\n    \"involvedSuspect\": true,\r\n    \"involvedVictim\": false,\r\n    \"involvedWitness\": false,\r\n    \"involvedVehicle\": false,\r\n    \"involvedProperty\": false,\r\n    \"involvedInmate\": false,\r\n    \"involvedNarrative\": true,\r\n    \"involvedSupervisorReview\": null,\r\n    \"responseToResistanceEcd\": true,\r\n    \"responseToResistanceChemicalAgents\": false,\r\n    \"responseToResistanceImpactWeapons\": false,\r\n    \"responseToResistanceImpactMunitions\": false,\r\n    \"responseToResistanceK9\": true,\r\n    \"responseToResistanceHands\": false,\r\n    \"responseToResistanceTakedowns\": true,\r\n    \"responseToResistanceFirearms\": false,\r\n    \"responseToResistanceStopsticks\": false,\r\n    \"responseToResistanceOther\": false,\r\n    \"supervisorName\": \"\",\r\n    \"managerNotified\": \"\",\r\n    \"managerName\": \"\",\r\n    \"managerNotifiedTime\": null,\r\n    \"managerArrivedTime\": null,\r\n    \"reasonForUseOfForce\": \"\",\r\n    \"reasonForUseOfForceOther\": \"\",\r\n    \"incidentType\": \"\",\r\n    \"incidentTypeOther\": \"\",\r\n    \"trackingId\": 7,\r\n    \"trackingYear\": 2022,\r\n    \"trackingNumber\": \"2022 - 7\",\r\n    \"subReportNumber\": null,\r\n    \"historical\": true,\r\n    \"oldCreatorName\": \"John Miller\",\r\n    \"routing\": \"\",\r\n    \"deleteComments\": \"\",\r\n    \"reportType\": \"\",\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"searchNarrative\": \"\",\r\n    \"incidentAddress2\": \"\",\r\n    \"zipCode\": \"\",\r\n    \"latitude\": \"\",\r\n    \"longitude\": \"\",\r\n    \"incidentAmbush\": \"\",\r\n    \"leoApproachSuspect\": \"\",\r\n    \"initialContactReason\": \"\",\r\n    \"forceResults\": \"\",\r\n    \"dontKnowRelatedIncidentCase\": \"\",\r\n    \"totalOfficersOwnAgencyApplyForce\": null,\r\n    \"dontKnowTotalOfficersOwnAgencyApplyForce\": \"\",\r\n    \"totalOfficersAllAgencyApplyForce\": null,\r\n    \"dontKnowTotalOfficersAllAgencyApplyForce\": \"\",\r\n    \"totalSuspectsDeceasedOrInjured\": null,\r\n    \"dontKnowTotalSuspectsDeceasedOrInjured\": \"\",\r\n    \"didOtherAgencyApplyForce\": false,\r\n    \"totalOtherAgencyApplyForce\": null,\r\n    \"otherAgencyCaseNumber\": \"\",\r\n    \"otherAgencyORI\": \"\",\r\n    \"dontKnowAddress\": \"\",\r\n    \"seniorOfficerPresent\": \"\",\r\n    \"seniorOfficerName\": \"\",\r\n    \"seniorOfficerNotifiedTime\": null,\r\n    \"seniorOfficerArrivedTime\": null,\r\n    \"incidentCategory\": \"\",\r\n    \"howmanyOfficersonCall\": \"\",\r\n    \"streetNumber\": \"\",\r\n    \"preDirectional\": \"\",\r\n    \"streetType\": \"\",\r\n    \"postDirectional\": \"\",\r\n    \"lethal\": false,\r\n    \"servicesRendered\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"chemicals\": [],\r\n    \"ecds\": [],\r\n    \"firearms\": [],\r\n    \"hands\": [],\r\n    \"inmates\": [],\r\n    \"k9s\": [],\r\n    \"munitions\": [],\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 15208,\r\n            \"incidentId\": 16376,\r\n            \"narrative\": \"\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-03-21T13:42:47.6608135\",\r\n            \"createdDate\": \"2022-03-21T13:42:47.6607765\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"incidentOfficerId\": 16351,\r\n            \"incidentId\": 16376,\r\n            \"officerId\": \"1037\",\r\n            \"firstName\": \"Officer Kevin Sarria\",\r\n            \"middleName\": \"\",\r\n            \"lastName\": \"\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerOnDuty\": \"Yes\",\r\n            \"officerPermanentAssignment\": \"Patrol\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"address\": \"6000 International Dr.\",\r\n            \"city\": \"Orlando (city limits)\",\r\n            \"state\": \"FL\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"02/14/1985\",\r\n            \"age\": \"\",\r\n            \"height\": \"6ft or more\",\r\n            \"weight\": \"150-199\",\r\n            \"build\": \"Thin\",\r\n            \"officerYearsWithAgency\": \"4-6 years\",\r\n            \"officerTotalYearsInLawEnforcement\": \"4-6 years\",\r\n            \"education\": \"14\",\r\n            \"officerInjured\": \"No\",\r\n            \"officerInjuryType\": \"\",\r\n            \"officerInjurySeverity\": \"\",\r\n            \"officerHowInjuryOccurred\": \"\",\r\n            \"officerMedicalTreatmentReceived\": \"\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"\",\r\n            \"officerTransported\": \"\",\r\n            \"officerTransportedBy\": \"\",\r\n            \"officerTransportedTo\": \"\",\r\n            \"officerTransportedTime\": \"00:00:00\",\r\n            \"officerInjuryPhotos\": \"\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"cit\": \"\",\r\n            \"nonEditable\": false,\r\n            \"deescalation\": \"\",\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"didOfficerUseForce\": \"\",\r\n            \"employmentFullTime\": \"\",\r\n            \"dontKnowAge\": \"\",\r\n            \"dontKnowHeight\": \"\",\r\n            \"dontKnowWeight\": \"\",\r\n            \"dontKnowYearsOfService\": \"\",\r\n            \"leoInjuredNIBRSIncidentNumber\": \"\",\r\n            \"dontKnowLEOInjuredNIBRSIncidentNumber\": \"\",\r\n            \"officerMedicalTreatmentReceivedByDropdown\": \"\",\r\n            \"officerTransportedByDropDown\": \"\",\r\n            \"officerTransportedToDropDown\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"officerPointsOfContact\": [],\r\n            \"victimRelationshipsToOfficer\": [],\r\n            \"witnessRelationshipsToOfficer\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:42:47.6568041\",\r\n            \"createdDate\": \"2022-03-21T13:42:47.6567692\"\r\n        }\r\n    ],\r\n    \"properties\": [],\r\n    \"stopSticks\": [],\r\n    \"suspects\": [\r\n        {\r\n            \"suspectId\": 15277,\r\n            \"incidentId\": 16376,\r\n            \"firstName\": \"James Monroe\",\r\n            \"middleName\": \"\",\r\n            \"lastName\": \"\",\r\n            \"suspectAddress\": \"123 Anywhere Rd.\",\r\n            \"city\": \"Orlando\",\r\n            \"state\": \"FL\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"suspectDateOfBirth\": \"05/08/1962\",\r\n            \"age\": \"\",\r\n            \"height\": \"5ft8-5ft11in\",\r\n            \"weight\": \"250-299\",\r\n            \"build\": \"Heavy\",\r\n            \"education\": \"16\",\r\n            \"suspectActionsPresence\": false,\r\n            \"suspectActionsPassiveResistance\": false,\r\n            \"suspectActionsVerbalResistance\": false,\r\n            \"suspectActionsActiveAggression\": false,\r\n            \"suspectActionsAggressivePhysical\": true,\r\n            \"suspectActionsAggravatedPhysical\": false,\r\n            \"suspectActionsOther\": false,\r\n            \"suspectOfficersResponsePresence\": false,\r\n            \"suspectOfficersResponsePassiveResistance\": false,\r\n            \"suspectOfficersResponseVerbalResistance\": false,\r\n            \"suspectOfficersResponseAggression\": false,\r\n            \"suspectOfficersResponseAggravatedPhysical\": true,\r\n            \"suspectOfficersResponseOther\": false,\r\n            \"suspectOfficersResponseLevel7\": null,\r\n            \"suspectOfficersResponseLevel8\": null,\r\n            \"suspectWeaponUsedHands\": false,\r\n            \"suspectWeaponUsedBluntObject\": false,\r\n            \"suspectWeaponUsedEdgedObject\": true,\r\n            \"suspectWeaponUsedFirearm\": false,\r\n            \"suspectWeaponUsedOther\": false,\r\n            \"suspectArrested\": \"Yes\",\r\n            \"suspectWhyNotArrested\": \"\",\r\n            \"suspectArrestCharge\": \"\",\r\n            \"suspectArrestedForFelony\": \"No\",\r\n            \"suspectArresteeDeliveredTo\": \"\",\r\n            \"suspectJailNumber\": \"\",\r\n            \"suspectConditionPriorMellow\": false,\r\n            \"suspectConditionPriorDepressed\": false,\r\n            \"suspectConditionPriorAngry\": true,\r\n            \"suspectConditionPriorDisoriented\": false,\r\n            \"suspectConditionPriorDrugs\": false,\r\n            \"suspectConditionPriorAlcohol\": false,\r\n            \"suspectConditionPriorFighting\": false,\r\n            \"suspectConditionPriorOther\": false,\r\n            \"suspectConditionPostMellow\": false,\r\n            \"suspectConditionPostDepressed\": false,\r\n            \"suspectConditionPostAngry\": true,\r\n            \"suspectConditionPostDisoriented\": false,\r\n            \"suspectConditionPostDrugs\": false,\r\n            \"suspectConditionPostAlcohol\": false,\r\n            \"suspectConditionPostFighting\": false,\r\n            \"suspectConditionPostOther\": false,\r\n            \"suspectConditionPriorComment\": \"\",\r\n            \"suspectConditionPostComment\": \"\",\r\n            \"suspectInjured\": \"No\",\r\n            \"suspectInjuryType\": \"\",\r\n            \"suspectInjurySeverity\": \"\",\r\n            \"howInjuryOccurredToSuspect\": \"\",\r\n            \"medicalTreatmentOfSuspect\": \"\",\r\n            \"medicalTreatmentOfSuspectBy\": \"\",\r\n            \"suspectTransported\": \"\",\r\n            \"suspectTransportedBy\": \"\",\r\n            \"suspectTransportedTo\": \"\",\r\n            \"suspectTransportedTime\": \"00:00:00\",\r\n            \"suspectInjuryPhotos\": \"\",\r\n            \"suspectInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"suspectExhibitsSignsofExcitedDelirium\": \"\",\r\n            \"deliriumSignsDisplayed\": \"\",\r\n            \"suspectShowedSignsofMentalIllness\": \"\",\r\n            \"showedSignsMentalIllness\": \"\",\r\n            \"showedSignsMentalIllnessothers\": \"\",\r\n            \"rank1\": null,\r\n            \"rank2\": null,\r\n            \"rank3\": null,\r\n            \"rank4\": null,\r\n            \"rank5\": null,\r\n            \"rank6\": null,\r\n            \"rank7\": null,\r\n            \"rank8\": null,\r\n            \"rank9\": null,\r\n            \"rank10\": null,\r\n            \"rank11\": null,\r\n            \"rank12\": null,\r\n            \"rank13\": null,\r\n            \"rank14\": null,\r\n            \"rank15\": null,\r\n            \"comments\": \"\",\r\n            \"nonEditable\": false,\r\n            \"arrestDate\": \"\",\r\n            \"arrestTime\": null,\r\n            \"suspectForceCategory\": \"\",\r\n            \"suspectResistedType\": \"\",\r\n            \"suspectThreatPerson\": \"\",\r\n            \"estimatedAgeRange\": \"\",\r\n            \"dontKnowAge\": \"\",\r\n            \"knownImpairment\": \"\",\r\n            \"knownImpairmentType\": \"\",\r\n            \"suspectResisted\": \"\",\r\n            \"suspectArmed\": \"\",\r\n            \"dontKnowCharges\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"suspectTransportedByDropDown\": \"\",\r\n            \"suspectTransportedToDropDown\": \"\",\r\n            \"threatFactors\": \"\",\r\n            \"deEscalation\": \"\",\r\n            \"suspectWeaponUsedOption6\": null,\r\n            \"suspectWeaponUsedOption7\": null,\r\n            \"suspectWeaponUsedOption8\": null,\r\n            \"suspectWeaponUsedOption9\": null,\r\n            \"suspectDisabilities\": \"\",\r\n            \"knowledgeofSuspectDisability\": \"\",\r\n            \"mobilityDevices\": \"\",\r\n            \"remoteInterpreterUsed\": \"\",\r\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\r\n            \"suspectCategory\": \"\",\r\n            \"suffix\": \"\",\r\n            \"genderIdentify\": \"\",\r\n            \"inmateNumber\": \"\",\r\n            \"custodyLocation\": \"\",\r\n            \"civilianDistance\": \"\",\r\n            \"civilianResistance\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"suspectPointsOfContact\": [],\r\n            \"victimsRelationshipToSuspects\": [],\r\n            \"witnessesRelationshipToSuspects\": [],\r\n            \"suspectChargeClassifications\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:42:47.6387713\",\r\n            \"createdDate\": \"2022-03-21T13:42:47.638747\"\r\n        }\r\n    ],\r\n    \"takedowns\": [],\r\n    \"vehicles\": [],\r\n    \"victims\": [],\r\n    \"weapons\": [],\r\n    \"witnesses\": [],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [],\r\n    \"modifiedDate\": \"2022-03-21T13:42:47.5952038\",\r\n    \"createdDate\": \"2022-03-21T13:42:47.5951277\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/facts"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcZmFjdHM=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 17:45:09 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"This report is locked. You cannot make changes unless it is unlocked. Please check with your administrator to verify.\"\n}"},{"id":"b5357e00-fd0f-4bdc-8b81-228876e390cc","name":"Case Number Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": 16378,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"Editing\",\r\n    \"fdleSubmissionStatus\": \"\",\r\n    \"incidentCaseNumber\": \"MyCaseNumber-004\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"02/09/2013\",\r\n    \"incidentTime\": \"22:30:00\",\r\n    \"reportDate\": \"02/09/2013\",\r\n    \"reportTime\": \"23:55:00\",\r\n    \"incidentSupervisorNotified\": \"Yes\",\r\n    \"incidentSupervisorNumber\": \"\",\r\n    \"incidentSupervisorNotifiedTime\": \"22:45:00\",\r\n    \"incidentSupervisorArrivedTime\": \"23:00:00\",\r\n    \"incidentVideoAttached\": \"No\",\r\n    \"incidentDocumentAttached\": \"No\",\r\n    \"incidentAddress\": \"673 Marco Ln.\",\r\n    \"city\": \"Orlando (city limits)\",\r\n    \"state\": \"FL\",\r\n    \"area\": \"Zone 1\",\r\n    \"district\": \"North\",\r\n    \"sector\": \"A-1\",\r\n    \"subsector\": \"\",\r\n    \"locationTypeApartment\": true,\r\n    \"locationTypeResidence\": false,\r\n    \"locationTypeHotelMotel\": false,\r\n    \"locationTypeRestaurantBar\": false,\r\n    \"locationTypeParkingLot\": false,\r\n    \"locationTypeOpenField\": false,\r\n    \"locationTypeWoodedArea\": false,\r\n    \"locationTypeOther\": false,\r\n    \"lightingConditionsDaylight\": false,\r\n    \"lightingConditionsDusk\": false,\r\n    \"lightingConditionsDawn\": false,\r\n    \"lightingConditionsDarkLighted\": false,\r\n    \"lightingConditionsDarkNotLighted\": true,\r\n    \"lightingConditionsDarkUnknownLighting\": false,\r\n    \"lightingConditionsOther\": false,\r\n    \"weatherConditionsClear\": false,\r\n    \"weatherConditionsCloudy\": false,\r\n    \"weatherConditionsRain\": false,\r\n    \"weatherConditionsSnow\": false,\r\n    \"weatherConditionsWindy\": false,\r\n    \"weatherConditionsFogSmokeSmog\": true,\r\n    \"weatherConditionsSleetHail\": false,\r\n    \"weatherConditionsOther\": false,\r\n    \"locationType\": \"\",\r\n    \"lightingCondition\": \"\",\r\n    \"weatherCondition\": \"\",\r\n    \"involvedOfficer\": true,\r\n    \"involvedSuspect\": true,\r\n    \"involvedVictim\": true,\r\n    \"involvedWitness\": true,\r\n    \"involvedVehicle\": true,\r\n    \"involvedProperty\": false,\r\n    \"involvedInmate\": true,\r\n    \"involvedNarrative\": true,\r\n    \"involvedSupervisorReview\": null,\r\n    \"responseToResistanceEcd\": true,\r\n    \"responseToResistanceChemicalAgents\": true,\r\n    \"responseToResistanceImpactWeapons\": true,\r\n    \"responseToResistanceImpactMunitions\": false,\r\n    \"responseToResistanceK9\": true,\r\n    \"responseToResistanceHands\": false,\r\n    \"responseToResistanceTakedowns\": true,\r\n    \"responseToResistanceFirearms\": false,\r\n    \"responseToResistanceStopsticks\": true,\r\n    \"responseToResistanceOther\": false,\r\n    \"supervisorName\": \"\",\r\n    \"managerNotified\": \"\",\r\n    \"managerName\": \"\",\r\n    \"managerNotifiedTime\": null,\r\n    \"managerArrivedTime\": null,\r\n    \"reasonForUseOfForce\": \"\",\r\n    \"reasonForUseOfForceOther\": \"\",\r\n    \"incidentType\": \"\",\r\n    \"incidentTypeOther\": \"\",\r\n    \"trackingId\": 9,\r\n    \"trackingYear\": 2022,\r\n    \"trackingNumber\": \"2022 - 9\",\r\n    \"subReportNumber\": null,\r\n    \"historical\": false,\r\n    \"oldCreatorName\": \"Ofc. Frank Ribere\",\r\n    \"routing\": \"\",\r\n    \"deleteComments\": \"\",\r\n    \"reportType\": \"\",\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"searchNarrative\": \"\",\r\n    \"incidentAddress2\": \"\",\r\n    \"zipCode\": \"\",\r\n    \"latitude\": \"\",\r\n    \"longitude\": \"\",\r\n    \"incidentAmbush\": \"\",\r\n    \"leoApproachSuspect\": \"\",\r\n    \"initialContactReason\": \"\",\r\n    \"forceResults\": \"\",\r\n    \"dontKnowRelatedIncidentCase\": \"\",\r\n    \"totalOfficersOwnAgencyApplyForce\": null,\r\n    \"dontKnowTotalOfficersOwnAgencyApplyForce\": \"\",\r\n    \"totalOfficersAllAgencyApplyForce\": null,\r\n    \"dontKnowTotalOfficersAllAgencyApplyForce\": \"\",\r\n    \"totalSuspectsDeceasedOrInjured\": null,\r\n    \"dontKnowTotalSuspectsDeceasedOrInjured\": \"\",\r\n    \"didOtherAgencyApplyForce\": false,\r\n    \"totalOtherAgencyApplyForce\": null,\r\n    \"otherAgencyCaseNumber\": \"\",\r\n    \"otherAgencyORI\": \"\",\r\n    \"dontKnowAddress\": \"\",\r\n    \"seniorOfficerPresent\": \"\",\r\n    \"seniorOfficerName\": \"\",\r\n    \"seniorOfficerNotifiedTime\": null,\r\n    \"seniorOfficerArrivedTime\": null,\r\n    \"incidentCategory\": \"\",\r\n    \"howmanyOfficersonCall\": \"\",\r\n    \"streetNumber\": \"\",\r\n    \"preDirectional\": \"\",\r\n    \"streetType\": \"\",\r\n    \"postDirectional\": \"\",\r\n    \"lethal\": false,\r\n    \"servicesRendered\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"chemicals\": [\r\n        {\r\n            \"chemicalId\": 16142,\r\n            \"incidentId\": 16378,\r\n            \"suspectName\": \"Robert Murray\",\r\n            \"officerName\": \"Ofc. Frank Ribere\",\r\n            \"chemicalAgentTypeUsed\": \"Pepper Spray\",\r\n            \"chemicalSerialNumber\": \"ASDF-GR678\",\r\n            \"chemicalLotNumber\": \"WERBHY7908\",\r\n            \"chemicalDurationOfSprayInSeconds1\": \"4 seconds\",\r\n            \"chemicalDurationOfSprayInSeconds2\": \"3 seconds\",\r\n            \"chemicalDurationOfSprayInSeconds3\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds4\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds5\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds6\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds7\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds8\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds9\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds10\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds11\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds12\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds13\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds14\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds15\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect1\": \"10-15 feet\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect2\": \"1-3 feet\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect3\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect4\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect5\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect6\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect7\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect8\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect9\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect10\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect11\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect12\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect13\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect14\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect15\": \"\",\r\n            \"chemicalBodyPartsSprayed1\": \"Torso front\",\r\n            \"chemicalBodyPartsSprayed2\": \"Face\",\r\n            \"chemicalBodyPartsSprayed3\": \"\",\r\n            \"chemicalBodyPartsSprayed4\": \"\",\r\n            \"chemicalBodyPartsSprayed5\": \"\",\r\n            \"chemicalBodyPartsSprayed6\": \"\",\r\n            \"chemicalBodyPartsSprayed7\": \"\",\r\n            \"chemicalBodyPartsSprayed8\": \"\",\r\n            \"chemicalBodyPartsSprayed9\": \"\",\r\n            \"chemicalBodyPartsSprayed10\": \"\",\r\n            \"chemicalBodyPartsSprayed11\": \"\",\r\n            \"chemicalBodyPartsSprayed12\": \"\",\r\n            \"chemicalBodyPartsSprayed13\": \"\",\r\n            \"chemicalBodyPartsSprayed14\": \"\",\r\n            \"chemicalBodyPartsSprayed15\": \"\",\r\n            \"chemicalSuspectDecontaminated\": \"Yes\",\r\n            \"chemicalSuspectDecontaminatedTime\": null,\r\n            \"chemicalSuspectDecontaminatedBy\": \"\",\r\n            \"chemicalHowSuspectDecontaminated\": \"\",\r\n            \"chemicalSuspectCompliedAfter\": \"Yes\",\r\n            \"sprayDuration\": 1,\r\n            \"pointsOfContact\": \"|50845.666666666664,148,61|91678.74999999998,145,110\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"chemicalOnlyDisplayed\": \"\",\r\n            \"structure\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"chemicalPointsOfContact\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.4028216\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.4027919\"\r\n        }\r\n    ],\r\n    \"ecds\": [\r\n        {\r\n            \"ecdId\": 16144,\r\n            \"incidentId\": 16378,\r\n            \"suspectName\": \"Robert Murray\",\r\n            \"officerName\": \"Ofc. Frank Ribere\",\r\n            \"ecdDeploymentType\": \"Probes\",\r\n            \"ecdSerialNumber\": \"SDFTE-9780\",\r\n            \"ecdCartridgeNumber1\": \"6052-GT\",\r\n            \"ecdCartridgeNumber2\": \"6053-GT\",\r\n            \"ecdContactMade\": \"Yes\",\r\n            \"ecdNumberofContactsMade\": \"\",\r\n            \"ecdDeploymentDuration1\": \"7-9 sec\",\r\n            \"ecdDeploymentDistance1\": \"10-15 feet\",\r\n            \"ecdProbe1Connected1\": \"Yes\",\r\n            \"ecdProbe2Connected1\": \"Yes\",\r\n            \"ecdDeploymentDuration2\": \"4-6 sec\",\r\n            \"ecdDeploymentDistance2\": \"4-9 feet\",\r\n            \"ecdProbe1Connected2\": \"Yes\",\r\n            \"ecdProbe2Connected2\": \"Yes\",\r\n            \"ecdDeploymentDuration3\": \"\",\r\n            \"ecdDeploymentDistance3\": \"\",\r\n            \"ecdProbe1Connected3\": \"\",\r\n            \"ecdProbe2Connected3\": \"\",\r\n            \"ecdDeploymentDuration4\": \"\",\r\n            \"ecdDeploymentDistance4\": \"\",\r\n            \"ecdProbe1Connected4\": \"\",\r\n            \"ecdProbe2Connected4\": \"\",\r\n            \"ecdDeploymentDuration5\": \"\",\r\n            \"ecdDeploymentDistance5\": \"\",\r\n            \"ecdProbe1Connected5\": \"\",\r\n            \"ecdProbe2Connected5\": \"\",\r\n            \"ecdDeploymentDuration6\": \"\",\r\n            \"ecdDeploymentDistance6\": \"\",\r\n            \"ecdProbe1Connected6\": \"\",\r\n            \"ecdProbe2Connected6\": \"\",\r\n            \"ecdDeploymentDuration7\": \"\",\r\n            \"ecdDeploymentDistance7\": \"\",\r\n            \"ecdProbe1Connected7\": \"\",\r\n            \"ecdProbe2Connected7\": \"\",\r\n            \"ecdDeploymentDuration8\": \"\",\r\n            \"ecdDeploymentDistance8\": \"\",\r\n            \"ecdProbe1Connected8\": \"\",\r\n            \"ecdProbe2Connected8\": \"\",\r\n            \"ecdDeploymentDuration9\": \"\",\r\n            \"ecdDeploymentDistance9\": \"\",\r\n            \"ecdProbe1Connected9\": \"\",\r\n            \"ecdProbe2Connected9\": \"\",\r\n            \"ecdDeploymentDuration10\": \"\",\r\n            \"ecdDeploymentDistance10\": \"\",\r\n            \"ecdProbe1Connected10\": \"\",\r\n            \"ecdProbe2Connected10\": \"\",\r\n            \"ecdDeploymentDuration11\": \"\",\r\n            \"ecdDeploymentDistance11\": \"\",\r\n            \"ecdProbe1Connected11\": \"\",\r\n            \"ecdProbe2Connected11\": \"\",\r\n            \"ecdDeploymentDuration12\": \"\",\r\n            \"ecdDeploymentDistance12\": \"\",\r\n            \"ecdProbe1Connected12\": \"\",\r\n            \"ecdProbe2Connected12\": \"\",\r\n            \"ecdDeploymentDuration13\": \"\",\r\n            \"ecdDeploymentDistance13\": \"\",\r\n            \"ecdProbe1Connected13\": \"\",\r\n            \"ecdProbe2Connected13\": \"\",\r\n            \"ecdDeploymentDuration14\": \"\",\r\n            \"ecdDeploymentDistance14\": \"\",\r\n            \"ecdProbe1Connected14\": \"\",\r\n            \"ecdProbe2Connected14\": \"\",\r\n            \"ecdDeploymentDuration15\": \"\",\r\n            \"ecdDeploymentDistance15\": \"\",\r\n            \"ecdProbe1Connected15\": \"\",\r\n            \"ecdProbe2Connected15\": \"\",\r\n            \"ecdProbePenetratedSuspectSkin\": \"Yes\",\r\n            \"ecdProbesRemovedBy\": \"Officer Michael Gross\",\r\n            \"ecdSuspectCompliedAfter\": \"Yes\",\r\n            \"pointsOfContact\": \"|91681.24999999998,175,110|78343.16666666665,118,94|90845.25000000001,143,109|119175.83333333333,110,143\",\r\n            \"nonEditable\": false,\r\n            \"deploymentFrequency\": 1,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"ecdOnlyDisplayed\": \"\",\r\n            \"suspectIncapacitated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"ecdPointOfContact\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.3797233\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.3793869\"\r\n        }\r\n    ],\r\n    \"firearms\": [],\r\n    \"hands\": [],\r\n    \"inmates\": [\r\n        {\r\n            \"inmateId\": 9077,\r\n            \"incidentId\": 16378,\r\n            \"suspectName\": \"\",\r\n            \"inmateNumber\": \"GDTE-907-GHY6\",\r\n            \"inmateDetentionFacility\": \"State Penitentiary\",\r\n            \"officerName\": \"\",\r\n            \"restraintsUsed\": \"\",\r\n            \"restraintsUsedOther\": \"\",\r\n            \"reasonForceWasApplied\": \"\",\r\n            \"reasonForceWasAppliedOther\": \"\",\r\n            \"restrainedHours\": \"\",\r\n            \"restrainedMinute\": \"\",\r\n            \"inmateHaveWeapon\": \"\",\r\n            \"cell\": \"\",\r\n            \"nonEditable\": false,\r\n            \"inmateDetentionClassification\": \"\",\r\n            \"suspectBookingNumber\": \"\",\r\n            \"jailViolations\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.3551259\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.355084\"\r\n        }\r\n    ],\r\n    \"k9s\": [\r\n        {\r\n            \"k9Id\": 10062,\r\n            \"incidentId\": 16378,\r\n            \"suspectName\": \"Robert Murray\",\r\n            \"officerName\": \"Ofc. Frank Ribere\",\r\n            \"k9name\": \"Kholby\",\r\n            \"k9breed\": \"German Shepherd\",\r\n            \"k9type\": \"Apprehension\",\r\n            \"k9typeOtherDescription\": \"\",\r\n            \"k9reasonDeployed\": \"Officer Protection\",\r\n            \"k9nnumberBites\": \"2\",\r\n            \"k9suspectCompliedAfter\": \"Yes\",\r\n            \"pointsOfContact\": \"|135015.75,189,162|112514.83333333333,178,135\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"k9OnlyDisplayed\": \"\",\r\n            \"k9Category\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"k9PointOfContactId\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.4323776\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.4323387\"\r\n        }\r\n    ],\r\n    \"munitions\": [],\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 15210,\r\n            \"incidentId\": 16378,\r\n            \"narrative\": \"On 01-02-13, at 1158 hours, I was dispatched to 1945 Kings Rd. to assist another officer in reference to a theft in progress.  Upon arrival, I met with Brodrick Miller (complainant) who is the manager for the business.  The complainant stated a black female wearing a burgundy shirt, black pants with hair pulled back in a ponytail (suspect) stole a \\\"Buggy full of items\\\" from the store and attempted to flee in a vehicle.  The suspect got into a grey Honda Accord and tried to flee. Another black female who was with the suspect and sitting on the passenger side of the vehicle, saw what the suspect was doing and told the suspect \\\"You are not about to get me arrested with you!\\\". The black female began pushing the stolen items that the suspect had out of the vehicle while the suspect was trying to back out of the parking space. The complainant was standing in the doorway of the vehicle attempting to stop the suspect when she said to him \\\"I have a gun and I will shoot you\\\". While the vehicle was backing up, the door slightly made contact with the complainant.  The suspect stopped and exited the vehicle and began fleeing on foot southbound on Seminary St.  While running, the suspect lost her shoes and continued to run barefoot. \\r\\n\\r\\nI searched the area for the suspect and observed a barefoot, black female wearing a burgundy blouse, black pants with hair pulled back in a ponytail in the 1900 block of E. University Circle. When I exited my vehicle and started to approach the suspect, the suspect jumped a fence.  I directed the suspect to stop, but she refused and stated, \\\"What I did?\\\"  As I started to climb the fence, the suspect picked up a milk crate and lifted it up to use as a weapon against me. I drew and aimed my Electronic Control Device (ECD) at the suspect and ordered her to drop the milk crate.  The suspect still refused to comply.  I deployed my ECD towards the suspect but the prongs deflected off of the milk crate the suspect was holding and did not make contact with the suspect. The suspect then ran south through the yards towards S. University Circle.  The suspect was taken into custody without further incident.\\r\\n\\r\\nThe suspect was positively identified by the complainant.  My supervisor Sgt. Selzer (ID #7525) responded to the scene.\\r\\n\\r\\nThe suspect was charged with Burglary, Petit Theft, resisting Retail merchant and Resisting Officer.\\r\\n\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.4515066\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.4515062\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"incidentOfficerId\": 16353,\r\n            \"incidentId\": 16378,\r\n            \"officerId\": \"1078\",\r\n            \"firstName\": \"Ofc. Frank Ribere\",\r\n            \"middleName\": \"\",\r\n            \"lastName\": \"\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerOnDuty\": \"Yes\",\r\n            \"officerPermanentAssignment\": \"Patrol\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"address\": \"100 South Hughey Avenue\",\r\n            \"city\": \"Orlando (city limits)\",\r\n            \"state\": \"FL\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"07/12/1987\",\r\n            \"age\": \"\",\r\n            \"height\": \"5ft8-5ft11in\",\r\n            \"weight\": \"150-199\",\r\n            \"build\": \"Thin\",\r\n            \"officerYearsWithAgency\": \"4-6 years\",\r\n            \"officerTotalYearsInLawEnforcement\": \"4-6 years\",\r\n            \"education\": \"16\",\r\n            \"officerInjured\": \"Yes\",\r\n            \"officerInjuryType\": \"Non-Incapacitating\",\r\n            \"officerInjurySeverity\": \"Non-Incapacitating\",\r\n            \"officerHowInjuryOccurred\": \"Suspect’s Actions\",\r\n            \"officerMedicalTreatmentReceived\": \"Yes\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"Paramedics\",\r\n            \"officerTransported\": \"No\",\r\n            \"officerTransportedBy\": \"\",\r\n            \"officerTransportedTo\": \"\",\r\n            \"officerTransportedTime\": \"00:00:00\",\r\n            \"officerInjuryPhotos\": \"Yes\",\r\n            \"officerInjuryPhotosTakenBy\": \"Other Officer\",\r\n            \"pointsOfContact\": \"|125842.41666666667,109,151|110009.5,114,132\",\r\n            \"cit\": \"\",\r\n            \"nonEditable\": false,\r\n            \"deescalation\": \"\",\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"didOfficerUseForce\": \"\",\r\n            \"employmentFullTime\": \"\",\r\n            \"dontKnowAge\": \"\",\r\n            \"dontKnowHeight\": \"\",\r\n            \"dontKnowWeight\": \"\",\r\n            \"dontKnowYearsOfService\": \"\",\r\n            \"leoInjuredNIBRSIncidentNumber\": \"\",\r\n            \"dontKnowLEOInjuredNIBRSIncidentNumber\": \"\",\r\n            \"officerMedicalTreatmentReceivedByDropdown\": \"\",\r\n            \"officerTransportedByDropDown\": \"\",\r\n            \"officerTransportedToDropDown\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"officerPointsOfContact\": [],\r\n            \"victimRelationshipsToOfficer\": [],\r\n            \"witnessRelationshipsToOfficer\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.2988829\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.2988825\"\r\n        },\r\n        {\r\n            \"incidentOfficerId\": 16354,\r\n            \"incidentId\": 16378,\r\n            \"officerId\": \"1079\",\r\n            \"firstName\": \"Ofc. Michael Gross\",\r\n            \"middleName\": \"\",\r\n            \"lastName\": \"\",\r\n            \"officerPrimary\": \"No\",\r\n            \"officerOnDuty\": \"Yes\",\r\n            \"officerPermanentAssignment\": \"Patrol\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"address\": \"100 South Hughey Avenue \",\r\n            \"city\": \"Orlando (city limits)\",\r\n            \"state\": \"FL\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"05/13/1978\",\r\n            \"age\": \"\",\r\n            \"height\": \"6ft or more\",\r\n            \"weight\": \"200-249\",\r\n            \"build\": \"Medium/Average\",\r\n            \"officerYearsWithAgency\": \"10-13 years\",\r\n            \"officerTotalYearsInLawEnforcement\": \"10-13 years\",\r\n            \"education\": \"12\",\r\n            \"officerInjured\": \"No\",\r\n            \"officerInjuryType\": \"\",\r\n            \"officerInjurySeverity\": \"\",\r\n            \"officerHowInjuryOccurred\": \"\",\r\n            \"officerMedicalTreatmentReceived\": \"\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"\",\r\n            \"officerTransported\": \"\",\r\n            \"officerTransportedBy\": \"\",\r\n            \"officerTransportedTo\": \"\",\r\n            \"officerTransportedTime\": \"00:00:00\",\r\n            \"officerInjuryPhotos\": \"\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"cit\": \"\",\r\n            \"nonEditable\": false,\r\n            \"deescalation\": \"\",\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"didOfficerUseForce\": \"\",\r\n            \"employmentFullTime\": \"\",\r\n            \"dontKnowAge\": \"\",\r\n            \"dontKnowHeight\": \"\",\r\n            \"dontKnowWeight\": \"\",\r\n            \"dontKnowYearsOfService\": \"\",\r\n            \"leoInjuredNIBRSIncidentNumber\": \"\",\r\n            \"dontKnowLEOInjuredNIBRSIncidentNumber\": \"\",\r\n            \"officerMedicalTreatmentReceivedByDropdown\": \"\",\r\n            \"officerTransportedByDropDown\": \"\",\r\n            \"officerTransportedToDropDown\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"officerPointsOfContact\": [],\r\n            \"victimRelationshipsToOfficer\": [],\r\n            \"witnessRelationshipsToOfficer\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.2989121\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.298912\"\r\n        }\r\n    ],\r\n    \"properties\": [],\r\n    \"stopSticks\": [\r\n        {\r\n            \"stopStickId\": 8056,\r\n            \"incidentId\": 16378,\r\n            \"officerName\": \"Ofc. Michael Gross\",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"Ford\",\r\n            \"vehicleModel\": \"Explorer XLT\",\r\n            \"vehicleYear\": \"2010\",\r\n            \"vehicleTag\": \"960-GT6\",\r\n            \"stopstickOfficerTrainedInTechnique\": \"Yes\",\r\n            \"stopstickInvolvedStopSticksUsed\": \"No\",\r\n            \"stopstickPitManeuverUsed\": \"No\",\r\n            \"stopstickBoxinTechniqueUsed\": \"Yes\",\r\n            \"interventionUsed\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"stopstickOnlyDisplayed\": \"\",\r\n            \"state\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"stopStickInfo\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.4512311\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.4511874\"\r\n        }\r\n    ],\r\n    \"suspects\": [\r\n        {\r\n            \"suspectId\": 15279,\r\n            \"incidentId\": 16378,\r\n            \"firstName\": \"Robert Murray\",\r\n            \"middleName\": \"\",\r\n            \"lastName\": \"\",\r\n            \"suspectAddress\": \"2395 James Rd.\",\r\n            \"city\": \"Winter Park\",\r\n            \"state\": \"FL\",\r\n            \"race\": \"Hispanic/Latino\",\r\n            \"gender\": \"Male\",\r\n            \"suspectDateOfBirth\": \"06/18/1980\",\r\n            \"age\": \"\",\r\n            \"height\": \"5ft8-5ft11in\",\r\n            \"weight\": \"150-199\",\r\n            \"build\": \"Medium/Average\",\r\n            \"education\": \"12\",\r\n            \"suspectActionsPresence\": false,\r\n            \"suspectActionsPassiveResistance\": false,\r\n            \"suspectActionsVerbalResistance\": false,\r\n            \"suspectActionsActiveAggression\": false,\r\n            \"suspectActionsAggressivePhysical\": true,\r\n            \"suspectActionsAggravatedPhysical\": false,\r\n            \"suspectActionsOther\": false,\r\n            \"suspectOfficersResponsePresence\": false,\r\n            \"suspectOfficersResponsePassiveResistance\": true,\r\n            \"suspectOfficersResponseVerbalResistance\": false,\r\n            \"suspectOfficersResponseAggression\": false,\r\n            \"suspectOfficersResponseAggravatedPhysical\": false,\r\n            \"suspectOfficersResponseOther\": false,\r\n            \"suspectOfficersResponseLevel7\": null,\r\n            \"suspectOfficersResponseLevel8\": null,\r\n            \"suspectWeaponUsedHands\": true,\r\n            \"suspectWeaponUsedBluntObject\": false,\r\n            \"suspectWeaponUsedEdgedObject\": true,\r\n            \"suspectWeaponUsedFirearm\": false,\r\n            \"suspectWeaponUsedOther\": false,\r\n            \"suspectArrested\": \"Yes\",\r\n            \"suspectWhyNotArrested\": \"\",\r\n            \"suspectArrestCharge\": \"Refusing Arrest - Officer Assualt\",\r\n            \"suspectArrestedForFelony\": \"Yes\",\r\n            \"suspectArresteeDeliveredTo\": \"\",\r\n            \"suspectJailNumber\": \"4569-BE\",\r\n            \"suspectConditionPriorMellow\": false,\r\n            \"suspectConditionPriorDepressed\": false,\r\n            \"suspectConditionPriorAngry\": true,\r\n            \"suspectConditionPriorDisoriented\": false,\r\n            \"suspectConditionPriorDrugs\": false,\r\n            \"suspectConditionPriorAlcohol\": false,\r\n            \"suspectConditionPriorFighting\": true,\r\n            \"suspectConditionPriorOther\": false,\r\n            \"suspectConditionPostMellow\": false,\r\n            \"suspectConditionPostDepressed\": false,\r\n            \"suspectConditionPostAngry\": true,\r\n            \"suspectConditionPostDisoriented\": false,\r\n            \"suspectConditionPostDrugs\": false,\r\n            \"suspectConditionPostAlcohol\": false,\r\n            \"suspectConditionPostFighting\": false,\r\n            \"suspectConditionPostOther\": false,\r\n            \"suspectConditionPriorComment\": \"\",\r\n            \"suspectConditionPostComment\": \"\",\r\n            \"suspectInjured\": \"No\",\r\n            \"suspectInjuryType\": \"\",\r\n            \"suspectInjurySeverity\": \"\",\r\n            \"howInjuryOccurredToSuspect\": \"\",\r\n            \"medicalTreatmentOfSuspect\": \"\",\r\n            \"medicalTreatmentOfSuspectBy\": \"\",\r\n            \"suspectTransported\": \"\",\r\n            \"suspectTransportedBy\": \"\",\r\n            \"suspectTransportedTo\": \"\",\r\n            \"suspectTransportedTime\": \"00:00:00\",\r\n            \"suspectInjuryPhotos\": \"\",\r\n            \"suspectInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"suspectExhibitsSignsofExcitedDelirium\": \"\",\r\n            \"deliriumSignsDisplayed\": \"\",\r\n            \"suspectShowedSignsofMentalIllness\": \"\",\r\n            \"showedSignsMentalIllness\": \"\",\r\n            \"showedSignsMentalIllnessothers\": \"\",\r\n            \"rank1\": null,\r\n            \"rank2\": null,\r\n            \"rank3\": null,\r\n            \"rank4\": null,\r\n            \"rank5\": null,\r\n            \"rank6\": null,\r\n            \"rank7\": null,\r\n            \"rank8\": null,\r\n            \"rank9\": null,\r\n            \"rank10\": null,\r\n            \"rank11\": null,\r\n            \"rank12\": null,\r\n            \"rank13\": null,\r\n            \"rank14\": null,\r\n            \"rank15\": null,\r\n            \"comments\": \"\",\r\n            \"nonEditable\": false,\r\n            \"arrestDate\": \"\",\r\n            \"arrestTime\": null,\r\n            \"suspectForceCategory\": \"\",\r\n            \"suspectResistedType\": \"\",\r\n            \"suspectThreatPerson\": \"\",\r\n            \"estimatedAgeRange\": \"\",\r\n            \"dontKnowAge\": \"\",\r\n            \"knownImpairment\": \"\",\r\n            \"knownImpairmentType\": \"\",\r\n            \"suspectResisted\": \"\",\r\n            \"suspectArmed\": \"\",\r\n            \"dontKnowCharges\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"suspectTransportedByDropDown\": \"\",\r\n            \"suspectTransportedToDropDown\": \"\",\r\n            \"threatFactors\": \"\",\r\n            \"deEscalation\": \"\",\r\n            \"suspectWeaponUsedOption6\": null,\r\n            \"suspectWeaponUsedOption7\": null,\r\n            \"suspectWeaponUsedOption8\": null,\r\n            \"suspectWeaponUsedOption9\": null,\r\n            \"suspectDisabilities\": \"\",\r\n            \"knowledgeofSuspectDisability\": \"\",\r\n            \"mobilityDevices\": \"\",\r\n            \"remoteInterpreterUsed\": \"\",\r\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\r\n            \"suspectCategory\": \"\",\r\n            \"suffix\": \"\",\r\n            \"genderIdentify\": \"\",\r\n            \"inmateNumber\": \"\",\r\n            \"custodyLocation\": \"\",\r\n            \"civilianDistance\": \"\",\r\n            \"civilianResistance\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"suspectPointsOfContact\": [],\r\n            \"victimsRelationshipToSuspects\": [],\r\n            \"witnessesRelationshipToSuspects\": [],\r\n            \"suspectChargeClassifications\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.2988337\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.2988333\"\r\n        }\r\n    ],\r\n    \"takedowns\": [\r\n        {\r\n            \"takedownId\": 10055,\r\n            \"incidentId\": 16378,\r\n            \"suspectName\": \"Robert Murray\",\r\n            \"officerName\": \"Ofc. Michael Gross\",\r\n            \"takedownTypeUsed\": \"Straight Arm Takedown\",\r\n            \"takedownSuspectCompliedAfter\": \"Yes\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"takedownOnlyDisplayed\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"takedownPointsOfContact\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.4401986\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.4401617\"\r\n        }\r\n    ],\r\n    \"vehicles\": [\r\n        {\r\n            \"vehicleId\": 9076,\r\n            \"incidentId\": 16378,\r\n            \"driver\": \"Etta Houston (Victim)\",\r\n            \"owner\": \"Etta Houston (Victim)\",\r\n            \"passengers\": \"Josephine Paoleti (Witness)\",\r\n            \"vehicleType\": \"SUV\",\r\n            \"vehicleMake\": \"Ford\",\r\n            \"vehicleModel\": \"Explorer XLT\",\r\n            \"year\": \"2010\",\r\n            \"vehicleTag\": \"960-GT6\",\r\n            \"state\": \"FL\",\r\n            \"vehicleSpeedDuringIncident\": \"Stopped\",\r\n            \"nonEditable\": false,\r\n            \"vehicleDamage\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.3463902\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.3463533\"\r\n        },\r\n        {\r\n            \"vehicleId\": 9077,\r\n            \"incidentId\": 16378,\r\n            \"driver\": \"Robert Murray (Suspect)\",\r\n            \"owner\": \"Robert Murray (Suspect)\",\r\n            \"passengers\": \" \",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"Nissan\",\r\n            \"vehicleModel\": \"Sentra\",\r\n            \"year\": \"2001\",\r\n            \"vehicleTag\": \"5H7-Y90\",\r\n            \"state\": \"FL\",\r\n            \"vehicleSpeedDuringIncident\": \"31-40 MPH\",\r\n            \"nonEditable\": false,\r\n            \"vehicleDamage\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.3464702\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.3464699\"\r\n        }\r\n    ],\r\n    \"victims\": [\r\n        {\r\n            \"victimId\": 8044,\r\n            \"incidentId\": 16378,\r\n            \"firstName\": \"Etta Houston\",\r\n            \"middleName\": \"\",\r\n            \"lastName\": \"\",\r\n            \"victimAddress\": \"845 St. Johns St.\",\r\n            \"city\": \"Altamonte Springs\",\r\n            \"state\": \"FL\",\r\n            \"victimEmail\": \"jim@here.com\",\r\n            \"victimPhone1\": \"4073219875\",\r\n            \"victimPhone2\": \"4076254125\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Female\",\r\n            \"victimDateOfBirth\": \"08/05/1982\",\r\n            \"age\": \"\",\r\n            \"suspectName1\": \"\",\r\n            \"victimRelationshipToSuspect1\": \"\",\r\n            \"officerName1\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer1\": \"\",\r\n            \"suspectName2\": \"\",\r\n            \"victimRelationshipToSuspect2\": \"\",\r\n            \"officerName2\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer2\": \"\",\r\n            \"suspectName3\": \"\",\r\n            \"victimRelationshipToSuspect3\": \"\",\r\n            \"officerName3\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer3\": \"\",\r\n            \"suspectName4\": \"\",\r\n            \"victimRelationshipToSuspect4\": \"\",\r\n            \"officerName4\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer4\": \"\",\r\n            \"suspectName5\": \"\",\r\n            \"victimRelationshipToSuspect5\": \"\",\r\n            \"officerName5\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer5\": \"\",\r\n            \"victimInjured\": \"Yes\",\r\n            \"victimInjuryType\": \"Laceration\",\r\n            \"victimInjurySeverity\": \"Non-Incapacitating\",\r\n            \"victimHowInjuryToVictimOccurred\": \"Suspect's Actions\",\r\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\r\n            \"victimMedicalTreatmentOfVictimBy\": \"Paramedics\",\r\n            \"victimTransported\": \"Yes\",\r\n            \"victimTransportedBy\": \"Ambulance\",\r\n            \"victimTransportedTo\": \"Hospital\",\r\n            \"victimTransportedTime\": \"23:05:00\",\r\n            \"victimInjuryPhotos\": \"Yes\",\r\n            \"victimInjuryPhotosTakenBy\": \"Ofc Michael Gross\",\r\n            \"pointsOfContact\": \"|115846.41666666667,157,139|123344.41666666667,133,148\",\r\n            \"nonEditable\": false,\r\n            \"officerRole\": \"\",\r\n            \"outsideAgency\": \"\",\r\n            \"victimMedicalTreatmentOfVictimByDropdown\": \"\",\r\n            \"victimTransportedByDropDown\": \"\",\r\n            \"victimTransportedToDropDown\": \"\",\r\n            \"victimInUniform\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"victimPointsOfContact\": [],\r\n            \"victimRelationshipsToOfficer\": [],\r\n            \"victimRelationshipsToSuspect\": [],\r\n            \"witnessRelationshipsToVictim\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.3207857\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.3207571\"\r\n        }\r\n    ],\r\n    \"weapons\": [\r\n        {\r\n            \"weaponId\": 13063,\r\n            \"incidentId\": 16378,\r\n            \"suspectName\": \"Robert Murray\",\r\n            \"officerName\": \"Ofc. Michael Gross\",\r\n            \"weaponTypeUsed\": \"Expandable Baton\",\r\n            \"weaponTotalNumberOfStrikes\": \"2\",\r\n            \"weaponBodyPartMadeContactWith1\": \"Upper leg\",\r\n            \"weaponDurationOfImpactCountInSeconds1\": \"2\",\r\n            \"weaponBodyPartMadeContactWith2\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds2\": \"\",\r\n            \"weaponBodyPartMadeContactWith3\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds3\": \"\",\r\n            \"weaponBodyPartMadeContactWith4\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds4\": \"\",\r\n            \"weaponBodyPartMadeContactWith5\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds5\": \"\",\r\n            \"weaponBodyPartMadeContactWith6\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds6\": \"\",\r\n            \"weaponBodyPartMadeContactWith7\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds7\": \"\",\r\n            \"weaponBodyPartMadeContactWith8\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds8\": \"\",\r\n            \"weaponBodyPartMadeContactWith9\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds9\": \"\",\r\n            \"weaponBodyPartMadeContactWith10\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds10\": \"\",\r\n            \"weaponBodyPartMadeContactWith11\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds11\": \"\",\r\n            \"weaponBodyPartMadeContactWith12\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds12\": \"\",\r\n            \"weaponBodyPartMadeContactWith13\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds13\": \"\",\r\n            \"weaponBodyPartMadeContactWith14\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds14\": \"\",\r\n            \"weaponBodyPartMadeContactWith15\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds15\": \"\",\r\n            \"weaponSuspectCompliedAfter\": \"Yes\",\r\n            \"pointsOfContact\": \"|179191.1666666667,294,215|178355.49999999997,266,214\",\r\n            \"nonEditable\": false,\r\n            \"impactContact\": 1,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"weaponOnlyDisplayed\": \"\",\r\n            \"bodyPartsAimedFor\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"weaponPointOfContact\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.4215163\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.4214811\"\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 8058,\r\n            \"incidentId\": 16378,\r\n            \"firstName\": \"Josephine Paoleti\",\r\n            \"middleName\": \"\",\r\n            \"lastName\": \"\",\r\n            \"witnessAddress\": \"6234 Runners Rd.\",\r\n            \"city\": \"Orlando\",\r\n            \"state\": \"FL\",\r\n            \"witnessEmail\": \"jpaoleti@yahoo.com\",\r\n            \"witnessPhone1\": \"4076985216\",\r\n            \"witnessPhone2\": \"4072168451\",\r\n            \"race\": \"Asian\",\r\n            \"gender\": \"Female\",\r\n            \"witnessDateOfBirth\": \"02/17/1990\",\r\n            \"suspectName1\": \"\",\r\n            \"witnessRelationshipToSuspect1\": \"\",\r\n            \"officerName1\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer1\": \"\",\r\n            \"victimName1\": \"\",\r\n            \"witnessRelationshipToVictim1\": \"\",\r\n            \"suspectName2\": \"\",\r\n            \"witnessRelationshipToSuspect2\": \"\",\r\n            \"officerName2\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer2\": \"\",\r\n            \"victimName2\": \"\",\r\n            \"witnessRelationshipToVictim2\": \"\",\r\n            \"suspectName3\": \"\",\r\n            \"witnessRelationshipToSuspect3\": \"\",\r\n            \"officerName3\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer3\": \"\",\r\n            \"victimName3\": \"\",\r\n            \"witnessRelationshipToVictim3\": \"\",\r\n            \"suspectName4\": \"\",\r\n            \"witnessRelationshipToSuspect4\": \"\",\r\n            \"officerName4\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer4\": \"\",\r\n            \"victimName4\": \"\",\r\n            \"witnessRelationshipToVictim4\": \"\",\r\n            \"suspectName5\": \"\",\r\n            \"witnessRelationshipToSuspect5\": \"\",\r\n            \"officerName5\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer5\": \"\",\r\n            \"victimName5\": \"\",\r\n            \"witnessRelationshipToVictim5\": \"\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"witnessRelationshipsToOfficer\": [],\r\n            \"witnessRelationshipsToSuspect\": [],\r\n            \"witnessRelationshipsToVictim\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.3391035\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.3390687\"\r\n        }\r\n    ],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [],\r\n    \"modifiedDate\": \"2022-03-21T13:54:44.2986975\",\r\n    \"createdDate\": \"2022-03-21T13:54:44.298697\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/facts"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcZmFjdHM=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 17:56:03 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Supplied Incident Case Number doesn't exists!\"\n}"},{"id":"e0191928-e600-4cf7-9285-b53958ee1008","name":"Incident Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"incidentId\": 16379,\r\n    \"creator\": \"\",\r\n    \"reviewer\": \"\",\r\n    \"creatorId\": 8,\r\n    \"status\": \"Editing\",\r\n    \"fdleSubmissionStatus\": \"\",\r\n    \"incidentCaseNumber\": \"MyCaseNumber-003\",\r\n    \"relatedIncidentCase\": \"\",\r\n    \"incidentDate\": \"02/09/2013\",\r\n    \"incidentTime\": \"22:30:00\",\r\n    \"reportDate\": \"02/09/2013\",\r\n    \"reportTime\": \"23:55:00\",\r\n    \"incidentSupervisorNotified\": \"Yes\",\r\n    \"incidentSupervisorNumber\": \"\",\r\n    \"incidentSupervisorNotifiedTime\": \"22:45:00\",\r\n    \"incidentSupervisorArrivedTime\": \"23:00:00\",\r\n    \"incidentVideoAttached\": \"No\",\r\n    \"incidentDocumentAttached\": \"No\",\r\n    \"incidentAddress\": \"673 Marco Ln.\",\r\n    \"city\": \"Orlando (city limits)\",\r\n    \"state\": \"FL\",\r\n    \"area\": \"Zone 1\",\r\n    \"district\": \"North\",\r\n    \"sector\": \"A-1\",\r\n    \"subsector\": \"\",\r\n    \"locationTypeApartment\": true,\r\n    \"locationTypeResidence\": false,\r\n    \"locationTypeHotelMotel\": false,\r\n    \"locationTypeRestaurantBar\": false,\r\n    \"locationTypeParkingLot\": false,\r\n    \"locationTypeOpenField\": false,\r\n    \"locationTypeWoodedArea\": false,\r\n    \"locationTypeOther\": false,\r\n    \"lightingConditionsDaylight\": false,\r\n    \"lightingConditionsDusk\": false,\r\n    \"lightingConditionsDawn\": false,\r\n    \"lightingConditionsDarkLighted\": false,\r\n    \"lightingConditionsDarkNotLighted\": true,\r\n    \"lightingConditionsDarkUnknownLighting\": false,\r\n    \"lightingConditionsOther\": false,\r\n    \"weatherConditionsClear\": false,\r\n    \"weatherConditionsCloudy\": false,\r\n    \"weatherConditionsRain\": false,\r\n    \"weatherConditionsSnow\": false,\r\n    \"weatherConditionsWindy\": false,\r\n    \"weatherConditionsFogSmokeSmog\": true,\r\n    \"weatherConditionsSleetHail\": false,\r\n    \"weatherConditionsOther\": false,\r\n    \"locationType\": \"\",\r\n    \"lightingCondition\": \"\",\r\n    \"weatherCondition\": \"\",\r\n    \"involvedOfficer\": true,\r\n    \"involvedSuspect\": true,\r\n    \"involvedVictim\": true,\r\n    \"involvedWitness\": true,\r\n    \"involvedVehicle\": true,\r\n    \"involvedProperty\": false,\r\n    \"involvedInmate\": true,\r\n    \"involvedNarrative\": true,\r\n    \"involvedSupervisorReview\": null,\r\n    \"responseToResistanceEcd\": true,\r\n    \"responseToResistanceChemicalAgents\": true,\r\n    \"responseToResistanceImpactWeapons\": true,\r\n    \"responseToResistanceImpactMunitions\": false,\r\n    \"responseToResistanceK9\": true,\r\n    \"responseToResistanceHands\": false,\r\n    \"responseToResistanceTakedowns\": true,\r\n    \"responseToResistanceFirearms\": false,\r\n    \"responseToResistanceStopsticks\": true,\r\n    \"responseToResistanceOther\": false,\r\n    \"supervisorName\": \"\",\r\n    \"managerNotified\": \"\",\r\n    \"managerName\": \"\",\r\n    \"managerNotifiedTime\": null,\r\n    \"managerArrivedTime\": null,\r\n    \"reasonForUseOfForce\": \"\",\r\n    \"reasonForUseOfForceOther\": \"\",\r\n    \"incidentType\": \"\",\r\n    \"incidentTypeOther\": \"\",\r\n    \"trackingId\": 9,\r\n    \"trackingYear\": 2022,\r\n    \"trackingNumber\": \"2022 - 9\",\r\n    \"subReportNumber\": null,\r\n    \"historical\": false,\r\n    \"oldCreatorName\": \"Ofc. Frank Ribere\",\r\n    \"routing\": \"\",\r\n    \"deleteComments\": \"\",\r\n    \"reportType\": \"\",\r\n    \"nonEditable\": false,\r\n    \"sealed\": false,\r\n    \"searchNarrative\": \"\",\r\n    \"incidentAddress2\": \"\",\r\n    \"zipCode\": \"\",\r\n    \"latitude\": \"\",\r\n    \"longitude\": \"\",\r\n    \"incidentAmbush\": \"\",\r\n    \"leoApproachSuspect\": \"\",\r\n    \"initialContactReason\": \"\",\r\n    \"forceResults\": \"\",\r\n    \"dontKnowRelatedIncidentCase\": \"\",\r\n    \"totalOfficersOwnAgencyApplyForce\": null,\r\n    \"dontKnowTotalOfficersOwnAgencyApplyForce\": \"\",\r\n    \"totalOfficersAllAgencyApplyForce\": null,\r\n    \"dontKnowTotalOfficersAllAgencyApplyForce\": \"\",\r\n    \"totalSuspectsDeceasedOrInjured\": null,\r\n    \"dontKnowTotalSuspectsDeceasedOrInjured\": \"\",\r\n    \"didOtherAgencyApplyForce\": false,\r\n    \"totalOtherAgencyApplyForce\": null,\r\n    \"otherAgencyCaseNumber\": \"\",\r\n    \"otherAgencyORI\": \"\",\r\n    \"dontKnowAddress\": \"\",\r\n    \"seniorOfficerPresent\": \"\",\r\n    \"seniorOfficerName\": \"\",\r\n    \"seniorOfficerNotifiedTime\": null,\r\n    \"seniorOfficerArrivedTime\": null,\r\n    \"incidentCategory\": \"\",\r\n    \"howmanyOfficersonCall\": \"\",\r\n    \"streetNumber\": \"\",\r\n    \"preDirectional\": \"\",\r\n    \"streetType\": \"\",\r\n    \"postDirectional\": \"\",\r\n    \"lethal\": false,\r\n    \"servicesRendered\": \"\",\r\n    \"primaryReferenceId\": null,\r\n    \"chemicals\": [\r\n        {\r\n            \"chemicalId\": 16142,\r\n            \"incidentId\": 16378,\r\n            \"suspectName\": \"Robert Murray\",\r\n            \"officerName\": \"Ofc. Frank Ribere\",\r\n            \"chemicalAgentTypeUsed\": \"Pepper Spray\",\r\n            \"chemicalSerialNumber\": \"ASDF-GR678\",\r\n            \"chemicalLotNumber\": \"WERBHY7908\",\r\n            \"chemicalDurationOfSprayInSeconds1\": \"4 seconds\",\r\n            \"chemicalDurationOfSprayInSeconds2\": \"3 seconds\",\r\n            \"chemicalDurationOfSprayInSeconds3\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds4\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds5\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds6\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds7\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds8\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds9\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds10\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds11\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds12\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds13\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds14\": \"\",\r\n            \"chemicalDurationOfSprayInSeconds15\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect1\": \"10-15 feet\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect2\": \"1-3 feet\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect3\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect4\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect5\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect6\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect7\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect8\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect9\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect10\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect11\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect12\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect13\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect14\": \"\",\r\n            \"chemicalDistanceSprayDeployedFromSuspect15\": \"\",\r\n            \"chemicalBodyPartsSprayed1\": \"Torso front\",\r\n            \"chemicalBodyPartsSprayed2\": \"Face\",\r\n            \"chemicalBodyPartsSprayed3\": \"\",\r\n            \"chemicalBodyPartsSprayed4\": \"\",\r\n            \"chemicalBodyPartsSprayed5\": \"\",\r\n            \"chemicalBodyPartsSprayed6\": \"\",\r\n            \"chemicalBodyPartsSprayed7\": \"\",\r\n            \"chemicalBodyPartsSprayed8\": \"\",\r\n            \"chemicalBodyPartsSprayed9\": \"\",\r\n            \"chemicalBodyPartsSprayed10\": \"\",\r\n            \"chemicalBodyPartsSprayed11\": \"\",\r\n            \"chemicalBodyPartsSprayed12\": \"\",\r\n            \"chemicalBodyPartsSprayed13\": \"\",\r\n            \"chemicalBodyPartsSprayed14\": \"\",\r\n            \"chemicalBodyPartsSprayed15\": \"\",\r\n            \"chemicalSuspectDecontaminated\": \"Yes\",\r\n            \"chemicalSuspectDecontaminatedTime\": null,\r\n            \"chemicalSuspectDecontaminatedBy\": \"\",\r\n            \"chemicalHowSuspectDecontaminated\": \"\",\r\n            \"chemicalSuspectCompliedAfter\": \"Yes\",\r\n            \"sprayDuration\": 1,\r\n            \"pointsOfContact\": \"|50845.666666666664,148,61|91678.74999999998,145,110\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"chemicalOnlyDisplayed\": \"\",\r\n            \"structure\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"chemicalPointsOfContact\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.4028216\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.4027919\"\r\n        }\r\n    ],\r\n    \"ecds\": [\r\n        {\r\n            \"ecdId\": 16144,\r\n            \"incidentId\": 16378,\r\n            \"suspectName\": \"Robert Murray\",\r\n            \"officerName\": \"Ofc. Frank Ribere\",\r\n            \"ecdDeploymentType\": \"Probes\",\r\n            \"ecdSerialNumber\": \"SDFTE-9780\",\r\n            \"ecdCartridgeNumber1\": \"6052-GT\",\r\n            \"ecdCartridgeNumber2\": \"6053-GT\",\r\n            \"ecdContactMade\": \"Yes\",\r\n            \"ecdNumberofContactsMade\": \"\",\r\n            \"ecdDeploymentDuration1\": \"7-9 sec\",\r\n            \"ecdDeploymentDistance1\": \"10-15 feet\",\r\n            \"ecdProbe1Connected1\": \"Yes\",\r\n            \"ecdProbe2Connected1\": \"Yes\",\r\n            \"ecdDeploymentDuration2\": \"4-6 sec\",\r\n            \"ecdDeploymentDistance2\": \"4-9 feet\",\r\n            \"ecdProbe1Connected2\": \"Yes\",\r\n            \"ecdProbe2Connected2\": \"Yes\",\r\n            \"ecdDeploymentDuration3\": \"\",\r\n            \"ecdDeploymentDistance3\": \"\",\r\n            \"ecdProbe1Connected3\": \"\",\r\n            \"ecdProbe2Connected3\": \"\",\r\n            \"ecdDeploymentDuration4\": \"\",\r\n            \"ecdDeploymentDistance4\": \"\",\r\n            \"ecdProbe1Connected4\": \"\",\r\n            \"ecdProbe2Connected4\": \"\",\r\n            \"ecdDeploymentDuration5\": \"\",\r\n            \"ecdDeploymentDistance5\": \"\",\r\n            \"ecdProbe1Connected5\": \"\",\r\n            \"ecdProbe2Connected5\": \"\",\r\n            \"ecdDeploymentDuration6\": \"\",\r\n            \"ecdDeploymentDistance6\": \"\",\r\n            \"ecdProbe1Connected6\": \"\",\r\n            \"ecdProbe2Connected6\": \"\",\r\n            \"ecdDeploymentDuration7\": \"\",\r\n            \"ecdDeploymentDistance7\": \"\",\r\n            \"ecdProbe1Connected7\": \"\",\r\n            \"ecdProbe2Connected7\": \"\",\r\n            \"ecdDeploymentDuration8\": \"\",\r\n            \"ecdDeploymentDistance8\": \"\",\r\n            \"ecdProbe1Connected8\": \"\",\r\n            \"ecdProbe2Connected8\": \"\",\r\n            \"ecdDeploymentDuration9\": \"\",\r\n            \"ecdDeploymentDistance9\": \"\",\r\n            \"ecdProbe1Connected9\": \"\",\r\n            \"ecdProbe2Connected9\": \"\",\r\n            \"ecdDeploymentDuration10\": \"\",\r\n            \"ecdDeploymentDistance10\": \"\",\r\n            \"ecdProbe1Connected10\": \"\",\r\n            \"ecdProbe2Connected10\": \"\",\r\n            \"ecdDeploymentDuration11\": \"\",\r\n            \"ecdDeploymentDistance11\": \"\",\r\n            \"ecdProbe1Connected11\": \"\",\r\n            \"ecdProbe2Connected11\": \"\",\r\n            \"ecdDeploymentDuration12\": \"\",\r\n            \"ecdDeploymentDistance12\": \"\",\r\n            \"ecdProbe1Connected12\": \"\",\r\n            \"ecdProbe2Connected12\": \"\",\r\n            \"ecdDeploymentDuration13\": \"\",\r\n            \"ecdDeploymentDistance13\": \"\",\r\n            \"ecdProbe1Connected13\": \"\",\r\n            \"ecdProbe2Connected13\": \"\",\r\n            \"ecdDeploymentDuration14\": \"\",\r\n            \"ecdDeploymentDistance14\": \"\",\r\n            \"ecdProbe1Connected14\": \"\",\r\n            \"ecdProbe2Connected14\": \"\",\r\n            \"ecdDeploymentDuration15\": \"\",\r\n            \"ecdDeploymentDistance15\": \"\",\r\n            \"ecdProbe1Connected15\": \"\",\r\n            \"ecdProbe2Connected15\": \"\",\r\n            \"ecdProbePenetratedSuspectSkin\": \"Yes\",\r\n            \"ecdProbesRemovedBy\": \"Officer Michael Gross\",\r\n            \"ecdSuspectCompliedAfter\": \"Yes\",\r\n            \"pointsOfContact\": \"|91681.24999999998,175,110|78343.16666666665,118,94|90845.25000000001,143,109|119175.83333333333,110,143\",\r\n            \"nonEditable\": false,\r\n            \"deploymentFrequency\": 1,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"ecdOnlyDisplayed\": \"\",\r\n            \"suspectIncapacitated\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"ecdPointOfContact\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.3797233\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.3793869\"\r\n        }\r\n    ],\r\n    \"firearms\": [],\r\n    \"hands\": [],\r\n    \"inmates\": [\r\n        {\r\n            \"inmateId\": 9077,\r\n            \"incidentId\": 16378,\r\n            \"suspectName\": \"\",\r\n            \"inmateNumber\": \"GDTE-907-GHY6\",\r\n            \"inmateDetentionFacility\": \"State Penitentiary\",\r\n            \"officerName\": \"\",\r\n            \"restraintsUsed\": \"\",\r\n            \"restraintsUsedOther\": \"\",\r\n            \"reasonForceWasApplied\": \"\",\r\n            \"reasonForceWasAppliedOther\": \"\",\r\n            \"restrainedHours\": \"\",\r\n            \"restrainedMinute\": \"\",\r\n            \"inmateHaveWeapon\": \"\",\r\n            \"cell\": \"\",\r\n            \"nonEditable\": false,\r\n            \"inmateDetentionClassification\": \"\",\r\n            \"suspectBookingNumber\": \"\",\r\n            \"jailViolations\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.3551259\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.355084\"\r\n        }\r\n    ],\r\n    \"k9s\": [\r\n        {\r\n            \"k9Id\": 10062,\r\n            \"incidentId\": 16378,\r\n            \"suspectName\": \"Robert Murray\",\r\n            \"officerName\": \"Ofc. Frank Ribere\",\r\n            \"k9name\": \"Kholby\",\r\n            \"k9breed\": \"German Shepherd\",\r\n            \"k9type\": \"Apprehension\",\r\n            \"k9typeOtherDescription\": \"\",\r\n            \"k9reasonDeployed\": \"Officer Protection\",\r\n            \"k9nnumberBites\": \"2\",\r\n            \"k9suspectCompliedAfter\": \"Yes\",\r\n            \"pointsOfContact\": \"|135015.75,189,162|112514.83333333333,178,135\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"k9OnlyDisplayed\": \"\",\r\n            \"k9Category\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"k9PointOfContactId\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.4323776\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.4323387\"\r\n        }\r\n    ],\r\n    \"munitions\": [],\r\n    \"narratives\": [\r\n        {\r\n            \"narrativeId\": 15210,\r\n            \"incidentId\": 16378,\r\n            \"narrative\": \"On 01-02-13, at 1158 hours, I was dispatched to 1945 Kings Rd. to assist another officer in reference to a theft in progress.  Upon arrival, I met with Brodrick Miller (complainant) who is the manager for the business.  The complainant stated a black female wearing a burgundy shirt, black pants with hair pulled back in a ponytail (suspect) stole a \\\"Buggy full of items\\\" from the store and attempted to flee in a vehicle.  The suspect got into a grey Honda Accord and tried to flee. Another black female who was with the suspect and sitting on the passenger side of the vehicle, saw what the suspect was doing and told the suspect \\\"You are not about to get me arrested with you!\\\". The black female began pushing the stolen items that the suspect had out of the vehicle while the suspect was trying to back out of the parking space. The complainant was standing in the doorway of the vehicle attempting to stop the suspect when she said to him \\\"I have a gun and I will shoot you\\\". While the vehicle was backing up, the door slightly made contact with the complainant.  The suspect stopped and exited the vehicle and began fleeing on foot southbound on Seminary St.  While running, the suspect lost her shoes and continued to run barefoot. \\r\\n\\r\\nI searched the area for the suspect and observed a barefoot, black female wearing a burgundy blouse, black pants with hair pulled back in a ponytail in the 1900 block of E. University Circle. When I exited my vehicle and started to approach the suspect, the suspect jumped a fence.  I directed the suspect to stop, but she refused and stated, \\\"What I did?\\\"  As I started to climb the fence, the suspect picked up a milk crate and lifted it up to use as a weapon against me. I drew and aimed my Electronic Control Device (ECD) at the suspect and ordered her to drop the milk crate.  The suspect still refused to comply.  I deployed my ECD towards the suspect but the prongs deflected off of the milk crate the suspect was holding and did not make contact with the suspect. The suspect then ran south through the yards towards S. University Circle.  The suspect was taken into custody without further incident.\\r\\n\\r\\nThe suspect was positively identified by the complainant.  My supervisor Sgt. Selzer (ID #7525) responded to the scene.\\r\\n\\r\\nThe suspect was charged with Burglary, Petit Theft, resisting Retail merchant and Resisting Officer.\\r\\n\",\r\n            \"nonEditable\": false,\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.4515066\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.4515062\"\r\n        }\r\n    ],\r\n    \"officers\": [\r\n        {\r\n            \"incidentOfficerId\": 16353,\r\n            \"incidentId\": 16378,\r\n            \"officerId\": \"1078\",\r\n            \"firstName\": \"Ofc. Frank Ribere\",\r\n            \"middleName\": \"\",\r\n            \"lastName\": \"\",\r\n            \"officerPrimary\": \"Yes\",\r\n            \"officerOnDuty\": \"Yes\",\r\n            \"officerPermanentAssignment\": \"Patrol\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"address\": \"100 South Hughey Avenue\",\r\n            \"city\": \"Orlando (city limits)\",\r\n            \"state\": \"FL\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"07/12/1987\",\r\n            \"age\": \"\",\r\n            \"height\": \"5ft8-5ft11in\",\r\n            \"weight\": \"150-199\",\r\n            \"build\": \"Thin\",\r\n            \"officerYearsWithAgency\": \"4-6 years\",\r\n            \"officerTotalYearsInLawEnforcement\": \"4-6 years\",\r\n            \"education\": \"16\",\r\n            \"officerInjured\": \"Yes\",\r\n            \"officerInjuryType\": \"Non-Incapacitating\",\r\n            \"officerInjurySeverity\": \"Non-Incapacitating\",\r\n            \"officerHowInjuryOccurred\": \"Suspect’s Actions\",\r\n            \"officerMedicalTreatmentReceived\": \"Yes\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"Paramedics\",\r\n            \"officerTransported\": \"No\",\r\n            \"officerTransportedBy\": \"\",\r\n            \"officerTransportedTo\": \"\",\r\n            \"officerTransportedTime\": \"00:00:00\",\r\n            \"officerInjuryPhotos\": \"Yes\",\r\n            \"officerInjuryPhotosTakenBy\": \"Other Officer\",\r\n            \"pointsOfContact\": \"|125842.41666666667,109,151|110009.5,114,132\",\r\n            \"cit\": \"\",\r\n            \"nonEditable\": false,\r\n            \"deescalation\": \"\",\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"didOfficerUseForce\": \"\",\r\n            \"employmentFullTime\": \"\",\r\n            \"dontKnowAge\": \"\",\r\n            \"dontKnowHeight\": \"\",\r\n            \"dontKnowWeight\": \"\",\r\n            \"dontKnowYearsOfService\": \"\",\r\n            \"leoInjuredNIBRSIncidentNumber\": \"\",\r\n            \"dontKnowLEOInjuredNIBRSIncidentNumber\": \"\",\r\n            \"officerMedicalTreatmentReceivedByDropdown\": \"\",\r\n            \"officerTransportedByDropDown\": \"\",\r\n            \"officerTransportedToDropDown\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"officerPointsOfContact\": [],\r\n            \"victimRelationshipsToOfficer\": [],\r\n            \"witnessRelationshipsToOfficer\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.2988829\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.2988825\"\r\n        },\r\n        {\r\n            \"incidentOfficerId\": 16354,\r\n            \"incidentId\": 16378,\r\n            \"officerId\": \"1079\",\r\n            \"firstName\": \"Ofc. Michael Gross\",\r\n            \"middleName\": \"\",\r\n            \"lastName\": \"\",\r\n            \"officerPrimary\": \"No\",\r\n            \"officerOnDuty\": \"Yes\",\r\n            \"officerPermanentAssignment\": \"Patrol\",\r\n            \"officerInUniform\": \"Yes\",\r\n            \"address\": \"100 South Hughey Avenue \",\r\n            \"city\": \"Orlando (city limits)\",\r\n            \"state\": \"FL\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"05/13/1978\",\r\n            \"age\": \"\",\r\n            \"height\": \"6ft or more\",\r\n            \"weight\": \"200-249\",\r\n            \"build\": \"Medium/Average\",\r\n            \"officerYearsWithAgency\": \"10-13 years\",\r\n            \"officerTotalYearsInLawEnforcement\": \"10-13 years\",\r\n            \"education\": \"12\",\r\n            \"officerInjured\": \"No\",\r\n            \"officerInjuryType\": \"\",\r\n            \"officerInjurySeverity\": \"\",\r\n            \"officerHowInjuryOccurred\": \"\",\r\n            \"officerMedicalTreatmentReceived\": \"\",\r\n            \"officerMedicalTreatmentReceivedBy\": \"\",\r\n            \"officerTransported\": \"\",\r\n            \"officerTransportedBy\": \"\",\r\n            \"officerTransportedTo\": \"\",\r\n            \"officerTransportedTime\": \"00:00:00\",\r\n            \"officerInjuryPhotos\": \"\",\r\n            \"officerInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"cit\": \"\",\r\n            \"nonEditable\": false,\r\n            \"deescalation\": \"\",\r\n            \"bodyWornCamera\": \"\",\r\n            \"activated\": \"\",\r\n            \"didOfficerUseForce\": \"\",\r\n            \"employmentFullTime\": \"\",\r\n            \"dontKnowAge\": \"\",\r\n            \"dontKnowHeight\": \"\",\r\n            \"dontKnowWeight\": \"\",\r\n            \"dontKnowYearsOfService\": \"\",\r\n            \"leoInjuredNIBRSIncidentNumber\": \"\",\r\n            \"dontKnowLEOInjuredNIBRSIncidentNumber\": \"\",\r\n            \"officerMedicalTreatmentReceivedByDropdown\": \"\",\r\n            \"officerTransportedByDropDown\": \"\",\r\n            \"officerTransportedToDropDown\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"officerPointsOfContact\": [],\r\n            \"victimRelationshipsToOfficer\": [],\r\n            \"witnessRelationshipsToOfficer\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.2989121\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.298912\"\r\n        }\r\n    ],\r\n    \"properties\": [],\r\n    \"stopSticks\": [\r\n        {\r\n            \"stopStickId\": 8056,\r\n            \"incidentId\": 16378,\r\n            \"officerName\": \"Ofc. Michael Gross\",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"Ford\",\r\n            \"vehicleModel\": \"Explorer XLT\",\r\n            \"vehicleYear\": \"2010\",\r\n            \"vehicleTag\": \"960-GT6\",\r\n            \"stopstickOfficerTrainedInTechnique\": \"Yes\",\r\n            \"stopstickInvolvedStopSticksUsed\": \"No\",\r\n            \"stopstickPitManeuverUsed\": \"No\",\r\n            \"stopstickBoxinTechniqueUsed\": \"Yes\",\r\n            \"interventionUsed\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"stopstickOnlyDisplayed\": \"\",\r\n            \"state\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"stopStickInfo\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.4512311\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.4511874\"\r\n        }\r\n    ],\r\n    \"suspects\": [\r\n        {\r\n            \"suspectId\": 15279,\r\n            \"incidentId\": 16378,\r\n            \"firstName\": \"Robert Murray\",\r\n            \"middleName\": \"\",\r\n            \"lastName\": \"\",\r\n            \"suspectAddress\": \"2395 James Rd.\",\r\n            \"city\": \"Winter Park\",\r\n            \"state\": \"FL\",\r\n            \"race\": \"Hispanic/Latino\",\r\n            \"gender\": \"Male\",\r\n            \"suspectDateOfBirth\": \"06/18/1980\",\r\n            \"age\": \"\",\r\n            \"height\": \"5ft8-5ft11in\",\r\n            \"weight\": \"150-199\",\r\n            \"build\": \"Medium/Average\",\r\n            \"education\": \"12\",\r\n            \"suspectActionsPresence\": false,\r\n            \"suspectActionsPassiveResistance\": false,\r\n            \"suspectActionsVerbalResistance\": false,\r\n            \"suspectActionsActiveAggression\": false,\r\n            \"suspectActionsAggressivePhysical\": true,\r\n            \"suspectActionsAggravatedPhysical\": false,\r\n            \"suspectActionsOther\": false,\r\n            \"suspectOfficersResponsePresence\": false,\r\n            \"suspectOfficersResponsePassiveResistance\": true,\r\n            \"suspectOfficersResponseVerbalResistance\": false,\r\n            \"suspectOfficersResponseAggression\": false,\r\n            \"suspectOfficersResponseAggravatedPhysical\": false,\r\n            \"suspectOfficersResponseOther\": false,\r\n            \"suspectOfficersResponseLevel7\": null,\r\n            \"suspectOfficersResponseLevel8\": null,\r\n            \"suspectWeaponUsedHands\": true,\r\n            \"suspectWeaponUsedBluntObject\": false,\r\n            \"suspectWeaponUsedEdgedObject\": true,\r\n            \"suspectWeaponUsedFirearm\": false,\r\n            \"suspectWeaponUsedOther\": false,\r\n            \"suspectArrested\": \"Yes\",\r\n            \"suspectWhyNotArrested\": \"\",\r\n            \"suspectArrestCharge\": \"Refusing Arrest - Officer Assualt\",\r\n            \"suspectArrestedForFelony\": \"Yes\",\r\n            \"suspectArresteeDeliveredTo\": \"\",\r\n            \"suspectJailNumber\": \"4569-BE\",\r\n            \"suspectConditionPriorMellow\": false,\r\n            \"suspectConditionPriorDepressed\": false,\r\n            \"suspectConditionPriorAngry\": true,\r\n            \"suspectConditionPriorDisoriented\": false,\r\n            \"suspectConditionPriorDrugs\": false,\r\n            \"suspectConditionPriorAlcohol\": false,\r\n            \"suspectConditionPriorFighting\": true,\r\n            \"suspectConditionPriorOther\": false,\r\n            \"suspectConditionPostMellow\": false,\r\n            \"suspectConditionPostDepressed\": false,\r\n            \"suspectConditionPostAngry\": true,\r\n            \"suspectConditionPostDisoriented\": false,\r\n            \"suspectConditionPostDrugs\": false,\r\n            \"suspectConditionPostAlcohol\": false,\r\n            \"suspectConditionPostFighting\": false,\r\n            \"suspectConditionPostOther\": false,\r\n            \"suspectConditionPriorComment\": \"\",\r\n            \"suspectConditionPostComment\": \"\",\r\n            \"suspectInjured\": \"No\",\r\n            \"suspectInjuryType\": \"\",\r\n            \"suspectInjurySeverity\": \"\",\r\n            \"howInjuryOccurredToSuspect\": \"\",\r\n            \"medicalTreatmentOfSuspect\": \"\",\r\n            \"medicalTreatmentOfSuspectBy\": \"\",\r\n            \"suspectTransported\": \"\",\r\n            \"suspectTransportedBy\": \"\",\r\n            \"suspectTransportedTo\": \"\",\r\n            \"suspectTransportedTime\": \"00:00:00\",\r\n            \"suspectInjuryPhotos\": \"\",\r\n            \"suspectInjuryPhotosTakenBy\": \"\",\r\n            \"pointsOfContact\": \"\",\r\n            \"suspectExhibitsSignsofExcitedDelirium\": \"\",\r\n            \"deliriumSignsDisplayed\": \"\",\r\n            \"suspectShowedSignsofMentalIllness\": \"\",\r\n            \"showedSignsMentalIllness\": \"\",\r\n            \"showedSignsMentalIllnessothers\": \"\",\r\n            \"rank1\": null,\r\n            \"rank2\": null,\r\n            \"rank3\": null,\r\n            \"rank4\": null,\r\n            \"rank5\": null,\r\n            \"rank6\": null,\r\n            \"rank7\": null,\r\n            \"rank8\": null,\r\n            \"rank9\": null,\r\n            \"rank10\": null,\r\n            \"rank11\": null,\r\n            \"rank12\": null,\r\n            \"rank13\": null,\r\n            \"rank14\": null,\r\n            \"rank15\": null,\r\n            \"comments\": \"\",\r\n            \"nonEditable\": false,\r\n            \"arrestDate\": \"\",\r\n            \"arrestTime\": null,\r\n            \"suspectForceCategory\": \"\",\r\n            \"suspectResistedType\": \"\",\r\n            \"suspectThreatPerson\": \"\",\r\n            \"estimatedAgeRange\": \"\",\r\n            \"dontKnowAge\": \"\",\r\n            \"knownImpairment\": \"\",\r\n            \"knownImpairmentType\": \"\",\r\n            \"suspectResisted\": \"\",\r\n            \"suspectArmed\": \"\",\r\n            \"dontKnowCharges\": \"\",\r\n            \"ethnicity\": \"\",\r\n            \"suspectTransportedByDropDown\": \"\",\r\n            \"suspectTransportedToDropDown\": \"\",\r\n            \"threatFactors\": \"\",\r\n            \"deEscalation\": \"\",\r\n            \"suspectWeaponUsedOption6\": null,\r\n            \"suspectWeaponUsedOption7\": null,\r\n            \"suspectWeaponUsedOption8\": null,\r\n            \"suspectWeaponUsedOption9\": null,\r\n            \"suspectDisabilities\": \"\",\r\n            \"knowledgeofSuspectDisability\": \"\",\r\n            \"mobilityDevices\": \"\",\r\n            \"remoteInterpreterUsed\": \"\",\r\n            \"medicalTreatmentOfSuspectByDropDown\": \"\",\r\n            \"suspectCategory\": \"\",\r\n            \"suffix\": \"\",\r\n            \"genderIdentify\": \"\",\r\n            \"inmateNumber\": \"\",\r\n            \"custodyLocation\": \"\",\r\n            \"civilianDistance\": \"\",\r\n            \"civilianResistance\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"suspectPointsOfContact\": [],\r\n            \"victimsRelationshipToSuspects\": [],\r\n            \"witnessesRelationshipToSuspects\": [],\r\n            \"suspectChargeClassifications\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.2988337\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.2988333\"\r\n        }\r\n    ],\r\n    \"takedowns\": [\r\n        {\r\n            \"takedownId\": 10055,\r\n            \"incidentId\": 16378,\r\n            \"suspectName\": \"Robert Murray\",\r\n            \"officerName\": \"Ofc. Michael Gross\",\r\n            \"takedownTypeUsed\": \"Straight Arm Takedown\",\r\n            \"takedownSuspectCompliedAfter\": \"Yes\",\r\n            \"pointsOfContact\": \"\",\r\n            \"nonEditable\": false,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"takedownOnlyDisplayed\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"takedownPointsOfContact\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.4401986\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.4401617\"\r\n        }\r\n    ],\r\n    \"vehicles\": [\r\n        {\r\n            \"vehicleId\": 9076,\r\n            \"incidentId\": 16378,\r\n            \"driver\": \"Etta Houston (Victim)\",\r\n            \"owner\": \"Etta Houston (Victim)\",\r\n            \"passengers\": \"Josephine Paoleti (Witness)\",\r\n            \"vehicleType\": \"SUV\",\r\n            \"vehicleMake\": \"Ford\",\r\n            \"vehicleModel\": \"Explorer XLT\",\r\n            \"year\": \"2010\",\r\n            \"vehicleTag\": \"960-GT6\",\r\n            \"state\": \"FL\",\r\n            \"vehicleSpeedDuringIncident\": \"Stopped\",\r\n            \"nonEditable\": false,\r\n            \"vehicleDamage\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.3463902\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.3463533\"\r\n        },\r\n        {\r\n            \"vehicleId\": 9077,\r\n            \"incidentId\": 16378,\r\n            \"driver\": \"Robert Murray (Suspect)\",\r\n            \"owner\": \"Robert Murray (Suspect)\",\r\n            \"passengers\": \" \",\r\n            \"vehicleType\": \"Car\",\r\n            \"vehicleMake\": \"Nissan\",\r\n            \"vehicleModel\": \"Sentra\",\r\n            \"year\": \"2001\",\r\n            \"vehicleTag\": \"5H7-Y90\",\r\n            \"state\": \"FL\",\r\n            \"vehicleSpeedDuringIncident\": \"31-40 MPH\",\r\n            \"nonEditable\": false,\r\n            \"vehicleDamage\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.3464702\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.3464699\"\r\n        }\r\n    ],\r\n    \"victims\": [\r\n        {\r\n            \"victimId\": 8044,\r\n            \"incidentId\": 16378,\r\n            \"firstName\": \"Etta Houston\",\r\n            \"middleName\": \"\",\r\n            \"lastName\": \"\",\r\n            \"victimAddress\": \"845 St. Johns St.\",\r\n            \"city\": \"Altamonte Springs\",\r\n            \"state\": \"FL\",\r\n            \"victimEmail\": \"jim@here.com\",\r\n            \"victimPhone1\": \"4073219875\",\r\n            \"victimPhone2\": \"4076254125\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Female\",\r\n            \"victimDateOfBirth\": \"08/05/1982\",\r\n            \"age\": \"\",\r\n            \"suspectName1\": \"\",\r\n            \"victimRelationshipToSuspect1\": \"\",\r\n            \"officerName1\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer1\": \"\",\r\n            \"suspectName2\": \"\",\r\n            \"victimRelationshipToSuspect2\": \"\",\r\n            \"officerName2\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer2\": \"\",\r\n            \"suspectName3\": \"\",\r\n            \"victimRelationshipToSuspect3\": \"\",\r\n            \"officerName3\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer3\": \"\",\r\n            \"suspectName4\": \"\",\r\n            \"victimRelationshipToSuspect4\": \"\",\r\n            \"officerName4\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer4\": \"\",\r\n            \"suspectName5\": \"\",\r\n            \"victimRelationshipToSuspect5\": \"\",\r\n            \"officerName5\": \"\",\r\n            \"victimRelationshipToPrimaryOfficer5\": \"\",\r\n            \"victimInjured\": \"Yes\",\r\n            \"victimInjuryType\": \"Laceration\",\r\n            \"victimInjurySeverity\": \"Non-Incapacitating\",\r\n            \"victimHowInjuryToVictimOccurred\": \"Suspect's Actions\",\r\n            \"victimMedicalTreatmentOfVictim\": \"Yes\",\r\n            \"victimMedicalTreatmentOfVictimBy\": \"Paramedics\",\r\n            \"victimTransported\": \"Yes\",\r\n            \"victimTransportedBy\": \"Ambulance\",\r\n            \"victimTransportedTo\": \"Hospital\",\r\n            \"victimTransportedTime\": \"23:05:00\",\r\n            \"victimInjuryPhotos\": \"Yes\",\r\n            \"victimInjuryPhotosTakenBy\": \"Ofc Michael Gross\",\r\n            \"pointsOfContact\": \"|115846.41666666667,157,139|123344.41666666667,133,148\",\r\n            \"nonEditable\": false,\r\n            \"officerRole\": \"\",\r\n            \"outsideAgency\": \"\",\r\n            \"victimMedicalTreatmentOfVictimByDropdown\": \"\",\r\n            \"victimTransportedByDropDown\": \"\",\r\n            \"victimTransportedToDropDown\": \"\",\r\n            \"victimInUniform\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"victimPointsOfContact\": [],\r\n            \"victimRelationshipsToOfficer\": [],\r\n            \"victimRelationshipsToSuspect\": [],\r\n            \"witnessRelationshipsToVictim\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.3207857\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.3207571\"\r\n        }\r\n    ],\r\n    \"weapons\": [\r\n        {\r\n            \"weaponId\": 13063,\r\n            \"incidentId\": 16378,\r\n            \"suspectName\": \"Robert Murray\",\r\n            \"officerName\": \"Ofc. Michael Gross\",\r\n            \"weaponTypeUsed\": \"Expandable Baton\",\r\n            \"weaponTotalNumberOfStrikes\": \"2\",\r\n            \"weaponBodyPartMadeContactWith1\": \"Upper leg\",\r\n            \"weaponDurationOfImpactCountInSeconds1\": \"2\",\r\n            \"weaponBodyPartMadeContactWith2\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds2\": \"\",\r\n            \"weaponBodyPartMadeContactWith3\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds3\": \"\",\r\n            \"weaponBodyPartMadeContactWith4\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds4\": \"\",\r\n            \"weaponBodyPartMadeContactWith5\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds5\": \"\",\r\n            \"weaponBodyPartMadeContactWith6\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds6\": \"\",\r\n            \"weaponBodyPartMadeContactWith7\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds7\": \"\",\r\n            \"weaponBodyPartMadeContactWith8\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds8\": \"\",\r\n            \"weaponBodyPartMadeContactWith9\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds9\": \"\",\r\n            \"weaponBodyPartMadeContactWith10\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds10\": \"\",\r\n            \"weaponBodyPartMadeContactWith11\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds11\": \"\",\r\n            \"weaponBodyPartMadeContactWith12\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds12\": \"\",\r\n            \"weaponBodyPartMadeContactWith13\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds13\": \"\",\r\n            \"weaponBodyPartMadeContactWith14\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds14\": \"\",\r\n            \"weaponBodyPartMadeContactWith15\": \"\",\r\n            \"weaponDurationOfImpactCountInSeconds15\": \"\",\r\n            \"weaponSuspectCompliedAfter\": \"Yes\",\r\n            \"pointsOfContact\": \"|179191.1666666667,294,215|178355.49999999997,266,214\",\r\n            \"nonEditable\": false,\r\n            \"impactContact\": 1,\r\n            \"injured\": \"\",\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"describeInjury\": \"\",\r\n            \"injuryNotes\": \"\",\r\n            \"weaponOnlyDisplayed\": \"\",\r\n            \"bodyPartsAimedFor\": \"\",\r\n            \"primaryReferenceId\": null,\r\n            \"weaponPointOfContact\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.4215163\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.4214811\"\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 8058,\r\n            \"incidentId\": 16378,\r\n            \"firstName\": \"Josephine Paoleti\",\r\n            \"middleName\": \"\",\r\n            \"lastName\": \"\",\r\n            \"witnessAddress\": \"6234 Runners Rd.\",\r\n            \"city\": \"Orlando\",\r\n            \"state\": \"FL\",\r\n            \"witnessEmail\": \"jpaoleti@yahoo.com\",\r\n            \"witnessPhone1\": \"4076985216\",\r\n            \"witnessPhone2\": \"4072168451\",\r\n            \"race\": \"Asian\",\r\n            \"gender\": \"Female\",\r\n            \"witnessDateOfBirth\": \"02/17/1990\",\r\n            \"suspectName1\": \"\",\r\n            \"witnessRelationshipToSuspect1\": \"\",\r\n            \"officerName1\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer1\": \"\",\r\n            \"victimName1\": \"\",\r\n            \"witnessRelationshipToVictim1\": \"\",\r\n            \"suspectName2\": \"\",\r\n            \"witnessRelationshipToSuspect2\": \"\",\r\n            \"officerName2\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer2\": \"\",\r\n            \"victimName2\": \"\",\r\n            \"witnessRelationshipToVictim2\": \"\",\r\n            \"suspectName3\": \"\",\r\n            \"witnessRelationshipToSuspect3\": \"\",\r\n            \"officerName3\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer3\": \"\",\r\n            \"victimName3\": \"\",\r\n            \"witnessRelationshipToVictim3\": \"\",\r\n            \"suspectName4\": \"\",\r\n            \"witnessRelationshipToSuspect4\": \"\",\r\n            \"officerName4\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer4\": \"\",\r\n            \"victimName4\": \"\",\r\n            \"witnessRelationshipToVictim4\": \"\",\r\n            \"suspectName5\": \"\",\r\n            \"witnessRelationshipToSuspect5\": \"\",\r\n            \"officerName5\": \"\",\r\n            \"witnessRelationshipToPrimaryOfficer5\": \"\",\r\n            \"victimName5\": \"\",\r\n            \"witnessRelationshipToVictim5\": \"\",\r\n            \"nonEditable\": false,\r\n            \"primaryReferenceId\": null,\r\n            \"witnessRelationshipsToOfficer\": [],\r\n            \"witnessRelationshipsToSuspect\": [],\r\n            \"witnessRelationshipsToVictim\": [],\r\n            \"modifiedDate\": \"2022-03-21T13:54:44.3391035\",\r\n            \"createdDate\": \"2022-03-21T13:54:44.3390687\"\r\n        }\r\n    ],\r\n    \"reviews\": [],\r\n    \"reviewFormValues\": [],\r\n    \"modifiedDate\": \"2022-03-21T13:54:44.2986975\",\r\n    \"createdDate\": \"2022-03-21T13:54:44.298697\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/facts"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcZmFjdHM=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 17:56:33 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Instance not found for the supplied id!\"\n}"}],"_postman_id":"6faeb4d4-ef8e-4e44-9436-4ecaf28525a3"}],"id":"716d409b-7c02-4fe0-bcf3-ebac192c84e8","description":"<p>Through the LEFTA Systems FACTS API, you can interact with SHIELD Portal's Use of Force application to interact with use of force incidents and its related entities.</p>\n","event":[{"listen":"prerequest","script":{"id":"fa4d9c67-2763-4f36-a512-0f79d1d4a4c3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"81e81ad8-7b12-46d9-a0fe-852980bc36b9","type":"text/javascript","exec":[""]}}],"_postman_id":"716d409b-7c02-4fe0-bcf3-ebac192c84e8","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}}},{"name":"IA : Internal Affairs","item":[{"name":"Get a List of Cases","id":"3964663b-f4ee-402a-8aac-d71295d6b83b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/internalaffairs?start_date=10-20-2012&end_date=03-15-2022","description":"<p>Get a list of internal affairs cases based of the supplied filter criteria. None of the child entities will be populated on search results.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","internalaffairs"],"host":["{{BaseUri}}"],"query":[{"description":{"content":"<p>Filter results by dateOfComplaint to include only records after this date.</p>\n","type":"text/plain"},"key":"start_date","value":"10-20-2012"},{"description":{"content":"<p>Filter results by dateOfComplaint to include only records before this date.</p>\n","type":"text/plain"},"key":"end_date","value":"03-15-2022"}],"variable":[]}},"response":[{"id":"b48b9a0f-bf14-4502-8873-73dee86e3532","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/internalaffairs?start_date=10-20-2012&end_date=03-15-2022","host":["{{BaseUri}}"],"path":["api","internalaffairs"],"query":[{"key":"start_date","value":"10-20-2012","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2022","description":"Filter results to include only records before this date."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcaW50ZXJuYWxhZmZhaXJz?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 11:47:59 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"caseFileId\": 7,\n        \"iacaseNumber\": \"12242019\",\n        \"dateAssigned\": null,\n        \"complaint\": \"Policy Violation\",\n        \"status\": \"Completed\",\n        \"dateCompleted\": \"2020-01-07T00:00:00\",\n        \"purgeDate\": null,\n        \"complaints\": [],\n        \"documents\": [],\n        \"principals\": [],\n        \"users\": [],\n        \"witnesses\": [],\n        \"deleteComments\": \"\",\n        \"chiefInvestigator\": \" Smith, Frank. Smith, Greg\",\n        \"iaSupervisor\": \" Smith, Jane\",\n        \"creator\": \"Smith, Frank\",\n        \"inHouse\": false,\n        \"creatorId\": 4,\n        \"dateOfComplaint\": \"2019-12-18T00:00:00\",\n        \"principal\": \" Smith, David\",\n        \"isCaseCreator\": false,\n        \"caseType\": \"\",\n        \"relatedIncidentNumber\": \"\",\n        \"keywords\": \"\",\n        \"parentIncidentCaseId\": null,\n        \"trackingId\": null,\n        \"address\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"summary\": \"\",\n        \"incidentType\": \"\",\n        \"division\": \"\",\n        \"unit\": \"\",\n        \"timeOfComplaint\": null,\n        \"occurrenceLocation\": \"\",\n        \"modifiedDate\": \"0001-01-01T00:00:00\",\n        \"createdDate\": \"0001-01-01T00:00:00\",\n        \"createdBy\": \"\",\n        \"modifiedBy\": \"\",\n        \"deleted\": false\n    },\n    {\n        \"caseFileId\": 14,\n        \"iacaseNumber\": \"05202019\",\n        \"dateAssigned\": null,\n        \"complaint\": \"Insufficient Probable Cause\",\n        \"status\": \"Completed\",\n        \"dateCompleted\": \"2019-09-17T00:00:00\",\n        \"purgeDate\": null,\n        \"complaints\": [],\n        \"documents\": [],\n        \"principals\": [],\n        \"users\": [],\n        \"witnesses\": [],\n        \"deleteComments\": \"\",\n        \"chiefInvestigator\": \" Smith, Frank\",\n        \"iaSupervisor\": \" Smith, Jane\",\n        \"creator\": \"Smith, Frank\",\n        \"inHouse\": false,\n        \"creatorId\": 4,\n        \"dateOfComplaint\": \"2019-05-08T00:00:00\",\n        \"principal\": \" Smith, David\",\n        \"isCaseCreator\": false,\n        \"caseType\": \"\",\n        \"relatedIncidentNumber\": \"\",\n        \"keywords\": \"\",\n        \"parentIncidentCaseId\": null,\n        \"trackingId\": null,\n        \"address\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"summary\": \"\",\n        \"incidentType\": \"\",\n        \"division\": \"\",\n        \"unit\": \"\",\n        \"timeOfComplaint\": null,\n        \"occurrenceLocation\": \"\",\n        \"modifiedDate\": \"0001-01-01T00:00:00\",\n        \"createdDate\": \"0001-01-01T00:00:00\",\n        \"createdBy\": \"\",\n        \"modifiedBy\": \"\",\n        \"deleted\": false\n    }\n]"},{"id":"6fc56b1d-9bcd-47af-bc0c-cd25818fba51","name":"Invalid End Date","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"{{BaseUri}}/api/internalaffairs?start_date=10-20-2005&end_date=03-15-2025","host":["{{BaseUri}}"],"path":["api","internalaffairs"],"query":[{"key":"start_date","value":"10-20-2005","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2025","description":"Filter results to include only records before this date."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 18:58:47 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"End date cannot be greater than the current date!\"\n}"},{"id":"2249eaa8-61cb-45d4-a2ce-dd1479b6c493","name":"Invalid Start Date","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/internalaffairs?start_date=10-20-2001&end_date=03-15-2022","host":["{{BaseUri}}"],"path":["api","internalaffairs"],"query":[{"key":"start_date","value":"10-20-2001","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2022","description":"Filter results to include only records before this date."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 18:59:58 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"Start date cannot be more than 20 years prior to the current date!\"\n}"}],"_postman_id":"3964663b-f4ee-402a-8aac-d71295d6b83b"},{"name":"Get Case","id":"f7250a0c-7d04-4f50-9099-09a1ce85cb1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/internalaffairs/:iacaseNumber","description":"<p>Get a detailed internal affairs case with relationships based of the supplied Id. An error will be thrown if the supplied Id does not match any existing records. It is recommended you get the Id from the search API method.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","internalaffairs",":iacaseNumber"],"host":["{{BaseUri}}"],"query":[],"variable":[{"description":{"content":"<p>The record Id of the desired Incident.</p>\n","type":"text/plain"},"type":"any","value":"2034","key":"iacaseNumber"}]}},"response":[{"id":"1243461a-88e2-4a15-891b-c7728dece65f","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/internalaffairs/:incidentId","host":["{{BaseUri}}"],"path":["api","internalaffairs",":incidentId"],"variable":[{"key":"incidentId","value":"2034","description":"The record Id of the desired Incident."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcaW50ZXJuYWxhZmZhaXJzXDIwMzQ=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 11:57:41 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"caseFileId\": 2034,\n    \"iacaseNumber\": \"CA-2020-004\",\n    \"dateAssigned\": \"2020-02-13T00:00:00\",\n    \"complaint\": \"Excessive Force\",\n    \"status\": \"Editing\",\n    \"dateCompleted\": \"2020-04-25T00:00:00\",\n    \"purgeDate\": \"2030-04-25T00:00:00\",\n    \"complaints\": [\n        {\n            \"complainantId\": 2035,\n            \"caseFileId\": 2034,\n            \"userId\": 0,\n            \"firstName\": \"James\",\n            \"middleName\": \"P\",\n            \"lastName\": \"Smith\",\n            \"idnumber\": \"\",\n            \"email\": \"jsmith@yahoo.com\",\n            \"address\": \"8753 Nieto Ave\",\n            \"city\": \"Los Angeles\",\n            \"state\": \"CA\",\n            \"zip\": \"90897\",\n            \"telephone1\": \"312-876-9524\",\n            \"telephone2\": \"N/A\",\n            \"race\": \"White\",\n            \"gender\": \"Male\",\n            \"complainantType\": \"Citizen\",\n            \"complainantSource\": \"In Person\",\n            \"additionalNotes\": \"None\",\n            \"modifiedDate\": \"2020-04-25T17:51:10.9335436\",\n            \"createdDate\": \"2020-04-14T16:11:33.368807\",\n            \"createdBy\": \"bsadmin@leftasystems.org\",\n            \"modifiedBy\": \"bsadmin@leftasystems.org\",\n            \"deleted\": false\n        }\n    ],\n    \"documents\": [],\n    \"principals\": [],\n    \"users\": [],\n    \"witnesses\": [],\n    \"deleteComments\": \"\",\n    \"chiefInvestigator\": \"\",\n    \"iaSupervisor\": \"\",\n    \"creator\": \"Smith, Brian\",\n    \"inHouse\": false,\n    \"creatorId\": 18,\n    \"dateOfComplaint\": \"2020-02-13T00:00:00\",\n    \"principal\": \"\",\n    \"isCaseCreator\": false,\n    \"caseType\": \"IA\",\n    \"relatedIncidentNumber\": \"# 798652\",\n    \"keywords\": \"Use of Force\",\n    \"parentIncidentCaseId\": null,\n    \"trackingId\": 4,\n    \"address\": \"9875 Commonwealth Avenue\",\n    \"city\": \"Los Angeles\",\n    \"state\": \"CA\",\n    \"zip\": \"90808\",\n    \"summary\": \"Internal Affairs received a complaint about Officer Alaba using Excessive Force during a recent arrest. \",\n    \"incidentType\": \"\",\n    \"division\": \"\",\n    \"unit\": \"\",\n    \"timeOfComplaint\": null,\n    \"occurrenceLocation\": \"\",\n    \"modifiedDate\": \"2020-04-25T17:49:33.9943715\",\n    \"createdDate\": \"2020-04-14T16:11:33.368779\",\n    \"createdBy\": \"bsadmin@leftasystems.org\",\n    \"modifiedBy\": \"bsadmin@leftasystems.org\",\n    \"deleted\": false\n}"},{"id":"8cb8faff-1577-4797-aa09-640f5ec67a21","name":"Instance Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/internalaffairs/:incidentId","host":["{{BaseUri}}"],"path":["api","internalaffairs",":incidentId"],"variable":[{"key":"incidentId","value":"1","description":"The record Id of the desired Incident."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcaW50ZXJuYWxhZmZhaXJzXDE=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 11:55:36 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Instance not found for the supplied id!\"\n}"}],"_postman_id":"f7250a0c-7d04-4f50-9099-09a1ce85cb1e"},{"name":"Create Case","id":"280a83a9-00f5-4f12-b578-c147e8bec574","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"iacaseNumber\": \"MyCaseNumber-001\",\r\n    \"dateAssigned\": \"2020-02-13T00:00:00\",\r\n    \"complaint\": \"Excessive Force\",\r\n    \"status\": \"Editing\",\r\n    \"dateCompleted\": \"2020-04-25T00:00:00\",\r\n    \"purgeDate\": \"2030-04-25T00:00:00\",\r\n    \"complaints\": [\r\n        {\r\n            \"userId\": 0,\r\n            \"firstName\": \"James\",\r\n            \"middleName\": \"P\",\r\n            \"lastName\": \"Smith\",\r\n            \"idnumber\": \"\",\r\n            \"email\": \"jsmith@yahoo.com\",\r\n            \"address\": \"8753 Nieto Ave\",\r\n            \"city\": \"Los Angeles\",\r\n            \"state\": \"CA\",\r\n            \"zip\": \"90897\",\r\n            \"telephone1\": \"312-876-9524\",\r\n            \"telephone2\": \"N/A\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"complainantType\": \"Citizen\",\r\n            \"complainantSource\": \"In Person\",\r\n            \"additionalNotes\": \"None\",\r\n            \"modifiedDate\": \"2020-04-25T17:51:10.9335436\",\r\n            \"createdDate\": \"2020-04-14T16:11:33.368807\",\r\n            \"createdBy\": \"bsadmin@leftasystems.org\",\r\n            \"modifiedBy\": \"bsadmin@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"documents\": [],\r\n    \"principals\": [],\r\n    \"users\": [],\r\n    \"witnesses\": [],\r\n    \"deleteComments\": \"\",\r\n    \"chiefInvestigator\": \"\",\r\n    \"iaSupervisor\": \"\",\r\n    \"creator\": \"Smith, Brian\",\r\n    \"inHouse\": false,\r\n    \"creatorId\": 18,\r\n    \"dateOfComplaint\": \"2020-02-13T00:00:00\",\r\n    \"principal\": \"\",\r\n    \"isCaseCreator\": false,\r\n    \"caseType\": \"IA\",\r\n    \"relatedIncidentNumber\": \"# 798652\",\r\n    \"keywords\": \"Use of Force\",\r\n    \"parentIncidentCaseId\": null,\r\n    \"trackingId\": 4,\r\n    \"address\": \"9875 Commonwealth Avenue\",\r\n    \"city\": \"Los Angeles\",\r\n    \"state\": \"CA\",\r\n    \"zip\": \"90808\",\r\n    \"summary\": \"Internal Affairs received a complaint about Officer Alaba using Excessive Force during a recent arrest. \",\r\n    \"incidentType\": \"\",\r\n    \"division\": \"\",\r\n    \"unit\": \"\",\r\n    \"timeOfComplaint\": null,\r\n    \"occurrenceLocation\": \"\",\r\n    \"modifiedDate\": \"2020-04-25T17:49:33.9943715\",\r\n    \"createdDate\": \"2020-04-14T16:11:33.368779\",\r\n    \"createdBy\": \"bsadmin@leftasystems.org\",\r\n    \"modifiedBy\": \"bsadmin@leftasystems.org\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/internalaffairs","description":"<p>Create a new internal affairs case. An error will be thrown if the supplied Case Number already exists in the system. You must ensure that each case number is unique.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","internalaffairs"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"ccd1a809-6f14-4041-b8a0-a6e92a00f4bd","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"iacaseNumber\": \"MyCaseNumber-001\",\r\n    \"dateAssigned\": \"2020-02-13T00:00:00\",\r\n    \"complaint\": \"Excessive Force\",\r\n    \"status\": \"Editing\",\r\n    \"dateCompleted\": \"2020-04-25T00:00:00\",\r\n    \"purgeDate\": \"2030-04-25T00:00:00\",\r\n    \"complaints\": [\r\n        {\r\n            \"userId\": 0,\r\n            \"firstName\": \"James\",\r\n            \"middleName\": \"P\",\r\n            \"lastName\": \"Smith\",\r\n            \"idnumber\": \"\",\r\n            \"email\": \"jsmith@yahoo.com\",\r\n            \"address\": \"8753 Nieto Ave\",\r\n            \"city\": \"Los Angeles\",\r\n            \"state\": \"CA\",\r\n            \"zip\": \"90897\",\r\n            \"telephone1\": \"312-876-9524\",\r\n            \"telephone2\": \"N/A\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"complainantType\": \"Citizen\",\r\n            \"complainantSource\": \"In Person\",\r\n            \"additionalNotes\": \"None\",\r\n            \"modifiedDate\": \"2020-04-25T17:51:10.9335436\",\r\n            \"createdDate\": \"2020-04-14T16:11:33.368807\",\r\n            \"createdBy\": \"bsadmin@leftasystems.org\",\r\n            \"modifiedBy\": \"bsadmin@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"documents\": [],\r\n    \"principals\": [],\r\n    \"users\": [],\r\n    \"witnesses\": [],\r\n    \"deleteComments\": \"\",\r\n    \"chiefInvestigator\": \"\",\r\n    \"iaSupervisor\": \"\",\r\n    \"creator\": \"Smith, Brian\",\r\n    \"inHouse\": false,\r\n    \"creatorId\": 18,\r\n    \"dateOfComplaint\": \"2020-02-13T00:00:00\",\r\n    \"principal\": \"\",\r\n    \"isCaseCreator\": false,\r\n    \"caseType\": \"IA\",\r\n    \"relatedIncidentNumber\": \"# 798652\",\r\n    \"keywords\": \"Use of Force\",\r\n    \"parentIncidentCaseId\": null,\r\n    \"trackingId\": 4,\r\n    \"address\": \"9875 Commonwealth Avenue\",\r\n    \"city\": \"Los Angeles\",\r\n    \"state\": \"CA\",\r\n    \"zip\": \"90808\",\r\n    \"summary\": \"Internal Affairs received a complaint about Officer Alaba using Excessive Force during a recent arrest. \",\r\n    \"incidentType\": \"\",\r\n    \"division\": \"\",\r\n    \"unit\": \"\",\r\n    \"timeOfComplaint\": null,\r\n    \"occurrenceLocation\": \"\",\r\n    \"modifiedDate\": \"2020-04-25T17:49:33.9943715\",\r\n    \"createdDate\": \"2020-04-14T16:11:33.368779\",\r\n    \"createdBy\": \"bsadmin@leftasystems.org\",\r\n    \"modifiedBy\": \"bsadmin@leftasystems.org\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/internalaffairs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcaW50ZXJuYWxhZmZhaXJz?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 12:14:15 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"iacaseNumber\": \"MyCaseNumber-001\",\n    \"dateAssigned\": \"2020-02-13T00:00:00\",\n    \"complaint\": \"Excessive Force\",\n    \"status\": \"Editing\",\n    \"dateCompleted\": \"2020-04-25T00:00:00\",\n    \"purgeDate\": \"2030-04-25T00:00:00\",\n    \"complaints\": [\n        {\n            \"userId\": 0,\n            \"firstName\": \"James\",\n            \"middleName\": \"P\",\n            \"lastName\": \"Smith\",\n            \"idnumber\": \"\",\n            \"email\": \"jsmith@yahoo.com\",\n            \"address\": \"8753 Nieto Ave\",\n            \"city\": \"Los Angeles\",\n            \"state\": \"CA\",\n            \"zip\": \"90897\",\n            \"telephone1\": \"312-876-9524\",\n            \"telephone2\": \"N/A\",\n            \"race\": \"White\",\n            \"gender\": \"Male\",\n            \"complainantType\": \"Citizen\",\n            \"complainantSource\": \"In Person\",\n            \"additionalNotes\": \"None\",\n            \"modifiedDate\": \"2020-04-25T17:51:10.9335436\",\n            \"createdDate\": \"2020-04-14T16:11:33.368807\",\n            \"createdBy\": \"bsadmin@leftasystems.org\",\n            \"modifiedBy\": \"bsadmin@leftasystems.org\",\n            \"deleted\": false\n        }\n    ],\n    \"documents\": [],\n    \"principals\": [],\n    \"users\": [],\n    \"witnesses\": [],\n    \"deleteComments\": \"\",\n    \"chiefInvestigator\": \"\",\n    \"iaSupervisor\": \"\",\n    \"creator\": \"Smith, Brian\",\n    \"inHouse\": false,\n    \"creatorId\": 18,\n    \"dateOfComplaint\": \"2020-02-13T00:00:00\",\n    \"principal\": \"\",\n    \"isCaseCreator\": false,\n    \"caseType\": \"IA\",\n    \"relatedIncidentNumber\": \"# 798652\",\n    \"keywords\": \"Use of Force\",\n    \"parentIncidentCaseId\": null,\n    \"trackingId\": 4,\n    \"address\": \"9875 Commonwealth Avenue\",\n    \"city\": \"Los Angeles\",\n    \"state\": \"CA\",\n    \"zip\": \"90808\",\n    \"summary\": \"Internal Affairs received a complaint about Officer Alaba using Excessive Force during a recent arrest. \",\n    \"incidentType\": \"\",\n    \"division\": \"\",\n    \"unit\": \"\",\n    \"timeOfComplaint\": null,\n    \"occurrenceLocation\": \"\",\n    \"modifiedDate\": \"2020-04-25T17:49:33.9943715\",\n    \"createdDate\": \"2020-04-14T16:11:33.368779\",\n    \"createdBy\": \"bsadmin@leftasystems.org\",\n    \"modifiedBy\": \"bsadmin@leftasystems.org\",\n    \"deleted\": false\n}"},{"id":"cfa825b8-e575-41d6-93f9-9da5ec9dbe65","name":"Case File Aready Exists","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"iacaseNumber\": \"MyCaseNumber-001\",\r\n    \"dateAssigned\": \"2020-02-13T00:00:00\",\r\n    \"complaint\": \"Excessive Force\",\r\n    \"status\": \"Editing\",\r\n    \"dateCompleted\": \"2020-04-25T00:00:00\",\r\n    \"purgeDate\": \"2030-04-25T00:00:00\",\r\n    \"complaints\": [\r\n        {\r\n            \"userId\": 0,\r\n            \"firstName\": \"James\",\r\n            \"middleName\": \"P\",\r\n            \"lastName\": \"Smith\",\r\n            \"idnumber\": \"\",\r\n            \"email\": \"jsmith@yahoo.com\",\r\n            \"address\": \"8753 Nieto Ave\",\r\n            \"city\": \"Los Angeles\",\r\n            \"state\": \"CA\",\r\n            \"zip\": \"90897\",\r\n            \"telephone1\": \"312-876-9524\",\r\n            \"telephone2\": \"N/A\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"complainantType\": \"Citizen\",\r\n            \"complainantSource\": \"In Person\",\r\n            \"additionalNotes\": \"None\",\r\n            \"modifiedDate\": \"2020-04-25T17:51:10.9335436\",\r\n            \"createdDate\": \"2020-04-14T16:11:33.368807\",\r\n            \"createdBy\": \"bsadmin@leftasystems.org\",\r\n            \"modifiedBy\": \"bsadmin@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"documents\": [],\r\n    \"principals\": [],\r\n    \"users\": [],\r\n    \"witnesses\": [],\r\n    \"deleteComments\": \"\",\r\n    \"chiefInvestigator\": \"\",\r\n    \"iaSupervisor\": \"\",\r\n    \"creator\": \"Smith, Brian\",\r\n    \"inHouse\": false,\r\n    \"creatorId\": 18,\r\n    \"dateOfComplaint\": \"2020-02-13T00:00:00\",\r\n    \"principal\": \"\",\r\n    \"isCaseCreator\": false,\r\n    \"caseType\": \"IA\",\r\n    \"relatedIncidentNumber\": \"# 798652\",\r\n    \"keywords\": \"Use of Force\",\r\n    \"parentIncidentCaseId\": null,\r\n    \"trackingId\": 4,\r\n    \"address\": \"9875 Commonwealth Avenue\",\r\n    \"city\": \"Los Angeles\",\r\n    \"state\": \"CA\",\r\n    \"zip\": \"90808\",\r\n    \"summary\": \"Internal Affairs received a complaint about Officer Alaba using Excessive Force during a recent arrest. \",\r\n    \"incidentType\": \"\",\r\n    \"division\": \"\",\r\n    \"unit\": \"\",\r\n    \"timeOfComplaint\": null,\r\n    \"occurrenceLocation\": \"\",\r\n    \"modifiedDate\": \"2020-04-25T17:49:33.9943715\",\r\n    \"createdDate\": \"2020-04-14T16:11:33.368779\",\r\n    \"createdBy\": \"bsadmin@leftasystems.org\",\r\n    \"modifiedBy\": \"bsadmin@leftasystems.org\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/internalaffairs"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlccGFzcw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 12:11:13 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"Supplied Incident Case Number already exists!\"\n}"}],"_postman_id":"280a83a9-00f5-4f12-b578-c147e8bec574"},{"name":"Update Case","id":"78c0c8f9-eb97-4c31-a727-35b6eea3636a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"caseFileId\": 2055,\r\n    \"iacaseNumber\": \"MyCaseNumber-001\",\r\n    \"dateAssigned\": \"2020-02-13T00:00:00\",\r\n    \"complaint\": \"Excessive Force\",\r\n    \"status\": \"Editing\",\r\n    \"dateCompleted\": \"2020-04-25T00:00:00\",\r\n    \"purgeDate\": \"2030-04-25T00:00:00\",\r\n    \"complaints\": [\r\n        {\r\n            \"complainantId\": 2056,\r\n            \"caseFileId\": 2055,\r\n            \"userId\": 0,\r\n            \"firstName\": \"James\",\r\n            \"middleName\": \"P\",\r\n            \"lastName\": \"Smith\",\r\n            \"idnumber\": \"\",\r\n            \"email\": \"jsmith@yahoo.com\",\r\n            \"address\": \"8753 Nieto Ave\",\r\n            \"city\": \"Los Angeles\",\r\n            \"state\": \"CA\",\r\n            \"zip\": \"90897\",\r\n            \"telephone1\": \"312-876-9524\",\r\n            \"telephone2\": \"N/A\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"complainantType\": \"Citizen\",\r\n            \"complainantSource\": \"In Person\",\r\n            \"additionalNotes\": \"None\",\r\n            \"modifiedDate\": \"2022-03-21T08:14:13.9185789\",\r\n            \"createdDate\": \"2022-03-21T08:14:13.9185783\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"documents\": [],\r\n    \"principals\": [],\r\n    \"users\": [],\r\n    \"witnesses\": [],\r\n    \"deleteComments\": \"\",\r\n    \"chiefInvestigator\": \"\",\r\n    \"iaSupervisor\": \"\",\r\n    \"creator\": \"\",\r\n    \"inHouse\": false,\r\n    \"creatorId\": 8,\r\n    \"dateOfComplaint\": \"2020-02-13T00:00:00\",\r\n    \"principal\": \"\",\r\n    \"isCaseCreator\": false,\r\n    \"caseType\": \"IA\",\r\n    \"relatedIncidentNumber\": \"# 798652\",\r\n    \"keywords\": \"Use of Force\",\r\n    \"parentIncidentCaseId\": null,\r\n    \"trackingId\": 4,\r\n    \"address\": \"9875 Commonwealth Avenue\",\r\n    \"city\": \"Los Angeles\",\r\n    \"state\": \"CA\",\r\n    \"zip\": \"90808\",\r\n    \"summary\": \"Internal Affairs received a complaint about Officer Alaba using Excessive Force during a recent arrest. \",\r\n    \"incidentType\": \"\",\r\n    \"division\": \"\",\r\n    \"unit\": \"\",\r\n    \"timeOfComplaint\": null,\r\n    \"occurrenceLocation\": \"\",\r\n    \"modifiedDate\": \"2022-03-21T08:14:13.9183821\",\r\n    \"createdDate\": \"2022-03-21T08:14:13.9183774\",\r\n    \"createdBy\": \"apiTest\",\r\n    \"modifiedBy\": \"apiTest\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/internalaffairs","description":"<p>Update an existing internal affairs case. An error will be thrown if an Incident with the supplied Incident Id cannot be found within the system. You must ensure that the Incident Id exists.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","internalaffairs"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"930da962-7b5f-4432-acf5-0ec7964e8855","name":"Success","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"caseFileId\": 2055,\r\n    \"iacaseNumber\": \"MyCaseNumber-001\",\r\n    \"dateAssigned\": \"2020-02-13T00:00:00\",\r\n    \"complaint\": \"Excessive Force\",\r\n    \"status\": \"Editing\",\r\n    \"dateCompleted\": \"2020-04-25T00:00:00\",\r\n    \"purgeDate\": \"2030-04-25T00:00:00\",\r\n    \"complaints\": [\r\n        {\r\n            \"complainantId\": 2056,\r\n            \"caseFileId\": 2055,\r\n            \"userId\": 0,\r\n            \"firstName\": \"James\",\r\n            \"middleName\": \"P\",\r\n            \"lastName\": \"Smith\",\r\n            \"idnumber\": \"\",\r\n            \"email\": \"jsmith@yahoo.com\",\r\n            \"address\": \"8753 Nieto Ave\",\r\n            \"city\": \"Los Angeles\",\r\n            \"state\": \"CA\",\r\n            \"zip\": \"90897\",\r\n            \"telephone1\": \"312-876-9524\",\r\n            \"telephone2\": \"N/A\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"complainantType\": \"Citizen\",\r\n            \"complainantSource\": \"In Person\",\r\n            \"additionalNotes\": \"None\",\r\n            \"modifiedDate\": \"2022-03-21T08:14:13.9185789\",\r\n            \"createdDate\": \"2022-03-21T08:14:13.9185783\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"documents\": [],\r\n    \"principals\": [],\r\n    \"users\": [],\r\n    \"witnesses\": [],\r\n    \"deleteComments\": \"\",\r\n    \"chiefInvestigator\": \"\",\r\n    \"iaSupervisor\": \"\",\r\n    \"creator\": \"\",\r\n    \"inHouse\": false,\r\n    \"creatorId\": 8,\r\n    \"dateOfComplaint\": \"2020-02-13T00:00:00\",\r\n    \"principal\": \"\",\r\n    \"isCaseCreator\": false,\r\n    \"caseType\": \"IA\",\r\n    \"relatedIncidentNumber\": \"# 798652\",\r\n    \"keywords\": \"Use of Force\",\r\n    \"parentIncidentCaseId\": null,\r\n    \"trackingId\": 4,\r\n    \"address\": \"9875 Commonwealth Avenue\",\r\n    \"city\": \"Los Angeles\",\r\n    \"state\": \"CA\",\r\n    \"zip\": \"90808\",\r\n    \"summary\": \"Internal Affairs received a complaint about Officer Alaba using Excessive Force during a recent arrest. \",\r\n    \"incidentType\": \"\",\r\n    \"division\": \"\",\r\n    \"unit\": \"\",\r\n    \"timeOfComplaint\": null,\r\n    \"occurrenceLocation\": \"\",\r\n    \"modifiedDate\": \"2022-03-21T08:14:13.9183821\",\r\n    \"createdDate\": \"2022-03-21T08:14:13.9183774\",\r\n    \"createdBy\": \"apiTest\",\r\n    \"modifiedBy\": \"apiTest\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/internalaffairs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcaW50ZXJuYWxhZmZhaXJz?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 12:16:15 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"caseFileId\": 2055,\n    \"iacaseNumber\": \"MyCaseNumber-001\",\n    \"dateAssigned\": \"2020-02-13T00:00:00\",\n    \"complaint\": \"Excessive Force\",\n    \"status\": \"Editing\",\n    \"dateCompleted\": \"2020-04-25T00:00:00\",\n    \"purgeDate\": \"2030-04-25T00:00:00\",\n    \"complaints\": [],\n    \"documents\": [],\n    \"principals\": [],\n    \"users\": [],\n    \"witnesses\": [],\n    \"deleteComments\": \"\",\n    \"chiefInvestigator\": \"\",\n    \"iaSupervisor\": \"\",\n    \"creator\": \"\",\n    \"inHouse\": false,\n    \"creatorId\": 8,\n    \"dateOfComplaint\": \"2020-02-13T00:00:00\",\n    \"principal\": \"\",\n    \"isCaseCreator\": false,\n    \"caseType\": \"IA\",\n    \"relatedIncidentNumber\": \"# 798652\",\n    \"keywords\": \"Use of Force\",\n    \"parentIncidentCaseId\": null,\n    \"trackingId\": 4,\n    \"address\": \"9875 Commonwealth Avenue\",\n    \"city\": \"Los Angeles\",\n    \"state\": \"CA\",\n    \"zip\": \"90808\",\n    \"summary\": \"Internal Affairs received a complaint about Officer Alaba using Excessive Force during a recent arrest. \",\n    \"incidentType\": \"\",\n    \"division\": \"\",\n    \"unit\": \"\",\n    \"timeOfComplaint\": null,\n    \"occurrenceLocation\": \"\",\n    \"modifiedDate\": \"2022-03-21T08:16:15.8633507\",\n    \"createdDate\": \"2022-03-21T08:14:13.9183774\",\n    \"createdBy\": \"apiTest\",\n    \"modifiedBy\": \"apiTest\",\n    \"deleted\": false\n}"},{"id":"136713e8-7e1d-4e4e-9d7d-3fb2ac837ed1","name":"Instance Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"caseFileId\": 2056,\r\n    \"iacaseNumber\": \"MyCaseNumber-001\",\r\n    \"dateAssigned\": \"2020-02-13T00:00:00\",\r\n    \"complaint\": \"Excessive Force\",\r\n    \"status\": \"Editing\",\r\n    \"dateCompleted\": \"2020-04-25T00:00:00\",\r\n    \"purgeDate\": \"2030-04-25T00:00:00\",\r\n    \"complaints\": [\r\n        {\r\n            \"complainantId\": 2056,\r\n            \"caseFileId\": 2055,\r\n            \"userId\": 0,\r\n            \"firstName\": \"James\",\r\n            \"middleName\": \"P\",\r\n            \"lastName\": \"Smith\",\r\n            \"idnumber\": \"\",\r\n            \"email\": \"jsmith@yahoo.com\",\r\n            \"address\": \"8753 Nieto Ave\",\r\n            \"city\": \"Los Angeles\",\r\n            \"state\": \"CA\",\r\n            \"zip\": \"90897\",\r\n            \"telephone1\": \"312-876-9524\",\r\n            \"telephone2\": \"N/A\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"complainantType\": \"Citizen\",\r\n            \"complainantSource\": \"In Person\",\r\n            \"additionalNotes\": \"None\",\r\n            \"modifiedDate\": \"2022-03-21T08:14:13.9185789\",\r\n            \"createdDate\": \"2022-03-21T08:14:13.9185783\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"documents\": [],\r\n    \"principals\": [],\r\n    \"users\": [],\r\n    \"witnesses\": [],\r\n    \"deleteComments\": \"\",\r\n    \"chiefInvestigator\": \"\",\r\n    \"iaSupervisor\": \"\",\r\n    \"creator\": \"\",\r\n    \"inHouse\": false,\r\n    \"creatorId\": 8,\r\n    \"dateOfComplaint\": \"2020-02-13T00:00:00\",\r\n    \"principal\": \"\",\r\n    \"isCaseCreator\": false,\r\n    \"caseType\": \"IA\",\r\n    \"relatedIncidentNumber\": \"# 798652\",\r\n    \"keywords\": \"Use of Force\",\r\n    \"parentIncidentCaseId\": null,\r\n    \"trackingId\": 4,\r\n    \"address\": \"9875 Commonwealth Avenue\",\r\n    \"city\": \"Los Angeles\",\r\n    \"state\": \"CA\",\r\n    \"zip\": \"90808\",\r\n    \"summary\": \"Internal Affairs received a complaint about Officer Alaba using Excessive Force during a recent arrest. \",\r\n    \"incidentType\": \"\",\r\n    \"division\": \"\",\r\n    \"unit\": \"\",\r\n    \"timeOfComplaint\": null,\r\n    \"occurrenceLocation\": \"\",\r\n    \"modifiedDate\": \"2022-03-21T08:14:13.9183821\",\r\n    \"createdDate\": \"2022-03-21T08:14:13.9183774\",\r\n    \"createdBy\": \"apiTest\",\r\n    \"modifiedBy\": \"apiTest\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/internalaffairs"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcaW50ZXJuYWxhZmZhaXJz?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 12:16:51 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Instance not found for the supplied id!\"\n}"},{"id":"5de8f18d-81e7-4992-af73-cdd6ee3a3133","name":"Case Number Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"caseFileId\": 2055,\r\n    \"iacaseNumber\": \"MyCaseNumber-000\",\r\n    \"dateAssigned\": \"2020-02-13T00:00:00\",\r\n    \"complaint\": \"Excessive Force\",\r\n    \"status\": \"Editing\",\r\n    \"dateCompleted\": \"2020-04-25T00:00:00\",\r\n    \"purgeDate\": \"2030-04-25T00:00:00\",\r\n    \"complaints\": [\r\n        {\r\n            \"complainantId\": 2056,\r\n            \"caseFileId\": 2055,\r\n            \"userId\": 0,\r\n            \"firstName\": \"James\",\r\n            \"middleName\": \"P\",\r\n            \"lastName\": \"Smith\",\r\n            \"idnumber\": \"\",\r\n            \"email\": \"jsmith@yahoo.com\",\r\n            \"address\": \"8753 Nieto Ave\",\r\n            \"city\": \"Los Angeles\",\r\n            \"state\": \"CA\",\r\n            \"zip\": \"90897\",\r\n            \"telephone1\": \"312-876-9524\",\r\n            \"telephone2\": \"N/A\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"complainantType\": \"Citizen\",\r\n            \"complainantSource\": \"In Person\",\r\n            \"additionalNotes\": \"None\",\r\n            \"modifiedDate\": \"2022-03-21T08:14:13.9185789\",\r\n            \"createdDate\": \"2022-03-21T08:14:13.9185783\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"documents\": [],\r\n    \"principals\": [],\r\n    \"users\": [],\r\n    \"witnesses\": [],\r\n    \"deleteComments\": \"\",\r\n    \"chiefInvestigator\": \"\",\r\n    \"iaSupervisor\": \"\",\r\n    \"creator\": \"\",\r\n    \"inHouse\": false,\r\n    \"creatorId\": 8,\r\n    \"dateOfComplaint\": \"2020-02-13T00:00:00\",\r\n    \"principal\": \"\",\r\n    \"isCaseCreator\": false,\r\n    \"caseType\": \"IA\",\r\n    \"relatedIncidentNumber\": \"# 798652\",\r\n    \"keywords\": \"Use of Force\",\r\n    \"parentIncidentCaseId\": null,\r\n    \"trackingId\": 4,\r\n    \"address\": \"9875 Commonwealth Avenue\",\r\n    \"city\": \"Los Angeles\",\r\n    \"state\": \"CA\",\r\n    \"zip\": \"90808\",\r\n    \"summary\": \"Internal Affairs received a complaint about Officer Alaba using Excessive Force during a recent arrest. \",\r\n    \"incidentType\": \"\",\r\n    \"division\": \"\",\r\n    \"unit\": \"\",\r\n    \"timeOfComplaint\": null,\r\n    \"occurrenceLocation\": \"\",\r\n    \"modifiedDate\": \"2022-03-21T08:14:13.9183821\",\r\n    \"createdDate\": \"2022-03-21T08:14:13.9183774\",\r\n    \"createdBy\": \"apiTest\",\r\n    \"modifiedBy\": \"apiTest\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/internalaffairs"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcaW50ZXJuYWxhZmZhaXJz?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 12:17:24 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Supplied Case Number doesn't exists!\"\n}"}],"_postman_id":"78c0c8f9-eb97-4c31-a727-35b6eea3636a"}],"id":"cd64ef18-2b73-4437-8393-97276769b4f1","description":"<p>Through the LEFTA Systems Internal Affairs API, you can interact with SHIELD Portal's internal affairs application to interact with internal affairs cases and its related entities.</p>\n","event":[{"listen":"prerequest","script":{"id":"fa4d9c67-2763-4f36-a512-0f79d1d4a4c3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"81e81ad8-7b12-46d9-a0fe-852980bc36b9","type":"text/javascript","exec":[""]}}],"_postman_id":"cd64ef18-2b73-4437-8393-97276769b4f1","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}}},{"name":"EMCOT : Employee Conduct","item":[{"name":"Complaint","item":[{"name":"Get a List of Complaints","id":"d6c8f792-8d68-4b8b-b951-6f3c8b4ebbc6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/emcot/complaint?start_date=10-20-2012&end_date=03-15-2022","description":"<p>Get a list of complaints based of the supplied filter criteria. None of the child entities will be populated on search results.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","emcot","complaint"],"host":["{{BaseUri}}"],"query":[{"description":{"content":"<p>Filter results by dateOfComplaint to include only records after this date.</p>\n","type":"text/plain"},"key":"start_date","value":"10-20-2012"},{"description":{"content":"<p>Filter results by dateOfComplaint to include only records before this date.</p>\n","type":"text/plain"},"key":"end_date","value":"03-15-2022"}],"variable":[]}},"response":[{"id":"12336225-5204-4dbe-b397-ccd50bad9870","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/emcot/complaint?start_date=10-20-2012&end_date=03-15-2022","host":["{{BaseUri}}"],"path":["api","emcot","complaint"],"query":[{"key":"start_date","value":"10-20-2012","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2022","description":"Filter results to include only records before this date."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcZW1jb3RcY29tcGxhaW50?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 13:45:44 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"complaintId\": 62,\n        \"trackingId\": \"\",\n        \"creatorId\": null,\n        \"dateOfComplaint\": \"07/04/2020\",\n        \"timeOfComplaint\": null,\n        \"language\": \"\",\n        \"isCitizen\": true,\n        \"isOfficer\": false,\n        \"officerId\": null,\n        \"isAnonymous\": false,\n        \"isSupervisorFiling\": false,\n        \"supervisorId\": null,\n        \"complaintType\": \"Use of Force\",\n        \"disposition\": \"\",\n        \"status\": \"Completed\",\n        \"cadIncidentNumber\": \"\",\n        \"caseNumber\": \"CPL-2021/001\",\n        \"involvedCitizen\": null,\n        \"involvedEmployee\": null,\n        \"involvedIncident\": null,\n        \"involvedOfficialUseOnly\": null,\n        \"involvedWitness\": null,\n        \"sealed\": false,\n        \"deleteComments\": \"\",\n        \"caseNumberTrackingId\": null,\n        \"termsAgreed\": false,\n        \"signature\": \"\",\n        \"signDate\": null,\n        \"creator\": \"Citizen\",\n        \"concurrencyTs\": null,\n        \"citizens\": [],\n        \"employees\": [],\n        \"incidents\": [],\n        \"officialUseOnly\": [],\n        \"reviews\": [],\n        \"witnesses\": [],\n        \"modifiedDate\": \"0001-01-01T00:00:00\",\n        \"createdDate\": \"0001-01-01T00:00:00\",\n        \"createdBy\": \"\",\n        \"modifiedBy\": \"\",\n        \"deleted\": false\n    },\n    {\n        \"complaintId\": 63,\n        \"trackingId\": \"\",\n        \"creatorId\": null,\n        \"dateOfComplaint\": \"07/12/2020\",\n        \"timeOfComplaint\": null,\n        \"language\": \"\",\n        \"isCitizen\": true,\n        \"isOfficer\": false,\n        \"officerId\": null,\n        \"isAnonymous\": false,\n        \"isSupervisorFiling\": false,\n        \"supervisorId\": null,\n        \"complaintType\": \"Response Time\",\n        \"disposition\": \"\",\n        \"status\": \"Completed\",\n        \"cadIncidentNumber\": \"\",\n        \"caseNumber\": \"CPL-2021/002\",\n        \"involvedCitizen\": null,\n        \"involvedEmployee\": null,\n        \"involvedIncident\": null,\n        \"involvedOfficialUseOnly\": null,\n        \"involvedWitness\": null,\n        \"sealed\": false,\n        \"deleteComments\": \"\",\n        \"caseNumberTrackingId\": null,\n        \"termsAgreed\": false,\n        \"signature\": \"\",\n        \"signDate\": null,\n        \"creator\": \"Citizen\",\n        \"concurrencyTs\": null,\n        \"citizens\": [],\n        \"employees\": [],\n        \"incidents\": [],\n        \"officialUseOnly\": [],\n        \"reviews\": [],\n        \"witnesses\": [],\n        \"modifiedDate\": \"0001-01-01T00:00:00\",\n        \"createdDate\": \"0001-01-01T00:00:00\",\n        \"createdBy\": \"\",\n        \"modifiedBy\": \"\",\n        \"deleted\": false\n    },\n    {\n        \"complaintId\": 64,\n        \"trackingId\": \"\",\n        \"creatorId\": null,\n        \"dateOfComplaint\": \"04/09/2020\",\n        \"timeOfComplaint\": null,\n        \"language\": \"\",\n        \"isCitizen\": true,\n        \"isOfficer\": false,\n        \"officerId\": null,\n        \"isAnonymous\": false,\n        \"isSupervisorFiling\": false,\n        \"supervisorId\": null,\n        \"complaintType\": \"Response Time\",\n        \"disposition\": \"\",\n        \"status\": \"Completed\",\n        \"cadIncidentNumber\": \"\",\n        \"caseNumber\": \"CPL-2021/003\",\n        \"involvedCitizen\": null,\n        \"involvedEmployee\": null,\n        \"involvedIncident\": null,\n        \"involvedOfficialUseOnly\": null,\n        \"involvedWitness\": null,\n        \"sealed\": false,\n        \"deleteComments\": \"\",\n        \"caseNumberTrackingId\": null,\n        \"termsAgreed\": false,\n        \"signature\": \"\",\n        \"signDate\": null,\n        \"creator\": \"Citizen\",\n        \"concurrencyTs\": null,\n        \"citizens\": [],\n        \"employees\": [],\n        \"incidents\": [],\n        \"officialUseOnly\": [],\n        \"reviews\": [],\n        \"witnesses\": [],\n        \"modifiedDate\": \"0001-01-01T00:00:00\",\n        \"createdDate\": \"0001-01-01T00:00:00\",\n        \"createdBy\": \"\",\n        \"modifiedBy\": \"\",\n        \"deleted\": false\n    }\n]"},{"id":"1d447d7c-ab80-45b9-a012-9cf6293d5503","name":"Invalid End Date","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"{{BaseUri}}/api/emcot/complaint?start_date=10-20-2005&end_date=03-15-2025","host":["{{BaseUri}}"],"path":["api","emcot","complaint"],"query":[{"key":"start_date","value":"10-20-2005","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2025","description":"Filter results to include only records before this date."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 18:58:47 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"End date cannot be greater than the current date!\"\n}"},{"id":"a8742737-9f8c-4f36-97ba-93dc520d2014","name":"Invalid Start Date","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/emcot/complaint?start_date=10-20-2001&end_date=03-15-2022","host":["{{BaseUri}}"],"path":["api","emcot","complaint"],"query":[{"key":"start_date","value":"10-20-2001","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2022","description":"Filter results to include only records before this date."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 18:59:58 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"Start date cannot be more than 20 years prior to the current date!\"\n}"}],"_postman_id":"d6c8f792-8d68-4b8b-b951-6f3c8b4ebbc6"},{"name":"Get Complaint","id":"cd1c97f6-0cae-4047-a56b-a800b9489679","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/emcot/complaint/:complaintId","description":"<p>Get a detailed complaint with relationships based of the supplied Id. An error will be thrown if the supplied Id does not match any existing records. It is recommended you get the Id from the search API method.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","emcot","complaint",":complaintId"],"host":["{{BaseUri}}"],"query":[],"variable":[{"description":{"content":"<p>The record Id of the desired complaint.</p>\n","type":"text/plain"},"type":"any","value":"1201","key":"complaintId"}]}},"response":[{"id":"8ae10fb7-8392-4445-b7db-9b8e771671e4","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/emcot/complaint/:incidentId","host":["{{BaseUri}}"],"path":["api","emcot","complaint",":incidentId"],"variable":[{"key":"incidentId","value":"1201","description":"The record Id of the desired Incident."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcZW1jb3RcY29tcGxhaW50XDEyMDE=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Apr 2022 19:28:11 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"complaintId\": 1201,\n    \"trackingId\": \"K27IL11HTNOA84G\",\n    \"creatorId\": 95474,\n    \"dateOfComplaint\": \"03/31/2022\",\n    \"timeOfComplaint\": \"11:31:00\",\n    \"language\": \"English\",\n    \"isCitizen\": false,\n    \"isOfficer\": false,\n    \"officerId\": null,\n    \"isAnonymous\": false,\n    \"isSupervisorFiling\": true,\n    \"supervisorId\": 95474,\n    \"complaintType\": \"Failure to Act\",\n    \"disposition\": \"\",\n    \"status\": \"InReview\",\n    \"cadIncidentNumber\": \"\",\n    \"caseNumber\": \"CPL-2022/005\",\n    \"involvedCitizen\": true,\n    \"involvedEmployee\": true,\n    \"involvedIncident\": true,\n    \"involvedOfficialUseOnly\": true,\n    \"involvedWitness\": true,\n    \"sealed\": false,\n    \"deleteComments\": \"\",\n    \"caseNumberTrackingId\": 5,\n    \"termsAgreed\": false,\n    \"signature\": \"\",\n    \"signDate\": null,\n    \"reviewer\": \"\",\n    \"creator\": \"\",\n    \"concurrencyTs\": \"AAAAAAAAtUg=\",\n    \"citizens\": [\n        {\n            \"citizenId\": 1201,\n            \"complaintId\": 1201,\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"\",\n            \"address\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345\",\n            \"homePhone\": \"111-111-1111 x11___\",\n            \"cellPhone\": \"222-222-2222 x_____\",\n            \"additionalPhone\": \"\",\n            \"email\": \"johnsmith@aol.com\",\n            \"additionalEmail\": \"john.smith@gmail.com\",\n            \"dateOfBirth\": \"03/01/1980\",\n            \"age\": \"45\",\n            \"race\": \"White\",\n            \"gender\": \"Male\",\n            \"driverLicense\": \"\",\n            \"disability\": \"Yes\",\n            \"injured\": false,\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"seekMedicalAttention\": \"\",\n            \"doctorName\": \"\",\n            \"doctorPhone\": \"\",\n            \"isMinor\": true,\n            \"personFirstName\": \"Sara\",\n            \"personLastName\": \"Smith\",\n            \"personMiddleName\": \"\",\n            \"personAddress\": \"1234 Main Street\",\n            \"personCity\": \"Jacksonville\",\n            \"personState\": \"FL\",\n            \"personZip\": \"12345\",\n            \"personHomePhone\": \"111-111-1111 x_____\",\n            \"personCellPhone\": \"222-222-2222 x_____\",\n            \"personRelationshipToCitizen\": \"\",\n            \"attorneyName\": \"\",\n            \"attorneyPhone\": \"\",\n            \"bestContactTime\": \"0800\",\n            \"primaryLanguageSpoken\": \"Spanish\",\n            \"canCommunicateInEnglish\": \"Yes\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtT8=\",\n            \"typeOfDisability\": \"Mental Illness\",\n            \"personEmail\": \"sarasmith@gmail.com\",\n            \"arrested\": \"Yes\",\n            \"citationNumber\": \"12451245\",\n            \"modifiedDate\": \"2022-04-01T08:16:31.2946444\",\n            \"createdDate\": \"2022-03-31T11:31:18.8857756\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false\n        }\n    ],\n    \"employees\": [\n        {\n            \"complaintEmployeeId\": 1201,\n            \"complaintId\": 1201,\n            \"employeeId\": \"3762\",\n            \"firstName\": \"James\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"\",\n            \"inUniform\": \"Yes\",\n            \"race\": \"Black\",\n            \"gender\": \"Male\",\n            \"dateOfBirth\": null,\n            \"division\": \"Patrol\",\n            \"section\": \"\",\n            \"unit\": \"Alpha\",\n            \"description\": \"Employee description.\",\n            \"vehicleMake\": \"Volvo\",\n            \"vehicleModel\": \"\",\n            \"vehicleColor\": \"S3\",\n            \"vehicleNumber\": \"12\",\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtUA=\",\n            \"age\": \"46\",\n            \"userId\": 5,\n            \"witnessRelationshipsToEmployee\": [\n                {\n                    \"witnessRelationshipToEmployeeId\": 1135,\n                    \"witnessId\": 1135,\n                    \"employeeId\": 1201,\n                    \"witnessRelationshipToEmployee\": \"\",\n                    \"nonEditable\": false,\n                    \"concurrencyTs\": \"AAAAAAAAtUQ=\",\n                    \"modifiedDate\": \"2022-04-01T08:16:31.3338989\",\n                    \"createdDate\": \"2022-03-31T11:31:19.1397255\",\n                    \"createdBy\": \"durandpeterson@leftasystems.org\",\n                    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n                    \"deleted\": false\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T08:16:31.3110175\",\n            \"createdDate\": \"2022-03-31T11:31:18.9011911\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false\n        }\n    ],\n    \"incidents\": [\n        {\n            \"incidentId\": 1201,\n            \"complaintId\": 1201,\n            \"incidentDate\": \"03/01/2022\",\n            \"incidentDay\": \"Tuesday\",\n            \"incidentTime\": \"00:12:00\",\n            \"evidence\": \"Photo\",\n            \"address\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345\",\n            \"description\": \"Incident description.\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtUE=\",\n            \"modifiedDate\": \"2022-04-01T08:16:31.3203641\",\n            \"createdDate\": \"2022-03-31T11:31:18.9111514\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false\n        }\n    ],\n    \"officialUseOnly\": [\n        {\n            \"officialUseId\": 1200,\n            \"complaintId\": 1201,\n            \"complaintDate\": \"03/31/2022\",\n            \"complaintTime\": \"11:31:00\",\n            \"complaintReceivedMode\": \"In-person\",\n            \"complaintType\": \"Failure to Act\",\n            \"photographsTaken\": \"Yes\",\n            \"medicalReleaseForm\": \"\",\n            \"observations\": \"Some observation.\",\n            \"complaintDispositionCode\": \"Sustained\",\n            \"assignmentUnit\": \"\",\n            \"routing\": \"Watch Commander\",\n            \"nonEditable\": false,\n            \"receivedByFirstName\": \"James\",\n            \"receivedByLastName\": \"Smith\",\n            \"receivedByRank\": \"Officer\",\n            \"receivedByIDNumber\": \"3762\",\n            \"receivedByUnit\": \"Alpha\",\n            \"isForwarded\": true,\n            \"forwardedToFirstName\": \"Henry\",\n            \"forwardedToLastName\": \"Smith\",\n            \"forwardedToRank\": \"Officer\",\n            \"forwardedToIDNumber\": \"3475\",\n            \"forwardedToUnit\": \"Alpha\",\n            \"dateForwarded\": \"03/11/2022\",\n            \"timeForwarded\": \"00:12:00\",\n            \"concurrencyTs\": \"AAAAAAAAtUI=\",\n            \"dateAssigned\": \"03/22/2022\",\n            \"dateCompleted\": \"04/21/2022\",\n            \"purgeDate\": \"05/04/2022\",\n            \"actionTaken\": \"\",\n            \"allegations\": \"\",\n            \"caseType\": \"\",\n            \"modifiedDate\": \"2022-04-01T08:16:31.3499081\",\n            \"createdDate\": \"2022-03-31T11:31:18.9406185\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false\n        }\n    ],\n    \"reviews\": [\n        {\n            \"reviewId\": 77,\n            \"complaintId\": 1201,\n            \"userId\": 95474,\n            \"action\": \"Approve\",\n            \"message\": \"\",\n            \"concurrencyTs\": \"AAAAAAAAtUY=\",\n            \"reviewGroupId\": 0,\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T08:16:31.559367\",\n            \"modifiedDate\": \"2022-04-01T08:16:31.559367\",\n            \"createdDate\": \"2022-04-01T08:16:31.5592337\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false\n        },\n        {\n            \"reviewId\": 78,\n            \"complaintId\": 1201,\n            \"userId\": 95475,\n            \"action\": \"Sent\",\n            \"message\": \"\",\n            \"concurrencyTs\": \"AAAAAAAAtUc=\",\n            \"reviewGroupId\": 0,\n            \"name\": \"\",\n            \"reviewDate\": \"2022-04-01T08:16:31.5640473\",\n            \"modifiedDate\": \"2022-04-01T08:16:31.5640473\",\n            \"createdDate\": \"2022-04-01T08:16:31.5640464\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false\n        }\n    ],\n    \"witnesses\": [\n        {\n            \"witnessId\": 1135,\n            \"complaintId\": 1201,\n            \"firstName\": \"Sara\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"\",\n            \"address\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345\",\n            \"homePhone\": \"111-111-1111 x_____\",\n            \"cellPhone\": \"222-222-2222 x_____\",\n            \"additionalPhone\": \"\",\n            \"email\": \"sarasmith@gmail.com\",\n            \"additionalEmail\": \"sarasmith@hotmail.com\",\n            \"race\": \"Black\",\n            \"gender\": \"Female\",\n            \"dateOfBirth\": \"\",\n            \"age\": \"30\",\n            \"driverLicense\": \"\",\n            \"relationshipToCitizen\": \"Stranger\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtUM=\",\n            \"witnessRelationshipsToEmployee\": [\n                {\n                    \"witnessRelationshipToEmployeeId\": 1135,\n                    \"witnessId\": 1135,\n                    \"employeeId\": 1201,\n                    \"witnessRelationshipToEmployee\": \"\",\n                    \"nonEditable\": false,\n                    \"concurrencyTs\": \"AAAAAAAAtUQ=\",\n                    \"modifiedDate\": \"2022-04-01T08:16:31.3338989\",\n                    \"createdDate\": \"2022-03-31T11:31:19.1397255\",\n                    \"createdBy\": \"durandpeterson@leftasystems.org\",\n                    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n                    \"deleted\": false\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T08:16:31.3323814\",\n            \"createdDate\": \"2022-03-31T11:31:18.9236662\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false\n        }\n    ],\n    \"modifiedDate\": \"2022-04-01T08:16:31.3640427\",\n    \"createdDate\": \"2022-03-31T11:31:18.8665996\",\n    \"createdBy\": \"durandpeterson@leftasystems.org\",\n    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n    \"deleted\": false\n}"},{"id":"13e55e50-4372-4f29-be63-15f57a633018","name":"Instance Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/emcot/complaint/:incidentId","host":["{{BaseUri}}"],"path":["api","emcot","complaint",":incidentId"],"variable":[{"key":"incidentId","value":"1","description":"The record Id of the desired Incident."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcZW1jb3RcY29tcGxhaW50XDE=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 13:53:02 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Instance not found for the supplied id!\"\n}"}],"_postman_id":"cd1c97f6-0cae-4047-a56b-a800b9489679"},{"name":"Create Complaint","id":"f2e2f12c-a1f7-4862-a8a2-d98b6f33f313","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"trackingId\": \"K27IL11HTNOA84G\",\r\n    \"creatorId\": 95474,\r\n    \"dateOfComplaint\": \"03/31/2022\",\r\n    \"timeOfComplaint\": \"11:31:00\",\r\n    \"language\": \"English\",\r\n    \"isCitizen\": false,\r\n    \"isOfficer\": false,\r\n    \"officerId\": null,\r\n    \"isAnonymous\": false,\r\n    \"isSupervisorFiling\": true,\r\n    \"supervisorId\": 95474,\r\n    \"complaintType\": \"Failure to Act\",\r\n    \"disposition\": \"\",\r\n    \"status\": \"InReview\",\r\n    \"cadIncidentNumber\": \"\",\r\n    \"caseNumber\": \"CPL-2022/006\",\r\n    \"involvedCitizen\": true,\r\n    \"involvedEmployee\": true,\r\n    \"involvedIncident\": true,\r\n    \"involvedOfficialUseOnly\": true,\r\n    \"involvedWitness\": true,\r\n    \"sealed\": false,\r\n    \"deleteComments\": \"\",\r\n    \"caseNumberTrackingId\": 5,\r\n    \"termsAgreed\": false,\r\n    \"signature\": \"\",\r\n    \"signDate\": null,\r\n    \"reviewer\": \"\",\r\n    \"creator\": \"\",\r\n    \"concurrencyTs\": \"AAAAAAAAtUg=\",\r\n    \"citizens\": [\r\n        {\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x11___\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"johnsmith@aol.com\",\r\n            \"additionalEmail\": \"john.smith@gmail.com\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"45\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"driverLicense\": \"\",\r\n            \"disability\": \"Yes\",\r\n            \"injured\": false,\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"seekMedicalAttention\": \"\",\r\n            \"doctorName\": \"\",\r\n            \"doctorPhone\": \"\",\r\n            \"isMinor\": true,\r\n            \"personFirstName\": \"Sara\",\r\n            \"personLastName\": \"Smith\",\r\n            \"personMiddleName\": \"\",\r\n            \"personAddress\": \"1234 Main Street\",\r\n            \"personCity\": \"Jacksonville\",\r\n            \"personState\": \"FL\",\r\n            \"personZip\": \"12345\",\r\n            \"personHomePhone\": \"111-111-1111 x_____\",\r\n            \"personCellPhone\": \"222-222-2222 x_____\",\r\n            \"personRelationshipToCitizen\": \"\",\r\n            \"attorneyName\": \"\",\r\n            \"attorneyPhone\": \"\",\r\n            \"bestContactTime\": \"0800\",\r\n            \"primaryLanguageSpoken\": \"Spanish\",\r\n            \"canCommunicateInEnglish\": \"Yes\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtT8=\",\r\n            \"typeOfDisability\": \"Mental Illness\",\r\n            \"personEmail\": \"sarasmith@gmail.com\",\r\n            \"arrested\": \"Yes\",\r\n            \"citationNumber\": \"12451245\",\r\n            \"modifiedDate\": \"2022-04-01T08:16:31.2946444\",\r\n            \"createdDate\": \"2022-03-31T11:31:18.8857756\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"employees\": [\r\n        {\r\n            \"employeeId\": \"3762\",\r\n            \"firstName\": \"James\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"inUniform\": \"Yes\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": null,\r\n            \"division\": \"Patrol\",\r\n            \"section\": \"\",\r\n            \"unit\": \"Alpha\",\r\n            \"description\": \"Employee description.\",\r\n            \"vehicleMake\": \"Volvo\",\r\n            \"vehicleModel\": \"\",\r\n            \"vehicleColor\": \"S3\",\r\n            \"vehicleNumber\": \"12\",\r\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtUA=\",\r\n            \"age\": \"46\",\r\n            \"userId\": 5,\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"employeeId\": 1201,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtUQ=\",\r\n                    \"modifiedDate\": \"2022-04-01T08:16:31.3338989\",\r\n                    \"createdDate\": \"2022-03-31T11:31:19.1397255\",\r\n                    \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T08:16:31.3110175\",\r\n            \"createdDate\": \"2022-03-31T11:31:18.9011911\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"incidents\": [\r\n        {\r\n            \"incidentDate\": \"03/01/2022\",\r\n            \"incidentDay\": \"Tuesday\",\r\n            \"incidentTime\": \"00:12:00\",\r\n            \"evidence\": \"Photo\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"description\": \"Incident description.\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtUE=\",\r\n            \"modifiedDate\": \"2022-04-01T08:16:31.3203641\",\r\n            \"createdDate\": \"2022-03-31T11:31:18.9111514\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"officialUseOnly\": [\r\n        {\r\n            \"complaintDate\": \"03/31/2022\",\r\n            \"complaintTime\": \"11:31:00\",\r\n            \"complaintReceivedMode\": \"In-person\",\r\n            \"complaintType\": \"Failure to Act\",\r\n            \"photographsTaken\": \"Yes\",\r\n            \"medicalReleaseForm\": \"\",\r\n            \"observations\": \"Some observation.\",\r\n            \"complaintDispositionCode\": \"Sustained\",\r\n            \"assignmentUnit\": \"\",\r\n            \"routing\": \"Watch Commander\",\r\n            \"nonEditable\": false,\r\n            \"receivedByFirstName\": \"James\",\r\n            \"receivedByLastName\": \"Smith\",\r\n            \"receivedByRank\": \"Officer\",\r\n            \"receivedByIDNumber\": \"3762\",\r\n            \"receivedByUnit\": \"Alpha\",\r\n            \"isForwarded\": true,\r\n            \"forwardedToFirstName\": \"Henry\",\r\n            \"forwardedToLastName\": \"Smith\",\r\n            \"forwardedToRank\": \"Officer\",\r\n            \"forwardedToIDNumber\": \"3475\",\r\n            \"forwardedToUnit\": \"Alpha\",\r\n            \"dateForwarded\": \"03/11/2022\",\r\n            \"timeForwarded\": \"00:12:00\",\r\n            \"concurrencyTs\": \"AAAAAAAAtUI=\",\r\n            \"dateAssigned\": \"03/22/2022\",\r\n            \"dateCompleted\": \"04/21/2022\",\r\n            \"purgeDate\": \"05/04/2022\",\r\n            \"actionTaken\": \"\",\r\n            \"allegations\": \"\",\r\n            \"caseType\": \"\",\r\n            \"modifiedDate\": \"2022-04-01T08:16:31.3499081\",\r\n            \"createdDate\": \"2022-03-31T11:31:18.9406185\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"reviews\": [\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"\",\r\n            \"concurrencyTs\": \"AAAAAAAAtUY=\",\r\n            \"reviewGroupId\": 0,\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T08:16:31.559367\",\r\n            \"modifiedDate\": \"2022-04-01T08:16:31.559367\",\r\n            \"createdDate\": \"2022-04-01T08:16:31.5592337\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        },\r\n        {\r\n            \"userId\": 95475,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"concurrencyTs\": \"AAAAAAAAtUc=\",\r\n            \"reviewGroupId\": 0,\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T08:16:31.5640473\",\r\n            \"modifiedDate\": \"2022-04-01T08:16:31.5640473\",\r\n            \"createdDate\": \"2022-04-01T08:16:31.5640464\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"firstName\": \"Sara\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x_____\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"sarasmith@gmail.com\",\r\n            \"additionalEmail\": \"sarasmith@hotmail.com\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Female\",\r\n            \"dateOfBirth\": \"\",\r\n            \"age\": \"30\",\r\n            \"driverLicense\": \"\",\r\n            \"relationshipToCitizen\": \"Stranger\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtUM=\",\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"employeeId\": 1201,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtUQ=\",\r\n                    \"modifiedDate\": \"2022-04-01T08:16:31.3338989\",\r\n                    \"createdDate\": \"2022-03-31T11:31:19.1397255\",\r\n                    \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T08:16:31.3323814\",\r\n            \"createdDate\": \"2022-03-31T11:31:18.9236662\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-04-01T08:16:31.3640427\",\r\n    \"createdDate\": \"2022-03-31T11:31:18.8665996\",\r\n    \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/emcot/complaint","description":"<p>Create a new complaint. An error will be thrown if the supplied Case Number already exists in the system. You must ensure that each case number is unique.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","emcot","complaint"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"e3f534ed-229a-4f49-9366-e6b8b9d97e91","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"trackingId\": \"K27IL11HTNOA84G\",\r\n    \"creatorId\": 95474,\r\n    \"dateOfComplaint\": \"03/31/2022\",\r\n    \"timeOfComplaint\": \"11:31:00\",\r\n    \"language\": \"English\",\r\n    \"isCitizen\": false,\r\n    \"isOfficer\": false,\r\n    \"officerId\": null,\r\n    \"isAnonymous\": false,\r\n    \"isSupervisorFiling\": true,\r\n    \"supervisorId\": 95474,\r\n    \"complaintType\": \"Failure to Act\",\r\n    \"disposition\": \"\",\r\n    \"status\": \"InReview\",\r\n    \"cadIncidentNumber\": \"\",\r\n    \"caseNumber\": \"CPL-2022/006\",\r\n    \"involvedCitizen\": true,\r\n    \"involvedEmployee\": true,\r\n    \"involvedIncident\": true,\r\n    \"involvedOfficialUseOnly\": true,\r\n    \"involvedWitness\": true,\r\n    \"sealed\": false,\r\n    \"deleteComments\": \"\",\r\n    \"caseNumberTrackingId\": 5,\r\n    \"termsAgreed\": false,\r\n    \"signature\": \"\",\r\n    \"signDate\": null,\r\n    \"reviewer\": \"\",\r\n    \"creator\": \"\",\r\n    \"concurrencyTs\": \"AAAAAAAAtUg=\",\r\n    \"citizens\": [\r\n        {\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x11___\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"johnsmith@aol.com\",\r\n            \"additionalEmail\": \"john.smith@gmail.com\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"45\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"driverLicense\": \"\",\r\n            \"disability\": \"Yes\",\r\n            \"injured\": false,\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"seekMedicalAttention\": \"\",\r\n            \"doctorName\": \"\",\r\n            \"doctorPhone\": \"\",\r\n            \"isMinor\": true,\r\n            \"personFirstName\": \"Sara\",\r\n            \"personLastName\": \"Smith\",\r\n            \"personMiddleName\": \"\",\r\n            \"personAddress\": \"1234 Main Street\",\r\n            \"personCity\": \"Jacksonville\",\r\n            \"personState\": \"FL\",\r\n            \"personZip\": \"12345\",\r\n            \"personHomePhone\": \"111-111-1111 x_____\",\r\n            \"personCellPhone\": \"222-222-2222 x_____\",\r\n            \"personRelationshipToCitizen\": \"\",\r\n            \"attorneyName\": \"\",\r\n            \"attorneyPhone\": \"\",\r\n            \"bestContactTime\": \"0800\",\r\n            \"primaryLanguageSpoken\": \"Spanish\",\r\n            \"canCommunicateInEnglish\": \"Yes\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtT8=\",\r\n            \"typeOfDisability\": \"Mental Illness\",\r\n            \"personEmail\": \"sarasmith@gmail.com\",\r\n            \"arrested\": \"Yes\",\r\n            \"citationNumber\": \"12451245\",\r\n            \"modifiedDate\": \"2022-04-01T08:16:31.2946444\",\r\n            \"createdDate\": \"2022-03-31T11:31:18.8857756\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"employees\": [\r\n        {\r\n            \"employeeId\": \"3762\",\r\n            \"firstName\": \"James\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"inUniform\": \"Yes\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": null,\r\n            \"division\": \"Patrol\",\r\n            \"section\": \"\",\r\n            \"unit\": \"Alpha\",\r\n            \"description\": \"Employee description.\",\r\n            \"vehicleMake\": \"Volvo\",\r\n            \"vehicleModel\": \"\",\r\n            \"vehicleColor\": \"S3\",\r\n            \"vehicleNumber\": \"12\",\r\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtUA=\",\r\n            \"age\": \"46\",\r\n            \"userId\": 5,\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"employeeId\": 1201,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtUQ=\",\r\n                    \"modifiedDate\": \"2022-04-01T08:16:31.3338989\",\r\n                    \"createdDate\": \"2022-03-31T11:31:19.1397255\",\r\n                    \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T08:16:31.3110175\",\r\n            \"createdDate\": \"2022-03-31T11:31:18.9011911\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"incidents\": [\r\n        {\r\n            \"incidentDate\": \"03/01/2022\",\r\n            \"incidentDay\": \"Tuesday\",\r\n            \"incidentTime\": \"00:12:00\",\r\n            \"evidence\": \"Photo\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"description\": \"Incident description.\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtUE=\",\r\n            \"modifiedDate\": \"2022-04-01T08:16:31.3203641\",\r\n            \"createdDate\": \"2022-03-31T11:31:18.9111514\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"officialUseOnly\": [\r\n        {\r\n            \"complaintDate\": \"03/31/2022\",\r\n            \"complaintTime\": \"11:31:00\",\r\n            \"complaintReceivedMode\": \"In-person\",\r\n            \"complaintType\": \"Failure to Act\",\r\n            \"photographsTaken\": \"Yes\",\r\n            \"medicalReleaseForm\": \"\",\r\n            \"observations\": \"Some observation.\",\r\n            \"complaintDispositionCode\": \"Sustained\",\r\n            \"assignmentUnit\": \"\",\r\n            \"routing\": \"Watch Commander\",\r\n            \"nonEditable\": false,\r\n            \"receivedByFirstName\": \"James\",\r\n            \"receivedByLastName\": \"Smith\",\r\n            \"receivedByRank\": \"Officer\",\r\n            \"receivedByIDNumber\": \"3762\",\r\n            \"receivedByUnit\": \"Alpha\",\r\n            \"isForwarded\": true,\r\n            \"forwardedToFirstName\": \"Henry\",\r\n            \"forwardedToLastName\": \"Smith\",\r\n            \"forwardedToRank\": \"Officer\",\r\n            \"forwardedToIDNumber\": \"3475\",\r\n            \"forwardedToUnit\": \"Alpha\",\r\n            \"dateForwarded\": \"03/11/2022\",\r\n            \"timeForwarded\": \"00:12:00\",\r\n            \"concurrencyTs\": \"AAAAAAAAtUI=\",\r\n            \"dateAssigned\": \"03/22/2022\",\r\n            \"dateCompleted\": \"04/21/2022\",\r\n            \"purgeDate\": \"05/04/2022\",\r\n            \"actionTaken\": \"\",\r\n            \"allegations\": \"\",\r\n            \"caseType\": \"\",\r\n            \"modifiedDate\": \"2022-04-01T08:16:31.3499081\",\r\n            \"createdDate\": \"2022-03-31T11:31:18.9406185\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"reviews\": [\r\n        {\r\n            \"userId\": 95474,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"\",\r\n            \"concurrencyTs\": \"AAAAAAAAtUY=\",\r\n            \"reviewGroupId\": 0,\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T08:16:31.559367\",\r\n            \"modifiedDate\": \"2022-04-01T08:16:31.559367\",\r\n            \"createdDate\": \"2022-04-01T08:16:31.5592337\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        },\r\n        {\r\n            \"userId\": 95475,\r\n            \"action\": \"Sent\",\r\n            \"message\": \"\",\r\n            \"concurrencyTs\": \"AAAAAAAAtUc=\",\r\n            \"reviewGroupId\": 0,\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2022-04-01T08:16:31.5640473\",\r\n            \"modifiedDate\": \"2022-04-01T08:16:31.5640473\",\r\n            \"createdDate\": \"2022-04-01T08:16:31.5640464\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"firstName\": \"Sara\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x_____\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"sarasmith@gmail.com\",\r\n            \"additionalEmail\": \"sarasmith@hotmail.com\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Female\",\r\n            \"dateOfBirth\": \"\",\r\n            \"age\": \"30\",\r\n            \"driverLicense\": \"\",\r\n            \"relationshipToCitizen\": \"Stranger\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtUM=\",\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"employeeId\": 1201,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtUQ=\",\r\n                    \"modifiedDate\": \"2022-04-01T08:16:31.3338989\",\r\n                    \"createdDate\": \"2022-03-31T11:31:19.1397255\",\r\n                    \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T08:16:31.3323814\",\r\n            \"createdDate\": \"2022-03-31T11:31:18.9236662\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-04-01T08:16:31.3640427\",\r\n    \"createdDate\": \"2022-03-31T11:31:18.8665996\",\r\n    \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/emcot/complaint"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcZW1jb3RcY29tcGxhaW50?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Apr 2022 19:39:23 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"complaintId\": 1202,\n    \"trackingId\": \"DUB4L2K5CA56B1Y\",\n    \"creatorId\": 8,\n    \"dateOfComplaint\": \"03/31/2022\",\n    \"timeOfComplaint\": \"11:31:00\",\n    \"language\": \"English\",\n    \"isCitizen\": false,\n    \"isOfficer\": false,\n    \"officerId\": null,\n    \"isAnonymous\": false,\n    \"isSupervisorFiling\": true,\n    \"supervisorId\": 95474,\n    \"complaintType\": \"Failure to Act\",\n    \"disposition\": \"\",\n    \"status\": \"Editing\",\n    \"cadIncidentNumber\": \"\",\n    \"caseNumber\": \"CPL-2022/006\",\n    \"involvedCitizen\": true,\n    \"involvedEmployee\": true,\n    \"involvedIncident\": true,\n    \"involvedOfficialUseOnly\": true,\n    \"involvedWitness\": true,\n    \"sealed\": false,\n    \"deleteComments\": \"\",\n    \"caseNumberTrackingId\": 5,\n    \"termsAgreed\": false,\n    \"signature\": \"\",\n    \"signDate\": null,\n    \"reviewer\": \"\",\n    \"creator\": \"\",\n    \"concurrencyTs\": \"AAAAAAAAtVI=\",\n    \"citizens\": [\n        {\n            \"citizenId\": 1202,\n            \"complaintId\": 1202,\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"\",\n            \"address\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345\",\n            \"homePhone\": \"111-111-1111 x11___\",\n            \"cellPhone\": \"222-222-2222 x_____\",\n            \"additionalPhone\": \"\",\n            \"email\": \"johnsmith@aol.com\",\n            \"additionalEmail\": \"john.smith@gmail.com\",\n            \"dateOfBirth\": \"03/01/1980\",\n            \"age\": \"45\",\n            \"race\": \"White\",\n            \"gender\": \"Male\",\n            \"driverLicense\": \"\",\n            \"disability\": \"Yes\",\n            \"injured\": false,\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"seekMedicalAttention\": \"\",\n            \"doctorName\": \"\",\n            \"doctorPhone\": \"\",\n            \"isMinor\": true,\n            \"personFirstName\": \"Sara\",\n            \"personLastName\": \"Smith\",\n            \"personMiddleName\": \"\",\n            \"personAddress\": \"1234 Main Street\",\n            \"personCity\": \"Jacksonville\",\n            \"personState\": \"FL\",\n            \"personZip\": \"12345\",\n            \"personHomePhone\": \"111-111-1111 x_____\",\n            \"personCellPhone\": \"222-222-2222 x_____\",\n            \"personRelationshipToCitizen\": \"\",\n            \"attorneyName\": \"\",\n            \"attorneyPhone\": \"\",\n            \"bestContactTime\": \"0800\",\n            \"primaryLanguageSpoken\": \"Spanish\",\n            \"canCommunicateInEnglish\": \"Yes\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtVM=\",\n            \"typeOfDisability\": \"Mental Illness\",\n            \"personEmail\": \"sarasmith@gmail.com\",\n            \"arrested\": \"Yes\",\n            \"citationNumber\": \"12451245\",\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178047\",\n            \"createdDate\": \"2022-04-01T15:39:23.1178044\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"employees\": [\n        {\n            \"complaintEmployeeId\": 1202,\n            \"complaintId\": 1202,\n            \"employeeId\": \"3762\",\n            \"firstName\": \"James\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"\",\n            \"inUniform\": \"Yes\",\n            \"race\": \"Black\",\n            \"gender\": \"Male\",\n            \"dateOfBirth\": null,\n            \"division\": \"Patrol\",\n            \"section\": \"\",\n            \"unit\": \"Alpha\",\n            \"description\": \"Employee description.\",\n            \"vehicleMake\": \"Volvo\",\n            \"vehicleModel\": \"\",\n            \"vehicleColor\": \"S3\",\n            \"vehicleNumber\": \"12\",\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtVQ=\",\n            \"age\": \"46\",\n            \"userId\": 5,\n            \"witnessRelationshipsToEmployee\": [\n                {\n                    \"witnessRelationshipToEmployeeId\": 1136,\n                    \"witnessId\": 1136,\n                    \"employeeId\": 1202,\n                    \"witnessRelationshipToEmployee\": \"\",\n                    \"nonEditable\": false,\n                    \"concurrencyTs\": \"AAAAAAAAtVg=\",\n                    \"modifiedDate\": \"2022-04-01T15:39:23.167038\",\n                    \"createdDate\": \"2022-04-01T15:39:23.1669228\",\n                    \"createdBy\": \"apiTest\",\n                    \"modifiedBy\": \"apiTest\",\n                    \"deleted\": false\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178331\",\n            \"createdDate\": \"2022-04-01T15:39:23.1178327\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"incidents\": [\n        {\n            \"incidentId\": 1202,\n            \"complaintId\": 1202,\n            \"incidentDate\": \"03/01/2022\",\n            \"incidentDay\": \"Tuesday\",\n            \"incidentTime\": \"00:12:00\",\n            \"evidence\": \"Photo\",\n            \"address\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345\",\n            \"description\": \"Incident description.\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtVU=\",\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178607\",\n            \"createdDate\": \"2022-04-01T15:39:23.1178604\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"officialUseOnly\": [\n        {\n            \"officialUseId\": 1201,\n            \"complaintId\": 1202,\n            \"complaintDate\": \"03/31/2022\",\n            \"complaintTime\": \"11:31:00\",\n            \"complaintReceivedMode\": \"In-person\",\n            \"complaintType\": \"Failure to Act\",\n            \"photographsTaken\": \"Yes\",\n            \"medicalReleaseForm\": \"\",\n            \"observations\": \"Some observation.\",\n            \"complaintDispositionCode\": \"Sustained\",\n            \"assignmentUnit\": \"\",\n            \"routing\": \"Watch Commander\",\n            \"nonEditable\": false,\n            \"receivedByFirstName\": \"James\",\n            \"receivedByLastName\": \"Smith\",\n            \"receivedByRank\": \"Officer\",\n            \"receivedByIDNumber\": \"3762\",\n            \"receivedByUnit\": \"Alpha\",\n            \"isForwarded\": true,\n            \"forwardedToFirstName\": \"Henry\",\n            \"forwardedToLastName\": \"Smith\",\n            \"forwardedToRank\": \"Officer\",\n            \"forwardedToIDNumber\": \"3475\",\n            \"forwardedToUnit\": \"Alpha\",\n            \"dateForwarded\": \"03/11/2022\",\n            \"timeForwarded\": \"00:12:00\",\n            \"concurrencyTs\": \"AAAAAAAAtVY=\",\n            \"dateAssigned\": \"03/22/2022\",\n            \"dateCompleted\": \"04/21/2022\",\n            \"purgeDate\": \"05/04/2022\",\n            \"actionTaken\": \"\",\n            \"allegations\": \"\",\n            \"caseType\": \"\",\n            \"modifiedDate\": \"2022-04-01T15:39:23.1179273\",\n            \"createdDate\": \"2022-04-01T15:39:23.117927\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"reviews\": [],\n    \"witnesses\": [\n        {\n            \"witnessId\": 1136,\n            \"complaintId\": 1202,\n            \"firstName\": \"Sara\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"\",\n            \"address\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345\",\n            \"homePhone\": \"111-111-1111 x_____\",\n            \"cellPhone\": \"222-222-2222 x_____\",\n            \"additionalPhone\": \"\",\n            \"email\": \"sarasmith@gmail.com\",\n            \"additionalEmail\": \"sarasmith@hotmail.com\",\n            \"race\": \"Black\",\n            \"gender\": \"Female\",\n            \"dateOfBirth\": \"\",\n            \"age\": \"30\",\n            \"driverLicense\": \"\",\n            \"relationshipToCitizen\": \"Stranger\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtVc=\",\n            \"witnessRelationshipsToEmployee\": [\n                {\n                    \"witnessRelationshipToEmployeeId\": 1136,\n                    \"witnessId\": 1136,\n                    \"employeeId\": 1202,\n                    \"witnessRelationshipToEmployee\": \"\",\n                    \"nonEditable\": false,\n                    \"concurrencyTs\": \"AAAAAAAAtVg=\",\n                    \"modifiedDate\": \"2022-04-01T15:39:23.167038\",\n                    \"createdDate\": \"2022-04-01T15:39:23.1669228\",\n                    \"createdBy\": \"apiTest\",\n                    \"modifiedBy\": \"apiTest\",\n                    \"deleted\": false\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178872\",\n            \"createdDate\": \"2022-04-01T15:39:23.1178868\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"modifiedDate\": \"2022-04-01T15:39:23.1177086\",\n    \"createdDate\": \"2022-04-01T15:39:23.1177081\",\n    \"createdBy\": \"apiTest\",\n    \"modifiedBy\": \"apiTest\",\n    \"deleted\": false\n}"},{"id":"8c8cc74b-3ca3-45bc-8b01-1804608c3643","name":"Case File Already Exists","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"creatorId\": null,\r\n    \"dateOfComplaint\": \"07/04/2020\",\r\n    \"timeOfComplaint\": \"00:36:00\",\r\n    \"language\": \"English\",\r\n    \"isCitizen\": true,\r\n    \"isOfficer\": false,\r\n    \"officerId\": null,\r\n    \"isAnonymous\": false,\r\n    \"isSupervisorFiling\": false,\r\n    \"supervisorId\": null,\r\n    \"complaintType\": \"Use of Force\",\r\n    \"disposition\": \"\",\r\n    \"status\": \"Completed\",\r\n    \"cadIncidentNumber\": \"\",\r\n    \"caseNumber\": \"CPL-2021/001\",\r\n    \"involvedCitizen\": true,\r\n    \"involvedEmployee\": true,\r\n    \"involvedIncident\": true,\r\n    \"involvedOfficialUseOnly\": true,\r\n    \"involvedWitness\": true,\r\n    \"sealed\": false,\r\n    \"deleteComments\": \"\",\r\n    \"caseNumberTrackingId\": 1,\r\n    \"termsAgreed\": false,\r\n    \"signature\": \"\",\r\n    \"signDate\": null,\r\n    \"creator\": \"\",\r\n    \"concurrencyTs\": \"AAAAAAAAFHM=\",\r\n    \"citizens\": [\r\n        {\r\n            \"firstName\": \"John \",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"789 Wood St.\",\r\n            \"city\": \"Anywhere\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"39216\",\r\n            \"homePhone\": \"2282345383\",\r\n            \"cellPhone\": \"334-543-0967 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"johnsmith@gmailtest.com\",\r\n            \"additionalEmail\": \"johnsmith@gmailtest.com\",\r\n            \"dateOfBirth\": \"07/15/1967\",\r\n            \"age\": \"53\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"driverLicense\": \"\",\r\n            \"disability\": \"No\",\r\n            \"injured\": false,\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"seekMedicalAttention\": \"\",\r\n            \"doctorName\": \"\",\r\n            \"doctorPhone\": \"\",\r\n            \"isMinor\": false,\r\n            \"personFirstName\": \"\",\r\n            \"personLastName\": \"\",\r\n            \"personMiddleName\": \"\",\r\n            \"personAddress\": \"\",\r\n            \"personCity\": \"\",\r\n            \"personState\": \"MS\",\r\n            \"personZip\": \"\",\r\n            \"personHomePhone\": \"\",\r\n            \"personCellPhone\": \"\",\r\n            \"personRelationshipToCitizen\": \"\",\r\n            \"attorneyName\": \"\",\r\n            \"attorneyPhone\": \"\",\r\n            \"bestContactTime\": \"ASAP\",\r\n            \"primaryLanguageSpoken\": \"English\",\r\n            \"canCommunicateInEnglish\": \"Yes\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAEss=\",\r\n            \"typeOfDisability\": \"\",\r\n            \"personEmail\": \"\",\r\n            \"arrested\": \"\",\r\n            \"citationNumber\": \"\",\r\n            \"modifiedDate\": \"2021-01-31T09:54:19.9068302\",\r\n            \"createdDate\": \"2021-01-27T13:34:20.7196086\",\r\n            \"createdBy\": \"johnsmith@gmailtest.com\",\r\n            \"modifiedBy\": \"bryansmith@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"employees\": [\r\n        {\r\n            \"employeeId\": \"\",\r\n            \"firstName\": \"Sara\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"inUniform\": \"Yes\",\r\n            \"race\": \"Asian\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": null,\r\n            \"division\": \"Patrol Division\",\r\n            \"section\": \"\",\r\n            \"unit\": \"\",\r\n            \"description\": \"Bike officer\",\r\n            \"vehicleMake\": \"\",\r\n            \"vehicleModel\": \"\",\r\n            \"vehicleColor\": \"\",\r\n            \"vehicleNumber\": \"\",\r\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAExM=\",\r\n            \"age\": \"20\",\r\n            \"userId\": null,\r\n            \"witnessRelationshipsToEmployee\": [],\r\n            \"modifiedDate\": \"2021-01-31T09:54:19.9068473\",\r\n            \"createdDate\": \"2021-01-27T13:34:20.7498557\",\r\n            \"createdBy\": \"johnsmith@gmailtest.com\",\r\n            \"modifiedBy\": \"bryansmith@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"incidents\": [\r\n        {\r\n            \"incidentDate\": \"07/04/2020\",\r\n            \"incidentDay\": \"Saturday\",\r\n            \"incidentTime\": \"19:35:00\",\r\n            \"evidence\": \"Video|||Audio\",\r\n            \"address\": \"Main St\",\r\n            \"city\": \"Anywhere\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"39216\",\r\n            \"description\": \"I would like to file a complaint against one of your officers, Mr. Kyle Webb. I understand that police officers are often the victims of false complaints, but I have evidence to back up my claim that I was treated inappropriately. Officer Webb needs to be reprimanded, and I am prepared to go to the media if you cannot satisfactorily resolve this issue.\\n\\nI encountered Officer Webb at the corner of Main and Elm Street in Anytown on July 4th.  I was riding a skateboard down the sidewalk and he was walking. Even though I politely gave him a very wide berth, he still stopped me and demanded that I stop riding my skateboard. I informed him that skateboarding on the sidewalk is not illegal in Anytown, and he claimed that it did not matter whether or not it was legal. I continued to skateboard, as I have read the relevant laws on this issue, after which he pushed me off my skateboard and threatened to arrest me.\\n\\nWhile my claim alone might not convince you that Officer Webb indeed acted in the way I describe, the included DVD recorded by one of my friends with his phone may convince you otherwise. While I was not severely injured, I do believe that Officer Webb's conduct was inappropriate. For my own safety and the public good, I would like to hear what steps are being taken to address Officer Webb's misconduct. There is no need to make a public scandal of this event, but unless Officer Webb is appropriately disciplined, I will turn this video of a police officer brutally pushing a young man off a skateboard over to the local news stations and post it online. Accountability in the police force is key to healthy law enforcement.\\n\\nPlease call me at 555-555-5555 to discuss how Officer Webb is to be reprimanded. Thank you very much for your time.\\n\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAE1o=\",\r\n            \"modifiedDate\": \"2021-01-31T09:54:19.9068674\",\r\n            \"createdDate\": \"2021-01-27T13:34:20.770137\",\r\n            \"createdBy\": \"johnjames@gmailtest.com\",\r\n            \"modifiedBy\": \"bryansmith@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"officialUseOnly\": [\r\n        {\r\n            \"complaintDate\": \"01/31/2021\",\r\n            \"complaintTime\": \"06:53:00\",\r\n            \"complaintReceivedMode\": \"Website\",\r\n            \"complaintType\": \"Use of Force\",\r\n            \"photographsTaken\": \"\",\r\n            \"medicalReleaseForm\": \"\",\r\n            \"observations\": \"\",\r\n            \"complaintDispositionCode\": \"Sustained\",\r\n            \"assignmentUnit\": \"\",\r\n            \"routing\": \"\",\r\n            \"nonEditable\": false,\r\n            \"receivedByFirstName\": \"Greg\",\r\n            \"receivedByLastName\": \"Smith\",\r\n            \"receivedByRank\": \"Officer\",\r\n            \"receivedByIDNumber\": \"3819\",\r\n            \"receivedByUnit\": \"Bravo\",\r\n            \"isForwarded\": false,\r\n            \"forwardedToFirstName\": \"\",\r\n            \"forwardedToLastName\": \"\",\r\n            \"forwardedToRank\": \"\",\r\n            \"forwardedToIDNumber\": \"\",\r\n            \"forwardedToUnit\": \"\",\r\n            \"dateForwarded\": \"\",\r\n            \"timeForwarded\": null,\r\n            \"concurrencyTs\": \"AAAAAAAAE6E=\",\r\n            \"dateAssigned\": \"\",\r\n            \"dateCompleted\": \"\",\r\n            \"purgeDate\": \"\",\r\n            \"actionTaken\": \"\",\r\n            \"allegations\": \"\",\r\n            \"caseType\": \"\",\r\n            \"modifiedDate\": \"2021-01-31T09:54:19.9068945\",\r\n            \"createdDate\": \"2021-01-27T13:34:20.7703242\",\r\n            \"createdBy\": \"johnsmith@gmailtest.com\",\r\n            \"modifiedBy\": \"bryansmith@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"reviews\": [\r\n        {\r\n            \"userId\": 2,\r\n            \"action\": \"Approve\",\r\n            \"message\": \"\",\r\n            \"concurrencyTs\": \"AAAAAAAAFGQ=\",\r\n            \"reviewGroupId\": 0,\r\n            \"name\": \"\",\r\n            \"reviewDate\": \"2021-01-31T09:54:26.8188817\",\r\n            \"modifiedDate\": \"2021-01-31T09:54:26.8188817\",\r\n            \"createdDate\": \"2021-01-31T09:54:26.8188811\",\r\n            \"createdBy\": \"bryansmith@leftasystems.org\",\r\n            \"modifiedBy\": \"bryansmith@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"witnesses\": [],\r\n    \"modifiedDate\": \"2021-01-31T09:54:19.9069113\",\r\n    \"createdDate\": \"2021-01-27T13:34:20.671932\",\r\n    \"createdBy\": \"johnsmith@gmailtest.com\",\r\n    \"modifiedBy\": \"bryansmith@leftasystems.org\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/emcot/complaint"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcZW1jb3RcY29tcGxhaW50?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 13:55:06 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"Supplied Complaint Case Number already exists!\"\n}"}],"_postman_id":"f2e2f12c-a1f7-4862-a8a2-d98b6f33f313"},{"name":"Update Complaint","id":"a9d94390-54d7-49a8-9434-0dd0a79ca32a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"complaintId\": 1202,\r\n    \"trackingId\": \"DUB4L2K5CA56B1Y\",\r\n    \"creatorId\": 8,\r\n    \"dateOfComplaint\": \"03/31/2022\",\r\n    \"timeOfComplaint\": \"11:31:00\",\r\n    \"language\": \"English\",\r\n    \"isCitizen\": false,\r\n    \"isOfficer\": false,\r\n    \"officerId\": null,\r\n    \"isAnonymous\": false,\r\n    \"isSupervisorFiling\": true,\r\n    \"supervisorId\": 95474,\r\n    \"complaintType\": \"Failure to Act\",\r\n    \"disposition\": \"\",\r\n    \"status\": \"Editing\",\r\n    \"cadIncidentNumber\": \"\",\r\n    \"caseNumber\": \"CPL-2022/006\",\r\n    \"involvedCitizen\": true,\r\n    \"involvedEmployee\": true,\r\n    \"involvedIncident\": true,\r\n    \"involvedOfficialUseOnly\": true,\r\n    \"involvedWitness\": true,\r\n    \"sealed\": false,\r\n    \"deleteComments\": \"\",\r\n    \"caseNumberTrackingId\": 5,\r\n    \"termsAgreed\": false,\r\n    \"signature\": \"\",\r\n    \"signDate\": null,\r\n    \"reviewer\": \"\",\r\n    \"creator\": \"\",\r\n    \"concurrencyTs\": \"AAAAAAAAtVI=\",\r\n    \"citizens\": [\r\n        {\r\n            \"citizenId\": 1202,\r\n            \"complaintId\": 1202,\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x11___\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"johnsmith@aol.com\",\r\n            \"additionalEmail\": \"john.smith@gmail.com\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"45\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"driverLicense\": \"\",\r\n            \"disability\": \"Yes\",\r\n            \"injured\": false,\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"seekMedicalAttention\": \"\",\r\n            \"doctorName\": \"\",\r\n            \"doctorPhone\": \"\",\r\n            \"isMinor\": true,\r\n            \"personFirstName\": \"Sara\",\r\n            \"personLastName\": \"Smith\",\r\n            \"personMiddleName\": \"\",\r\n            \"personAddress\": \"1234 Main Street\",\r\n            \"personCity\": \"Jacksonville\",\r\n            \"personState\": \"FL\",\r\n            \"personZip\": \"12345\",\r\n            \"personHomePhone\": \"111-111-1111 x_____\",\r\n            \"personCellPhone\": \"222-222-2222 x_____\",\r\n            \"personRelationshipToCitizen\": \"\",\r\n            \"attorneyName\": \"\",\r\n            \"attorneyPhone\": \"\",\r\n            \"bestContactTime\": \"0800\",\r\n            \"primaryLanguageSpoken\": \"Spanish\",\r\n            \"canCommunicateInEnglish\": \"Yes\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtVM=\",\r\n            \"typeOfDisability\": \"Mental Illness\",\r\n            \"personEmail\": \"sarasmith@gmail.com\",\r\n            \"arrested\": \"Yes\",\r\n            \"citationNumber\": \"12451245\",\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178047\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.1178044\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"employees\": [\r\n        {\r\n            \"complaintEmployeeId\": 1202,\r\n            \"complaintId\": 1202,\r\n            \"employeeId\": \"3762\",\r\n            \"firstName\": \"James\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"inUniform\": \"Yes\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": null,\r\n            \"division\": \"Patrol\",\r\n            \"section\": \"\",\r\n            \"unit\": \"Alpha\",\r\n            \"description\": \"Employee description.\",\r\n            \"vehicleMake\": \"Volvo\",\r\n            \"vehicleModel\": \"\",\r\n            \"vehicleColor\": \"S3\",\r\n            \"vehicleNumber\": \"12\",\r\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtVQ=\",\r\n            \"age\": \"46\",\r\n            \"userId\": 5,\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"witnessRelationshipToEmployeeId\": 1136,\r\n                    \"witnessId\": 1136,\r\n                    \"employeeId\": 1202,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtVg=\",\r\n                    \"modifiedDate\": \"2022-04-01T15:39:23.167038\",\r\n                    \"createdDate\": \"2022-04-01T15:39:23.1669228\",\r\n                    \"createdBy\": \"apiTest\",\r\n                    \"modifiedBy\": \"apiTest\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178331\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.1178327\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"incidents\": [\r\n        {\r\n            \"incidentId\": 1202,\r\n            \"complaintId\": 1202,\r\n            \"incidentDate\": \"03/01/2022\",\r\n            \"incidentDay\": \"Tuesday\",\r\n            \"incidentTime\": \"00:12:00\",\r\n            \"evidence\": \"Photo\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"description\": \"Incident description.\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtVU=\",\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178607\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.1178604\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"officialUseOnly\": [\r\n        {\r\n            \"officialUseId\": 1201,\r\n            \"complaintId\": 1202,\r\n            \"complaintDate\": \"03/31/2022\",\r\n            \"complaintTime\": \"11:31:00\",\r\n            \"complaintReceivedMode\": \"In-person\",\r\n            \"complaintType\": \"Failure to Act\",\r\n            \"photographsTaken\": \"Yes\",\r\n            \"medicalReleaseForm\": \"\",\r\n            \"observations\": \"Some observation.\",\r\n            \"complaintDispositionCode\": \"Sustained\",\r\n            \"assignmentUnit\": \"\",\r\n            \"routing\": \"Watch Commander\",\r\n            \"nonEditable\": false,\r\n            \"receivedByFirstName\": \"James\",\r\n            \"receivedByLastName\": \"Smith\",\r\n            \"receivedByRank\": \"Officer\",\r\n            \"receivedByIDNumber\": \"3762\",\r\n            \"receivedByUnit\": \"Alpha\",\r\n            \"isForwarded\": true,\r\n            \"forwardedToFirstName\": \"Henry\",\r\n            \"forwardedToLastName\": \"Smith\",\r\n            \"forwardedToRank\": \"Officer\",\r\n            \"forwardedToIDNumber\": \"3475\",\r\n            \"forwardedToUnit\": \"Alpha\",\r\n            \"dateForwarded\": \"03/11/2022\",\r\n            \"timeForwarded\": \"00:12:00\",\r\n            \"concurrencyTs\": \"AAAAAAAAtVY=\",\r\n            \"dateAssigned\": \"03/22/2022\",\r\n            \"dateCompleted\": \"04/21/2022\",\r\n            \"purgeDate\": \"05/04/2022\",\r\n            \"actionTaken\": \"\",\r\n            \"allegations\": \"\",\r\n            \"caseType\": \"\",\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1179273\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.117927\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"reviews\": [],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 1136,\r\n            \"complaintId\": 1202,\r\n            \"firstName\": \"Sara\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x_____\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"sarasmith@gmail.com\",\r\n            \"additionalEmail\": \"sarasmith@hotmail.com\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Female\",\r\n            \"dateOfBirth\": \"\",\r\n            \"age\": \"30\",\r\n            \"driverLicense\": \"\",\r\n            \"relationshipToCitizen\": \"Stranger\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtVc=\",\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"witnessRelationshipToEmployeeId\": 1136,\r\n                    \"witnessId\": 1136,\r\n                    \"employeeId\": 1202,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtVg=\",\r\n                    \"modifiedDate\": \"2022-04-01T15:39:23.167038\",\r\n                    \"createdDate\": \"2022-04-01T15:39:23.1669228\",\r\n                    \"createdBy\": \"apiTest\",\r\n                    \"modifiedBy\": \"apiTest\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178872\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.1178868\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-04-01T15:39:23.1177086\",\r\n    \"createdDate\": \"2022-04-01T15:39:23.1177081\",\r\n    \"createdBy\": \"apiTest\",\r\n    \"modifiedBy\": \"apiTest\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/emcot/complaint","description":"<p>Update an existing complaint. An error will be thrown if an Incident with the supplied Incident Id cannot be found within the system. You must ensure that the Incident Id exists.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","emcot","complaint"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"73d712ca-6449-4325-854c-6465d851c108","name":"Success","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"complaintId\": 1202,\r\n    \"trackingId\": \"DUB4L2K5CA56B1Y\",\r\n    \"creatorId\": 8,\r\n    \"dateOfComplaint\": \"03/31/2022\",\r\n    \"timeOfComplaint\": \"11:31:00\",\r\n    \"language\": \"English\",\r\n    \"isCitizen\": false,\r\n    \"isOfficer\": false,\r\n    \"officerId\": null,\r\n    \"isAnonymous\": false,\r\n    \"isSupervisorFiling\": true,\r\n    \"supervisorId\": 95474,\r\n    \"complaintType\": \"Failure to Act\",\r\n    \"disposition\": \"\",\r\n    \"status\": \"Editing\",\r\n    \"cadIncidentNumber\": \"\",\r\n    \"caseNumber\": \"CPL-2022/006\",\r\n    \"involvedCitizen\": true,\r\n    \"involvedEmployee\": true,\r\n    \"involvedIncident\": true,\r\n    \"involvedOfficialUseOnly\": true,\r\n    \"involvedWitness\": true,\r\n    \"sealed\": false,\r\n    \"deleteComments\": \"\",\r\n    \"caseNumberTrackingId\": 5,\r\n    \"termsAgreed\": false,\r\n    \"signature\": \"\",\r\n    \"signDate\": null,\r\n    \"reviewer\": \"\",\r\n    \"creator\": \"\",\r\n    \"concurrencyTs\": \"AAAAAAAAtVI=\",\r\n    \"citizens\": [\r\n        {\r\n            \"citizenId\": 1202,\r\n            \"complaintId\": 1202,\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x11___\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"johnsmith@aol.com\",\r\n            \"additionalEmail\": \"john.smith@gmail.com\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"45\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"driverLicense\": \"\",\r\n            \"disability\": \"Yes\",\r\n            \"injured\": false,\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"seekMedicalAttention\": \"\",\r\n            \"doctorName\": \"\",\r\n            \"doctorPhone\": \"\",\r\n            \"isMinor\": true,\r\n            \"personFirstName\": \"Sara\",\r\n            \"personLastName\": \"Smith\",\r\n            \"personMiddleName\": \"\",\r\n            \"personAddress\": \"1234 Main Street\",\r\n            \"personCity\": \"Jacksonville\",\r\n            \"personState\": \"FL\",\r\n            \"personZip\": \"12345\",\r\n            \"personHomePhone\": \"111-111-1111 x_____\",\r\n            \"personCellPhone\": \"222-222-2222 x_____\",\r\n            \"personRelationshipToCitizen\": \"\",\r\n            \"attorneyName\": \"\",\r\n            \"attorneyPhone\": \"\",\r\n            \"bestContactTime\": \"0800\",\r\n            \"primaryLanguageSpoken\": \"Spanish\",\r\n            \"canCommunicateInEnglish\": \"Yes\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtVM=\",\r\n            \"typeOfDisability\": \"Mental Illness\",\r\n            \"personEmail\": \"sarasmith@gmail.com\",\r\n            \"arrested\": \"Yes\",\r\n            \"citationNumber\": \"12451245\",\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178047\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.1178044\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"employees\": [\r\n        {\r\n            \"complaintEmployeeId\": 1202,\r\n            \"complaintId\": 1202,\r\n            \"employeeId\": \"3762\",\r\n            \"firstName\": \"James\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"inUniform\": \"Yes\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": null,\r\n            \"division\": \"Patrol\",\r\n            \"section\": \"\",\r\n            \"unit\": \"Alpha\",\r\n            \"description\": \"Employee description.\",\r\n            \"vehicleMake\": \"Volvo\",\r\n            \"vehicleModel\": \"\",\r\n            \"vehicleColor\": \"S3\",\r\n            \"vehicleNumber\": \"12\",\r\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtVQ=\",\r\n            \"age\": \"46\",\r\n            \"userId\": 5,\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"witnessRelationshipToEmployeeId\": 1136,\r\n                    \"witnessId\": 1136,\r\n                    \"employeeId\": 1202,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtVg=\",\r\n                    \"modifiedDate\": \"2022-04-01T15:39:23.167038\",\r\n                    \"createdDate\": \"2022-04-01T15:39:23.1669228\",\r\n                    \"createdBy\": \"apiTest\",\r\n                    \"modifiedBy\": \"apiTest\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178331\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.1178327\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"incidents\": [\r\n        {\r\n            \"incidentId\": 1202,\r\n            \"complaintId\": 1202,\r\n            \"incidentDate\": \"03/01/2022\",\r\n            \"incidentDay\": \"Tuesday\",\r\n            \"incidentTime\": \"00:12:00\",\r\n            \"evidence\": \"Photo\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"description\": \"Incident description.\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtVU=\",\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178607\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.1178604\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"officialUseOnly\": [\r\n        {\r\n            \"officialUseId\": 1201,\r\n            \"complaintId\": 1202,\r\n            \"complaintDate\": \"03/31/2022\",\r\n            \"complaintTime\": \"11:31:00\",\r\n            \"complaintReceivedMode\": \"In-person\",\r\n            \"complaintType\": \"Failure to Act\",\r\n            \"photographsTaken\": \"Yes\",\r\n            \"medicalReleaseForm\": \"\",\r\n            \"observations\": \"Some observation.\",\r\n            \"complaintDispositionCode\": \"Sustained\",\r\n            \"assignmentUnit\": \"\",\r\n            \"routing\": \"Watch Commander\",\r\n            \"nonEditable\": false,\r\n            \"receivedByFirstName\": \"James\",\r\n            \"receivedByLastName\": \"Smith\",\r\n            \"receivedByRank\": \"Officer\",\r\n            \"receivedByIDNumber\": \"3762\",\r\n            \"receivedByUnit\": \"Alpha\",\r\n            \"isForwarded\": true,\r\n            \"forwardedToFirstName\": \"Henry\",\r\n            \"forwardedToLastName\": \"Smith\",\r\n            \"forwardedToRank\": \"Officer\",\r\n            \"forwardedToIDNumber\": \"3475\",\r\n            \"forwardedToUnit\": \"Alpha\",\r\n            \"dateForwarded\": \"03/11/2022\",\r\n            \"timeForwarded\": \"00:12:00\",\r\n            \"concurrencyTs\": \"AAAAAAAAtVY=\",\r\n            \"dateAssigned\": \"03/22/2022\",\r\n            \"dateCompleted\": \"04/21/2022\",\r\n            \"purgeDate\": \"05/04/2022\",\r\n            \"actionTaken\": \"\",\r\n            \"allegations\": \"\",\r\n            \"caseType\": \"\",\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1179273\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.117927\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"reviews\": [],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 1136,\r\n            \"complaintId\": 1202,\r\n            \"firstName\": \"Sara\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x_____\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"sarasmith@gmail.com\",\r\n            \"additionalEmail\": \"sarasmith@hotmail.com\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Female\",\r\n            \"dateOfBirth\": \"\",\r\n            \"age\": \"30\",\r\n            \"driverLicense\": \"\",\r\n            \"relationshipToCitizen\": \"Stranger\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtVc=\",\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"witnessRelationshipToEmployeeId\": 1136,\r\n                    \"witnessId\": 1136,\r\n                    \"employeeId\": 1202,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtVg=\",\r\n                    \"modifiedDate\": \"2022-04-01T15:39:23.167038\",\r\n                    \"createdDate\": \"2022-04-01T15:39:23.1669228\",\r\n                    \"createdBy\": \"apiTest\",\r\n                    \"modifiedBy\": \"apiTest\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178872\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.1178868\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-04-01T15:39:23.1177086\",\r\n    \"createdDate\": \"2022-04-01T15:39:23.1177081\",\r\n    \"createdBy\": \"apiTest\",\r\n    \"modifiedBy\": \"apiTest\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/emcot/complaint"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcZW1jb3RcY29tcGxhaW50?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Apr 2022 19:40:43 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"complaintId\": 1202,\n    \"trackingId\": \"DUB4L2K5CA56B1Y\",\n    \"creatorId\": 8,\n    \"dateOfComplaint\": \"03/31/2022\",\n    \"timeOfComplaint\": \"11:31:00\",\n    \"language\": \"English\",\n    \"isCitizen\": false,\n    \"isOfficer\": false,\n    \"officerId\": null,\n    \"isAnonymous\": false,\n    \"isSupervisorFiling\": true,\n    \"supervisorId\": 95474,\n    \"complaintType\": \"Failure to Act\",\n    \"disposition\": \"\",\n    \"status\": \"Editing\",\n    \"cadIncidentNumber\": \"\",\n    \"caseNumber\": \"CPL-2022/006\",\n    \"involvedCitizen\": true,\n    \"involvedEmployee\": true,\n    \"involvedIncident\": true,\n    \"involvedOfficialUseOnly\": true,\n    \"involvedWitness\": true,\n    \"sealed\": false,\n    \"deleteComments\": \"\",\n    \"caseNumberTrackingId\": 5,\n    \"termsAgreed\": false,\n    \"signature\": \"\",\n    \"signDate\": null,\n    \"reviewer\": \"\",\n    \"creator\": \"\",\n    \"concurrencyTs\": \"AAAAAAAAtVI=\",\n    \"citizens\": [\n        {\n            \"citizenId\": 1202,\n            \"complaintId\": 1202,\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"\",\n            \"address\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345\",\n            \"homePhone\": \"111-111-1111 x11___\",\n            \"cellPhone\": \"222-222-2222 x_____\",\n            \"additionalPhone\": \"\",\n            \"email\": \"johnsmith@aol.com\",\n            \"additionalEmail\": \"john.smith@gmail.com\",\n            \"dateOfBirth\": \"03/01/1980\",\n            \"age\": \"45\",\n            \"race\": \"White\",\n            \"gender\": \"Male\",\n            \"driverLicense\": \"\",\n            \"disability\": \"Yes\",\n            \"injured\": false,\n            \"injuryType\": \"\",\n            \"injurySeverity\": \"\",\n            \"seekMedicalAttention\": \"\",\n            \"doctorName\": \"\",\n            \"doctorPhone\": \"\",\n            \"isMinor\": true,\n            \"personFirstName\": \"Sara\",\n            \"personLastName\": \"Smith\",\n            \"personMiddleName\": \"\",\n            \"personAddress\": \"1234 Main Street\",\n            \"personCity\": \"Jacksonville\",\n            \"personState\": \"FL\",\n            \"personZip\": \"12345\",\n            \"personHomePhone\": \"111-111-1111 x_____\",\n            \"personCellPhone\": \"222-222-2222 x_____\",\n            \"personRelationshipToCitizen\": \"\",\n            \"attorneyName\": \"\",\n            \"attorneyPhone\": \"\",\n            \"bestContactTime\": \"0800\",\n            \"primaryLanguageSpoken\": \"Spanish\",\n            \"canCommunicateInEnglish\": \"Yes\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtVM=\",\n            \"typeOfDisability\": \"Mental Illness\",\n            \"personEmail\": \"sarasmith@gmail.com\",\n            \"arrested\": \"Yes\",\n            \"citationNumber\": \"12451245\",\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178047\",\n            \"createdDate\": \"2022-04-01T15:39:23.1178044\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"employees\": [\n        {\n            \"complaintEmployeeId\": 1202,\n            \"complaintId\": 1202,\n            \"employeeId\": \"3762\",\n            \"firstName\": \"James\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"\",\n            \"inUniform\": \"Yes\",\n            \"race\": \"Black\",\n            \"gender\": \"Male\",\n            \"dateOfBirth\": null,\n            \"division\": \"Patrol\",\n            \"section\": \"\",\n            \"unit\": \"Alpha\",\n            \"description\": \"Employee description.\",\n            \"vehicleMake\": \"Volvo\",\n            \"vehicleModel\": \"\",\n            \"vehicleColor\": \"S3\",\n            \"vehicleNumber\": \"12\",\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtVQ=\",\n            \"age\": \"46\",\n            \"userId\": 5,\n            \"witnessRelationshipsToEmployee\": [\n                {\n                    \"witnessRelationshipToEmployeeId\": 1136,\n                    \"witnessId\": 1136,\n                    \"employeeId\": 1202,\n                    \"witnessRelationshipToEmployee\": \"\",\n                    \"nonEditable\": false,\n                    \"concurrencyTs\": \"AAAAAAAAtVg=\",\n                    \"modifiedDate\": \"2022-04-01T15:39:23.167038\",\n                    \"createdDate\": \"2022-04-01T15:39:23.1669228\",\n                    \"createdBy\": \"apiTest\",\n                    \"modifiedBy\": \"apiTest\",\n                    \"deleted\": false\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178331\",\n            \"createdDate\": \"2022-04-01T15:39:23.1178327\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"incidents\": [\n        {\n            \"incidentId\": 1202,\n            \"complaintId\": 1202,\n            \"incidentDate\": \"03/01/2022\",\n            \"incidentDay\": \"Tuesday\",\n            \"incidentTime\": \"00:12:00\",\n            \"evidence\": \"Photo\",\n            \"address\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345\",\n            \"description\": \"Incident description.\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtVU=\",\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178607\",\n            \"createdDate\": \"2022-04-01T15:39:23.1178604\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"officialUseOnly\": [\n        {\n            \"officialUseId\": 1201,\n            \"complaintId\": 1202,\n            \"complaintDate\": \"03/31/2022\",\n            \"complaintTime\": \"11:31:00\",\n            \"complaintReceivedMode\": \"In-person\",\n            \"complaintType\": \"Failure to Act\",\n            \"photographsTaken\": \"Yes\",\n            \"medicalReleaseForm\": \"\",\n            \"observations\": \"Some observation.\",\n            \"complaintDispositionCode\": \"Sustained\",\n            \"assignmentUnit\": \"\",\n            \"routing\": \"Watch Commander\",\n            \"nonEditable\": false,\n            \"receivedByFirstName\": \"James\",\n            \"receivedByLastName\": \"Smith\",\n            \"receivedByRank\": \"Officer\",\n            \"receivedByIDNumber\": \"3762\",\n            \"receivedByUnit\": \"Alpha\",\n            \"isForwarded\": true,\n            \"forwardedToFirstName\": \"Henry\",\n            \"forwardedToLastName\": \"Smith\",\n            \"forwardedToRank\": \"Officer\",\n            \"forwardedToIDNumber\": \"3475\",\n            \"forwardedToUnit\": \"Alpha\",\n            \"dateForwarded\": \"03/11/2022\",\n            \"timeForwarded\": \"00:12:00\",\n            \"concurrencyTs\": \"AAAAAAAAtVY=\",\n            \"dateAssigned\": \"03/22/2022\",\n            \"dateCompleted\": \"04/21/2022\",\n            \"purgeDate\": \"05/04/2022\",\n            \"actionTaken\": \"\",\n            \"allegations\": \"\",\n            \"caseType\": \"\",\n            \"modifiedDate\": \"2022-04-01T15:39:23.1179273\",\n            \"createdDate\": \"2022-04-01T15:39:23.117927\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"reviews\": [],\n    \"witnesses\": [\n        {\n            \"witnessId\": 1136,\n            \"complaintId\": 1202,\n            \"firstName\": \"Sara\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"\",\n            \"address\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345\",\n            \"homePhone\": \"111-111-1111 x_____\",\n            \"cellPhone\": \"222-222-2222 x_____\",\n            \"additionalPhone\": \"\",\n            \"email\": \"sarasmith@gmail.com\",\n            \"additionalEmail\": \"sarasmith@hotmail.com\",\n            \"race\": \"Black\",\n            \"gender\": \"Female\",\n            \"dateOfBirth\": \"\",\n            \"age\": \"30\",\n            \"driverLicense\": \"\",\n            \"relationshipToCitizen\": \"Stranger\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtVc=\",\n            \"witnessRelationshipsToEmployee\": [\n                {\n                    \"witnessRelationshipToEmployeeId\": 1136,\n                    \"witnessId\": 1136,\n                    \"employeeId\": 1202,\n                    \"witnessRelationshipToEmployee\": \"\",\n                    \"nonEditable\": false,\n                    \"concurrencyTs\": \"AAAAAAAAtVg=\",\n                    \"modifiedDate\": \"2022-04-01T15:39:23.167038\",\n                    \"createdDate\": \"2022-04-01T15:39:23.1669228\",\n                    \"createdBy\": \"apiTest\",\n                    \"modifiedBy\": \"apiTest\",\n                    \"deleted\": false\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178872\",\n            \"createdDate\": \"2022-04-01T15:39:23.1178868\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"modifiedDate\": \"2022-04-01T15:39:23.1177086\",\n    \"createdDate\": \"2022-04-01T15:39:23.1177081\",\n    \"createdBy\": \"apiTest\",\n    \"modifiedBy\": \"apiTest\",\n    \"deleted\": false\n}"},{"id":"93c029d4-629f-4bbe-944f-b833ff80fbae","name":"Instance Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"complaintId\": 1202,\r\n    \"trackingId\": \"DUB4L2K5CA56B1Y\",\r\n    \"creatorId\": 8,\r\n    \"dateOfComplaint\": \"03/31/2022\",\r\n    \"timeOfComplaint\": \"11:31:00\",\r\n    \"language\": \"English\",\r\n    \"isCitizen\": false,\r\n    \"isOfficer\": false,\r\n    \"officerId\": null,\r\n    \"isAnonymous\": false,\r\n    \"isSupervisorFiling\": true,\r\n    \"supervisorId\": 95474,\r\n    \"complaintType\": \"Failure to Act\",\r\n    \"disposition\": \"\",\r\n    \"status\": \"Editing\",\r\n    \"cadIncidentNumber\": \"\",\r\n    \"caseNumber\": \"CPL-2022/006\",\r\n    \"involvedCitizen\": true,\r\n    \"involvedEmployee\": true,\r\n    \"involvedIncident\": true,\r\n    \"involvedOfficialUseOnly\": true,\r\n    \"involvedWitness\": true,\r\n    \"sealed\": false,\r\n    \"deleteComments\": \"\",\r\n    \"caseNumberTrackingId\": 5,\r\n    \"termsAgreed\": false,\r\n    \"signature\": \"\",\r\n    \"signDate\": null,\r\n    \"reviewer\": \"\",\r\n    \"creator\": \"\",\r\n    \"concurrencyTs\": \"AAAAAAAAtVI=\",\r\n    \"citizens\": [\r\n        {\r\n            \"citizenId\": 1202,\r\n            \"complaintId\": 1202,\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x11___\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"johnsmith@aol.com\",\r\n            \"additionalEmail\": \"john.smith@gmail.com\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"45\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"driverLicense\": \"\",\r\n            \"disability\": \"Yes\",\r\n            \"injured\": false,\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"seekMedicalAttention\": \"\",\r\n            \"doctorName\": \"\",\r\n            \"doctorPhone\": \"\",\r\n            \"isMinor\": true,\r\n            \"personFirstName\": \"Sara\",\r\n            \"personLastName\": \"Smith\",\r\n            \"personMiddleName\": \"\",\r\n            \"personAddress\": \"1234 Main Street\",\r\n            \"personCity\": \"Jacksonville\",\r\n            \"personState\": \"FL\",\r\n            \"personZip\": \"12345\",\r\n            \"personHomePhone\": \"111-111-1111 x_____\",\r\n            \"personCellPhone\": \"222-222-2222 x_____\",\r\n            \"personRelationshipToCitizen\": \"\",\r\n            \"attorneyName\": \"\",\r\n            \"attorneyPhone\": \"\",\r\n            \"bestContactTime\": \"0800\",\r\n            \"primaryLanguageSpoken\": \"Spanish\",\r\n            \"canCommunicateInEnglish\": \"Yes\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtVM=\",\r\n            \"typeOfDisability\": \"Mental Illness\",\r\n            \"personEmail\": \"sarasmith@gmail.com\",\r\n            \"arrested\": \"Yes\",\r\n            \"citationNumber\": \"12451245\",\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178047\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.1178044\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"employees\": [\r\n        {\r\n            \"complaintEmployeeId\": 1202,\r\n            \"complaintId\": 1202,\r\n            \"employeeId\": \"3762\",\r\n            \"firstName\": \"James\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"inUniform\": \"Yes\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": null,\r\n            \"division\": \"Patrol\",\r\n            \"section\": \"\",\r\n            \"unit\": \"Alpha\",\r\n            \"description\": \"Employee description.\",\r\n            \"vehicleMake\": \"Volvo\",\r\n            \"vehicleModel\": \"\",\r\n            \"vehicleColor\": \"S3\",\r\n            \"vehicleNumber\": \"12\",\r\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtVQ=\",\r\n            \"age\": \"46\",\r\n            \"userId\": 5,\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"witnessRelationshipToEmployeeId\": 1136,\r\n                    \"witnessId\": 1136,\r\n                    \"employeeId\": 1202,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtVg=\",\r\n                    \"modifiedDate\": \"2022-04-01T15:39:23.167038\",\r\n                    \"createdDate\": \"2022-04-01T15:39:23.1669228\",\r\n                    \"createdBy\": \"apiTest\",\r\n                    \"modifiedBy\": \"apiTest\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178331\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.1178327\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"incidents\": [\r\n        {\r\n            \"incidentId\": 1202,\r\n            \"complaintId\": 1202,\r\n            \"incidentDate\": \"03/01/2022\",\r\n            \"incidentDay\": \"Tuesday\",\r\n            \"incidentTime\": \"00:12:00\",\r\n            \"evidence\": \"Photo\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"description\": \"Incident description.\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtVU=\",\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178607\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.1178604\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"officialUseOnly\": [\r\n        {\r\n            \"officialUseId\": 1201,\r\n            \"complaintId\": 1202,\r\n            \"complaintDate\": \"03/31/2022\",\r\n            \"complaintTime\": \"11:31:00\",\r\n            \"complaintReceivedMode\": \"In-person\",\r\n            \"complaintType\": \"Failure to Act\",\r\n            \"photographsTaken\": \"Yes\",\r\n            \"medicalReleaseForm\": \"\",\r\n            \"observations\": \"Some observation.\",\r\n            \"complaintDispositionCode\": \"Sustained\",\r\n            \"assignmentUnit\": \"\",\r\n            \"routing\": \"Watch Commander\",\r\n            \"nonEditable\": false,\r\n            \"receivedByFirstName\": \"James\",\r\n            \"receivedByLastName\": \"Smith\",\r\n            \"receivedByRank\": \"Officer\",\r\n            \"receivedByIDNumber\": \"3762\",\r\n            \"receivedByUnit\": \"Alpha\",\r\n            \"isForwarded\": true,\r\n            \"forwardedToFirstName\": \"Henry\",\r\n            \"forwardedToLastName\": \"Smith\",\r\n            \"forwardedToRank\": \"Officer\",\r\n            \"forwardedToIDNumber\": \"3475\",\r\n            \"forwardedToUnit\": \"Alpha\",\r\n            \"dateForwarded\": \"03/11/2022\",\r\n            \"timeForwarded\": \"00:12:00\",\r\n            \"concurrencyTs\": \"AAAAAAAAtVY=\",\r\n            \"dateAssigned\": \"03/22/2022\",\r\n            \"dateCompleted\": \"04/21/2022\",\r\n            \"purgeDate\": \"05/04/2022\",\r\n            \"actionTaken\": \"\",\r\n            \"allegations\": \"\",\r\n            \"caseType\": \"\",\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1179273\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.117927\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"reviews\": [],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 1136,\r\n            \"complaintId\": 1202,\r\n            \"firstName\": \"Sara\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x_____\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"sarasmith@gmail.com\",\r\n            \"additionalEmail\": \"sarasmith@hotmail.com\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Female\",\r\n            \"dateOfBirth\": \"\",\r\n            \"age\": \"30\",\r\n            \"driverLicense\": \"\",\r\n            \"relationshipToCitizen\": \"Stranger\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtVc=\",\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"witnessRelationshipToEmployeeId\": 1136,\r\n                    \"witnessId\": 1136,\r\n                    \"employeeId\": 1202,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtVg=\",\r\n                    \"modifiedDate\": \"2022-04-01T15:39:23.167038\",\r\n                    \"createdDate\": \"2022-04-01T15:39:23.1669228\",\r\n                    \"createdBy\": \"apiTest\",\r\n                    \"modifiedBy\": \"apiTest\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178872\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.1178868\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-04-01T15:39:23.1177086\",\r\n    \"createdDate\": \"2022-04-01T15:39:23.1177081\",\r\n    \"createdBy\": \"apiTest\",\r\n    \"modifiedBy\": \"apiTest\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/emcot/complaint"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcZW1jb3RcY29tcGxhaW50?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 13:59:31 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Instance not found for the supplied id!\"\n}"},{"id":"b7d8c30f-dc1c-4ee3-a511-21ced6a5fca6","name":"Case Number Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"complaintId\": 1202,\r\n    \"trackingId\": \"DUB4L2K5CA56B1Y\",\r\n    \"creatorId\": 8,\r\n    \"dateOfComplaint\": \"03/31/2022\",\r\n    \"timeOfComplaint\": \"11:31:00\",\r\n    \"language\": \"English\",\r\n    \"isCitizen\": false,\r\n    \"isOfficer\": false,\r\n    \"officerId\": null,\r\n    \"isAnonymous\": false,\r\n    \"isSupervisorFiling\": true,\r\n    \"supervisorId\": 95474,\r\n    \"complaintType\": \"Failure to Act\",\r\n    \"disposition\": \"\",\r\n    \"status\": \"Editing\",\r\n    \"cadIncidentNumber\": \"\",\r\n    \"caseNumber\": \"CPL-2022/006\",\r\n    \"involvedCitizen\": true,\r\n    \"involvedEmployee\": true,\r\n    \"involvedIncident\": true,\r\n    \"involvedOfficialUseOnly\": true,\r\n    \"involvedWitness\": true,\r\n    \"sealed\": false,\r\n    \"deleteComments\": \"\",\r\n    \"caseNumberTrackingId\": 5,\r\n    \"termsAgreed\": false,\r\n    \"signature\": \"\",\r\n    \"signDate\": null,\r\n    \"reviewer\": \"\",\r\n    \"creator\": \"\",\r\n    \"concurrencyTs\": \"AAAAAAAAtVI=\",\r\n    \"citizens\": [\r\n        {\r\n            \"citizenId\": 1202,\r\n            \"complaintId\": 1202,\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x11___\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"johnsmith@aol.com\",\r\n            \"additionalEmail\": \"john.smith@gmail.com\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"45\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"driverLicense\": \"\",\r\n            \"disability\": \"Yes\",\r\n            \"injured\": false,\r\n            \"injuryType\": \"\",\r\n            \"injurySeverity\": \"\",\r\n            \"seekMedicalAttention\": \"\",\r\n            \"doctorName\": \"\",\r\n            \"doctorPhone\": \"\",\r\n            \"isMinor\": true,\r\n            \"personFirstName\": \"Sara\",\r\n            \"personLastName\": \"Smith\",\r\n            \"personMiddleName\": \"\",\r\n            \"personAddress\": \"1234 Main Street\",\r\n            \"personCity\": \"Jacksonville\",\r\n            \"personState\": \"FL\",\r\n            \"personZip\": \"12345\",\r\n            \"personHomePhone\": \"111-111-1111 x_____\",\r\n            \"personCellPhone\": \"222-222-2222 x_____\",\r\n            \"personRelationshipToCitizen\": \"\",\r\n            \"attorneyName\": \"\",\r\n            \"attorneyPhone\": \"\",\r\n            \"bestContactTime\": \"0800\",\r\n            \"primaryLanguageSpoken\": \"Spanish\",\r\n            \"canCommunicateInEnglish\": \"Yes\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtVM=\",\r\n            \"typeOfDisability\": \"Mental Illness\",\r\n            \"personEmail\": \"sarasmith@gmail.com\",\r\n            \"arrested\": \"Yes\",\r\n            \"citationNumber\": \"12451245\",\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178047\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.1178044\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"employees\": [\r\n        {\r\n            \"complaintEmployeeId\": 1202,\r\n            \"complaintId\": 1202,\r\n            \"employeeId\": \"3762\",\r\n            \"firstName\": \"James\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"inUniform\": \"Yes\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": null,\r\n            \"division\": \"Patrol\",\r\n            \"section\": \"\",\r\n            \"unit\": \"Alpha\",\r\n            \"description\": \"Employee description.\",\r\n            \"vehicleMake\": \"Volvo\",\r\n            \"vehicleModel\": \"\",\r\n            \"vehicleColor\": \"S3\",\r\n            \"vehicleNumber\": \"12\",\r\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtVQ=\",\r\n            \"age\": \"46\",\r\n            \"userId\": 5,\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"witnessRelationshipToEmployeeId\": 1136,\r\n                    \"witnessId\": 1136,\r\n                    \"employeeId\": 1202,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtVg=\",\r\n                    \"modifiedDate\": \"2022-04-01T15:39:23.167038\",\r\n                    \"createdDate\": \"2022-04-01T15:39:23.1669228\",\r\n                    \"createdBy\": \"apiTest\",\r\n                    \"modifiedBy\": \"apiTest\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178331\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.1178327\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"incidents\": [\r\n        {\r\n            \"incidentId\": 1202,\r\n            \"complaintId\": 1202,\r\n            \"incidentDate\": \"03/01/2022\",\r\n            \"incidentDay\": \"Tuesday\",\r\n            \"incidentTime\": \"00:12:00\",\r\n            \"evidence\": \"Photo\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"description\": \"Incident description.\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtVU=\",\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178607\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.1178604\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"officialUseOnly\": [\r\n        {\r\n            \"officialUseId\": 1201,\r\n            \"complaintId\": 1202,\r\n            \"complaintDate\": \"03/31/2022\",\r\n            \"complaintTime\": \"11:31:00\",\r\n            \"complaintReceivedMode\": \"In-person\",\r\n            \"complaintType\": \"Failure to Act\",\r\n            \"photographsTaken\": \"Yes\",\r\n            \"medicalReleaseForm\": \"\",\r\n            \"observations\": \"Some observation.\",\r\n            \"complaintDispositionCode\": \"Sustained\",\r\n            \"assignmentUnit\": \"\",\r\n            \"routing\": \"Watch Commander\",\r\n            \"nonEditable\": false,\r\n            \"receivedByFirstName\": \"James\",\r\n            \"receivedByLastName\": \"Smith\",\r\n            \"receivedByRank\": \"Officer\",\r\n            \"receivedByIDNumber\": \"3762\",\r\n            \"receivedByUnit\": \"Alpha\",\r\n            \"isForwarded\": true,\r\n            \"forwardedToFirstName\": \"Henry\",\r\n            \"forwardedToLastName\": \"Smith\",\r\n            \"forwardedToRank\": \"Officer\",\r\n            \"forwardedToIDNumber\": \"3475\",\r\n            \"forwardedToUnit\": \"Alpha\",\r\n            \"dateForwarded\": \"03/11/2022\",\r\n            \"timeForwarded\": \"00:12:00\",\r\n            \"concurrencyTs\": \"AAAAAAAAtVY=\",\r\n            \"dateAssigned\": \"03/22/2022\",\r\n            \"dateCompleted\": \"04/21/2022\",\r\n            \"purgeDate\": \"05/04/2022\",\r\n            \"actionTaken\": \"\",\r\n            \"allegations\": \"\",\r\n            \"caseType\": \"\",\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1179273\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.117927\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"reviews\": [],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 1136,\r\n            \"complaintId\": 1202,\r\n            \"firstName\": \"Sara\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x_____\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"sarasmith@gmail.com\",\r\n            \"additionalEmail\": \"sarasmith@hotmail.com\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Female\",\r\n            \"dateOfBirth\": \"\",\r\n            \"age\": \"30\",\r\n            \"driverLicense\": \"\",\r\n            \"relationshipToCitizen\": \"Stranger\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtVc=\",\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"witnessRelationshipToEmployeeId\": 1136,\r\n                    \"witnessId\": 1136,\r\n                    \"employeeId\": 1202,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtVg=\",\r\n                    \"modifiedDate\": \"2022-04-01T15:39:23.167038\",\r\n                    \"createdDate\": \"2022-04-01T15:39:23.1669228\",\r\n                    \"createdBy\": \"apiTest\",\r\n                    \"modifiedBy\": \"apiTest\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:39:23.1178872\",\r\n            \"createdDate\": \"2022-04-01T15:39:23.1178868\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-04-01T15:39:23.1177086\",\r\n    \"createdDate\": \"2022-04-01T15:39:23.1177081\",\r\n    \"createdBy\": \"apiTest\",\r\n    \"modifiedBy\": \"apiTest\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/emcot/complaint"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcZW1jb3RcY29tcGxhaW50?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 14:00:00 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Supplied Complaint Case Number doesn't exists!\"\n}"}],"_postman_id":"a9d94390-54d7-49a8-9434-0dd0a79ca32a"}],"id":"c0b32410-6542-461e-87c4-93f9ec388265","description":"<p>Methods in this part of the API focus on Complaint functions.</p>\n","_postman_id":"c0b32410-6542-461e-87c4-93f9ec388265","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}}},{"name":"Compliment","item":[{"name":"Get A List of Compliments","id":"08a1c3a8-e14e-4bf8-a1b7-50c9d0b7806f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/emcot/compliment?start_date=10-20-2012&end_date=03-15-2022","description":"<p>Get a list of compliments based of the supplied filter criteria. None of the child entities will be populated on search results.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","emcot","compliment"],"host":["{{BaseUri}}"],"query":[{"description":{"content":"<p>Filter results to include only records after this date.</p>\n","type":"text/plain"},"key":"start_date","value":"10-20-2012"},{"description":{"content":"<p>Filter results to include only records before this date.</p>\n","type":"text/plain"},"key":"end_date","value":"03-15-2022"}],"variable":[]}},"response":[{"id":"4ddb1e89-0864-4360-a49e-fe62bb4596be","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/emcot/compliment?start_date=10-20-2012&end_date=03-15-2022","host":["{{BaseUri}}"],"path":["api","emcot","compliment"],"query":[{"key":"start_date","value":"10-20-2012","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2022","description":"Filter results to include only records before this date."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcZW1jb3RcY29tcGxpbWVudA==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 14:07:00 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"complimentId\": 6,\n        \"trackingId\": \"\",\n        \"creatorId\": null,\n        \"dateOfCompliment\": \"01/27/2021\",\n        \"timeOfCompliment\": null,\n        \"language\": \"\",\n        \"isCitizen\": true,\n        \"isOfficer\": false,\n        \"officerId\": null,\n        \"isAnonymous\": false,\n        \"isSupervisorFiling\": false,\n        \"supervisorId\": null,\n        \"cadIncidentNumber\": \"\",\n        \"caseNumber\": \"COM-2021/001\",\n        \"concurrencyTs\": null,\n        \"status\": \"Completed\",\n        \"complimentType\": \"Friendly\",\n        \"involvedCitizen\": null,\n        \"involvedEmployee\": null,\n        \"involvedIncident\": null,\n        \"involvedOfficialUseOnly\": null,\n        \"involvedWitness\": null,\n        \"reviewer\": \"\",\n        \"creator\": \"Citizen\",\n        \"deleteComments\": \"\",\n        \"sealed\": false,\n        \"caseNumberTrackingId\": null,\n        \"termsAgreed\": false,\n        \"signature\": \"\",\n        \"signDate\": null,\n        \"citizens\": [],\n        \"employees\": [],\n        \"incidents\": [],\n        \"officialUseOnly\": [],\n        \"witnesses\": [],\n        \"modifiedDate\": \"0001-01-01T00:00:00\",\n        \"createdDate\": \"0001-01-01T00:00:00\",\n        \"createdBy\": \"\",\n        \"modifiedBy\": \"\",\n        \"deleted\": false\n    },\n    {\n        \"complimentId\": 7,\n        \"trackingId\": \"\",\n        \"creatorId\": null,\n        \"dateOfCompliment\": \"01/27/2021\",\n        \"timeOfCompliment\": null,\n        \"language\": \"\",\n        \"isCitizen\": true,\n        \"isOfficer\": false,\n        \"officerId\": null,\n        \"isAnonymous\": false,\n        \"isSupervisorFiling\": false,\n        \"supervisorId\": null,\n        \"cadIncidentNumber\": \"\",\n        \"caseNumber\": \"COM-2021/002\",\n        \"concurrencyTs\": null,\n        \"status\": \"Completed\",\n        \"complimentType\": \"Employee Award\",\n        \"involvedCitizen\": null,\n        \"involvedEmployee\": null,\n        \"involvedIncident\": null,\n        \"involvedOfficialUseOnly\": null,\n        \"involvedWitness\": null,\n        \"reviewer\": \"\",\n        \"creator\": \"Citizen\",\n        \"deleteComments\": \"\",\n        \"sealed\": false,\n        \"caseNumberTrackingId\": null,\n        \"termsAgreed\": false,\n        \"signature\": \"\",\n        \"signDate\": null,\n        \"citizens\": [],\n        \"employees\": [],\n        \"incidents\": [],\n        \"officialUseOnly\": [],\n        \"witnesses\": [],\n        \"modifiedDate\": \"0001-01-01T00:00:00\",\n        \"createdDate\": \"0001-01-01T00:00:00\",\n        \"createdBy\": \"\",\n        \"modifiedBy\": \"\",\n        \"deleted\": false\n    },\n    {\n        \"complimentId\": 8,\n        \"trackingId\": \"\",\n        \"creatorId\": null,\n        \"dateOfCompliment\": \"07/01/2020\",\n        \"timeOfCompliment\": null,\n        \"language\": \"\",\n        \"isCitizen\": true,\n        \"isOfficer\": false,\n        \"officerId\": null,\n        \"isAnonymous\": false,\n        \"isSupervisorFiling\": false,\n        \"supervisorId\": null,\n        \"cadIncidentNumber\": \"\",\n        \"caseNumber\": \"COM-2021/003\",\n        \"concurrencyTs\": null,\n        \"status\": \"Completed\",\n        \"complimentType\": \"Above and beyond\",\n        \"involvedCitizen\": null,\n        \"involvedEmployee\": null,\n        \"involvedIncident\": null,\n        \"involvedOfficialUseOnly\": null,\n        \"involvedWitness\": null,\n        \"reviewer\": \"\",\n        \"creator\": \"Citizen\",\n        \"deleteComments\": \"\",\n        \"sealed\": false,\n        \"caseNumberTrackingId\": null,\n        \"termsAgreed\": false,\n        \"signature\": \"\",\n        \"signDate\": null,\n        \"citizens\": [],\n        \"employees\": [],\n        \"incidents\": [],\n        \"officialUseOnly\": [],\n        \"witnesses\": [],\n        \"modifiedDate\": \"0001-01-01T00:00:00\",\n        \"createdDate\": \"0001-01-01T00:00:00\",\n        \"createdBy\": \"\",\n        \"modifiedBy\": \"\",\n        \"deleted\": false\n    }\n]"},{"id":"2db170ef-0df0-4fc1-993b-ebbc294daa06","name":"Invalid End Date","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"{{BaseUri}}/api/emcot/compliment?start_date=10-20-2005&end_date=03-15-2025","host":["{{BaseUri}}"],"path":["api","emcot","compliment"],"query":[{"key":"start_date","value":"10-20-2005","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2025","description":"Filter results to include only records before this date."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 18:58:47 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"End date cannot be greater than the current date!\"\n}"},{"id":"eb0f6320-aa67-4906-ad96-3a9f8641e445","name":"Invalid Start Date","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/emcot/compliment?start_date=10-20-2001&end_date=03-15-2022","host":["{{BaseUri}}"],"path":["api","emcot","compliment"],"query":[{"key":"start_date","value":"10-20-2001","description":"Filter results to include only records after this date."},{"key":"end_date","value":"03-15-2022","description":"Filter results to include only records before this date."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcdmRvYw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 18 Mar 2022 18:59:58 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"Start date cannot be more than 20 years prior to the current date!\"\n}"}],"_postman_id":"08a1c3a8-e14e-4bf8-a1b7-50c9d0b7806f"},{"name":"Get Compliment","id":"19a658b9-5651-47ae-a305-a8a553f7d156","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/emcot/compliment/:complimentId","description":"<p>Get a detailed compliment with relationships based of the supplied Id. An error will be thrown if the supplied Id does not match any existing records. It is recommended you get the Id from the search API method.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","emcot","compliment",":complimentId"],"host":["{{BaseUri}}"],"query":[],"variable":[{"description":{"content":"<p>The record Id of the desired Compliment.</p>\n","type":"text/plain"},"type":"any","value":"1040","key":"complimentId"}]}},"response":[{"id":"6e725312-c85a-45d1-a4d5-35ae44ab5231","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/emcot/compliment/:incidentId","host":["{{BaseUri}}"],"path":["api","emcot","compliment",":incidentId"],"variable":[{"key":"incidentId","value":"1040","description":"The record Id of the desired Incident."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcZW1jb3RcY29tcGxpbWVudFwxMDQw?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Apr 2022 19:43:33 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"complimentId\": 1040,\n    \"trackingId\": \"EB5DM9ZA50DR8ZW\",\n    \"creatorId\": 95474,\n    \"dateOfCompliment\": \"03/31/2022\",\n    \"timeOfCompliment\": \"00:32:00\",\n    \"language\": \"English\",\n    \"isCitizen\": false,\n    \"isOfficer\": false,\n    \"officerId\": null,\n    \"isAnonymous\": false,\n    \"isSupervisorFiling\": true,\n    \"supervisorId\": 95474,\n    \"cadIncidentNumber\": \"\",\n    \"caseNumber\": \"COM-2022/027\",\n    \"concurrencyTs\": \"AAAAAAAAtTY=\",\n    \"status\": \"Editing\",\n    \"complimentType\": \"Friendly\",\n    \"involvedCitizen\": true,\n    \"involvedEmployee\": true,\n    \"involvedIncident\": true,\n    \"involvedOfficialUseOnly\": true,\n    \"involvedWitness\": true,\n    \"reviewer\": \"\",\n    \"creator\": \"\",\n    \"deleteComments\": \"\",\n    \"sealed\": false,\n    \"caseNumberTrackingId\": 27,\n    \"termsAgreed\": false,\n    \"signature\": \"\",\n    \"signDate\": null,\n    \"citizens\": [\n        {\n            \"citizenId\": 1040,\n            \"complimentId\": 1040,\n            \"firstName\": \"Sara\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"\",\n            \"address\": \"12345\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345\",\n            \"homePhone\": \"111-111-1111 x_____\",\n            \"cellPhone\": \"222-222-2222 x_____\",\n            \"additionalPhone\": \"\",\n            \"email\": \"sarasmith@gmail.com\",\n            \"additionalEmail\": \"\",\n            \"dateOfBirth\": \"03/01/1980\",\n            \"age\": \"\",\n            \"race\": \"White\",\n            \"gender\": \"Female\",\n            \"disability\": \"\",\n            \"isMinor\": true,\n            \"personFirstName\": \"John\",\n            \"personLastName\": \"Smith\",\n            \"personMiddleName\": \"\",\n            \"personAddress\": \"1234 Main Street\",\n            \"personCity\": \"Jacksonville\",\n            \"personState\": \"FL\",\n            \"personZip\": \"12345\",\n            \"personHomePhone\": \"111-111-1111 x_____\",\n            \"personCellPhone\": \"222-222-2222 x_____\",\n            \"personRelationshipToCitizen\": \"\",\n            \"bestContactTime\": \"1212\",\n            \"primaryLanguageSpoken\": \"English\",\n            \"canCommunicateInEnglish\": \"Yes\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtTA=\",\n            \"typeOfDisability\": \"\",\n            \"personEmail\": \"johnsmith@gmail.com\",\n            \"modifiedDate\": \"2022-03-31T13:02:06.2305584\",\n            \"createdDate\": \"2022-03-31T12:32:35.3530811\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false\n        }\n    ],\n    \"employees\": [\n        {\n            \"complimentEmployeeId\": 1040,\n            \"complimentId\": 1040,\n            \"employeeId\": \"B123456\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Simon\",\n            \"inUniform\": \"Yes\",\n            \"race\": \"Asian\",\n            \"gender\": \"Female\",\n            \"dateOfBirth\": null,\n            \"division\": \"Investigations Division\",\n            \"section\": \"\",\n            \"unit\": \"Patrol Unit\",\n            \"description\": \"An employee description.\",\n            \"vehicleMake\": \"MINI\",\n            \"vehicleModel\": \"\",\n            \"vehicleColor\": \"\",\n            \"vehicleNumber\": \"Cooper\",\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtTE=\",\n            \"age\": \"42\",\n            \"userId\": 95475,\n            \"witnessRelationshipsToEmployee\": [\n                {\n                    \"witnessRelationshipToEmployeeId\": 1028,\n                    \"witnessId\": 1028,\n                    \"employeeId\": 1040,\n                    \"witnessRelationshipToEmployee\": \"\",\n                    \"nonEditable\": false,\n                    \"concurrencyTs\": \"AAAAAAAAtTU=\",\n                    \"modifiedDate\": \"2022-03-31T13:02:06.2305933\",\n                    \"createdDate\": \"2022-03-31T12:32:35.5855041\",\n                    \"createdBy\": \"durandpeterson@leftasystems.org\",\n                    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n                    \"deleted\": false\n                }\n            ],\n            \"modifiedDate\": \"2022-03-31T13:02:06.230614\",\n            \"createdDate\": \"2022-03-31T12:32:35.3662635\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false\n        }\n    ],\n    \"incidents\": [\n        {\n            \"incidentId\": 1040,\n            \"complimentId\": 1040,\n            \"incidentDate\": \"03/01/2022\",\n            \"incidentDay\": \"Tuesday\",\n            \"incidentTime\": \"00:12:00\",\n            \"evidence\": \"\",\n            \"address\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345\",\n            \"description\": \"A description of the incident.\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtTI=\",\n            \"modifiedDate\": \"2022-03-31T13:02:06.2306339\",\n            \"createdDate\": \"2022-03-31T12:32:35.3753118\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false\n        }\n    ],\n    \"officialUseOnly\": [\n        {\n            \"officalUseId\": 1040,\n            \"complimentId\": 1040,\n            \"complimentDate\": \"03/31/2022\",\n            \"complimentTime\": \"12:32:00\",\n            \"complimentReceivedMode\": \"Email\",\n            \"complimentType\": \"Friendly\",\n            \"photographsTaken\": \"\",\n            \"medicalReleaseForm\": \"\",\n            \"observations\": \"These are my observations.\",\n            \"complimentDispositionCode\": \"value 1\",\n            \"assignmentUnit\": \"\",\n            \"routing\": \"Watch Commander\",\n            \"nonEditable\": false,\n            \"receivedByFirstName\": \"John\",\n            \"receivedByLastName\": \"Smith\",\n            \"receivedByRank\": \"Captain\",\n            \"receivedByIDNumber\": \"B123456\",\n            \"receivedByUnit\": \"K-9 Unit\",\n            \"isForwarded\": false,\n            \"forwardedToFirstName\": \"\",\n            \"forwardedToLastName\": \"\",\n            \"forwardedToRank\": \"\",\n            \"forwardedToIDNumber\": \"\",\n            \"forwardedToUnit\": \"\",\n            \"dateForwarded\": \"\",\n            \"timeForwarded\": null,\n            \"concurrencyTs\": \"AAAAAAAAtTM=\",\n            \"purgeDate\": \"\",\n            \"modifiedDate\": \"2022-03-31T13:02:06.2306577\",\n            \"createdDate\": \"2022-03-31T12:32:35.4021491\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false\n        }\n    ],\n    \"witnesses\": [\n        {\n            \"witnessId\": 1028,\n            \"complimentId\": 1040,\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"\",\n            \"address\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345\",\n            \"homePhone\": \"111-111-1111 x_____\",\n            \"cellPhone\": \"222-222-2222 x_____\",\n            \"additionalPhone\": \"\",\n            \"email\": \"johnsmith@gmail.com\",\n            \"additionalEmail\": \"\",\n            \"race\": \"Black\",\n            \"gender\": \"Male\",\n            \"dateOfBirth\": \"03/01/1980\",\n            \"age\": \"\",\n            \"driverLicense\": \"\",\n            \"relationshipToCitizen\": \"Student\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtTQ=\",\n            \"witnessRelationshipsToEmployee\": [\n                {\n                    \"witnessRelationshipToEmployeeId\": 1028,\n                    \"witnessId\": 1028,\n                    \"employeeId\": 1040,\n                    \"witnessRelationshipToEmployee\": \"\",\n                    \"nonEditable\": false,\n                    \"concurrencyTs\": \"AAAAAAAAtTU=\",\n                    \"modifiedDate\": \"2022-03-31T13:02:06.2305933\",\n                    \"createdDate\": \"2022-03-31T12:32:35.5855041\",\n                    \"createdBy\": \"durandpeterson@leftasystems.org\",\n                    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n                    \"deleted\": false\n                }\n            ],\n            \"modifiedDate\": \"2022-03-31T13:02:06.2305884\",\n            \"createdDate\": \"2022-03-31T12:32:35.3873811\",\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n            \"deleted\": false\n        }\n    ],\n    \"modifiedDate\": \"2022-03-31T13:02:06.2306729\",\n    \"createdDate\": \"2022-03-31T12:32:35.3364562\",\n    \"createdBy\": \"durandpeterson@leftasystems.org\",\n    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\n    \"deleted\": false\n}"},{"id":"ebb06639-ed6c-4243-a63b-b94468362ac0","name":"Instance Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BaseUri}}/api/emcot/compliment/:incidentId","host":["{{BaseUri}}"],"path":["api","emcot","compliment",":incidentId"],"variable":[{"key":"incidentId","value":"1","description":"The record Id of the desired Incident."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcZW1jb3RcY29tcGxpbWVudFwx?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 14:09:59 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Instance not found for the supplied id!\"\n}"}],"_postman_id":"19a658b9-5651-47ae-a305-a8a553f7d156"},{"name":"Create Compliment","id":"d785f860-613a-41d9-84d0-707f89b0fde4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"trackingId\": \"EB5DM9ZA50DR8ZW\",\r\n    \"creatorId\": 95474,\r\n    \"dateOfCompliment\": \"03/31/2022\",\r\n    \"timeOfCompliment\": \"00:32:00\",\r\n    \"language\": \"English\",\r\n    \"isCitizen\": false,\r\n    \"isOfficer\": false,\r\n    \"officerId\": null,\r\n    \"isAnonymous\": false,\r\n    \"isSupervisorFiling\": true,\r\n    \"supervisorId\": 95474,\r\n    \"cadIncidentNumber\": \"\",\r\n    \"caseNumber\": \"COM-2022/028\",\r\n    \"concurrencyTs\": \"AAAAAAAAtTY=\",\r\n    \"status\": \"Editing\",\r\n    \"complimentType\": \"Friendly\",\r\n    \"involvedCitizen\": true,\r\n    \"involvedEmployee\": true,\r\n    \"involvedIncident\": true,\r\n    \"involvedOfficialUseOnly\": true,\r\n    \"involvedWitness\": true,\r\n    \"reviewer\": \"\",\r\n    \"creator\": \"\",\r\n    \"deleteComments\": \"\",\r\n    \"sealed\": false,\r\n    \"caseNumberTrackingId\": 27,\r\n    \"termsAgreed\": false,\r\n    \"signature\": \"\",\r\n    \"signDate\": null,\r\n    \"citizens\": [\r\n        {\r\n            \"firstName\": \"Sara\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"12345\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x_____\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"sarasmith@gmail.com\",\r\n            \"additionalEmail\": \"\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Female\",\r\n            \"disability\": \"\",\r\n            \"isMinor\": true,\r\n            \"personFirstName\": \"John\",\r\n            \"personLastName\": \"Smith\",\r\n            \"personMiddleName\": \"\",\r\n            \"personAddress\": \"1234 Main Street\",\r\n            \"personCity\": \"Jacksonville\",\r\n            \"personState\": \"FL\",\r\n            \"personZip\": \"12345\",\r\n            \"personHomePhone\": \"111-111-1111 x_____\",\r\n            \"personCellPhone\": \"222-222-2222 x_____\",\r\n            \"personRelationshipToCitizen\": \"\",\r\n            \"bestContactTime\": \"1212\",\r\n            \"primaryLanguageSpoken\": \"English\",\r\n            \"canCommunicateInEnglish\": \"Yes\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtTA=\",\r\n            \"typeOfDisability\": \"\",\r\n            \"personEmail\": \"johnsmith@gmail.com\",\r\n            \"modifiedDate\": \"2022-03-31T13:02:06.2305584\",\r\n            \"createdDate\": \"2022-03-31T12:32:35.3530811\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"employees\": [\r\n        {\r\n            \"employeeId\": \"B123456\",\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Simon\",\r\n            \"inUniform\": \"Yes\",\r\n            \"race\": \"Asian\",\r\n            \"gender\": \"Female\",\r\n            \"dateOfBirth\": null,\r\n            \"division\": \"Investigations Division\",\r\n            \"section\": \"\",\r\n            \"unit\": \"Patrol Unit\",\r\n            \"description\": \"An employee description.\",\r\n            \"vehicleMake\": \"MINI\",\r\n            \"vehicleModel\": \"\",\r\n            \"vehicleColor\": \"\",\r\n            \"vehicleNumber\": \"Cooper\",\r\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtTE=\",\r\n            \"age\": \"42\",\r\n            \"userId\": 95475,\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"employeeId\": 1040,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtTU=\",\r\n                    \"modifiedDate\": \"2022-03-31T13:02:06.2305933\",\r\n                    \"createdDate\": \"2022-03-31T12:32:35.5855041\",\r\n                    \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T13:02:06.230614\",\r\n            \"createdDate\": \"2022-03-31T12:32:35.3662635\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"incidents\": [\r\n        {\r\n            \"incidentDate\": \"03/01/2022\",\r\n            \"incidentDay\": \"Tuesday\",\r\n            \"incidentTime\": \"00:12:00\",\r\n            \"evidence\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"description\": \"A description of the incident.\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtTI=\",\r\n            \"modifiedDate\": \"2022-03-31T13:02:06.2306339\",\r\n            \"createdDate\": \"2022-03-31T12:32:35.3753118\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"officialUseOnly\": [\r\n        {\r\n            \"complimentDate\": \"03/31/2022\",\r\n            \"complimentTime\": \"12:32:00\",\r\n            \"complimentReceivedMode\": \"Email\",\r\n            \"complimentType\": \"Friendly\",\r\n            \"photographsTaken\": \"\",\r\n            \"medicalReleaseForm\": \"\",\r\n            \"observations\": \"These are my observations.\",\r\n            \"complimentDispositionCode\": \"value 1\",\r\n            \"assignmentUnit\": \"\",\r\n            \"routing\": \"Watch Commander\",\r\n            \"nonEditable\": false,\r\n            \"receivedByFirstName\": \"John\",\r\n            \"receivedByLastName\": \"Smith\",\r\n            \"receivedByRank\": \"Captain\",\r\n            \"receivedByIDNumber\": \"B123456\",\r\n            \"receivedByUnit\": \"K-9 Unit\",\r\n            \"isForwarded\": false,\r\n            \"forwardedToFirstName\": \"\",\r\n            \"forwardedToLastName\": \"\",\r\n            \"forwardedToRank\": \"\",\r\n            \"forwardedToIDNumber\": \"\",\r\n            \"forwardedToUnit\": \"\",\r\n            \"dateForwarded\": \"\",\r\n            \"timeForwarded\": null,\r\n            \"concurrencyTs\": \"AAAAAAAAtTM=\",\r\n            \"purgeDate\": \"\",\r\n            \"modifiedDate\": \"2022-03-31T13:02:06.2306577\",\r\n            \"createdDate\": \"2022-03-31T12:32:35.4021491\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x_____\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"johnsmith@gmail.com\",\r\n            \"additionalEmail\": \"\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"driverLicense\": \"\",\r\n            \"relationshipToCitizen\": \"Student\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtTQ=\",\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"employeeId\": 1040,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtTU=\",\r\n                    \"modifiedDate\": \"2022-03-31T13:02:06.2305933\",\r\n                    \"createdDate\": \"2022-03-31T12:32:35.5855041\",\r\n                    \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T13:02:06.2305884\",\r\n            \"createdDate\": \"2022-03-31T12:32:35.3873811\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-03-31T13:02:06.2306729\",\r\n    \"createdDate\": \"2022-03-31T12:32:35.3364562\",\r\n    \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/emcot/compliment","description":"<p>Create a new compliment. An error will be thrown if the supplied Case Number already exists in the system. You must ensure that each case number is unique.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","emcot","compliment"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"3daf470c-a8ed-4950-9b9f-7f8712c21a6b","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"trackingId\": \"EB5DM9ZA50DR8ZW\",\r\n    \"creatorId\": 95474,\r\n    \"dateOfCompliment\": \"03/31/2022\",\r\n    \"timeOfCompliment\": \"00:32:00\",\r\n    \"language\": \"English\",\r\n    \"isCitizen\": false,\r\n    \"isOfficer\": false,\r\n    \"officerId\": null,\r\n    \"isAnonymous\": false,\r\n    \"isSupervisorFiling\": true,\r\n    \"supervisorId\": 95474,\r\n    \"cadIncidentNumber\": \"\",\r\n    \"caseNumber\": \"COM-2022/028\",\r\n    \"concurrencyTs\": \"AAAAAAAAtTY=\",\r\n    \"status\": \"Editing\",\r\n    \"complimentType\": \"Friendly\",\r\n    \"involvedCitizen\": true,\r\n    \"involvedEmployee\": true,\r\n    \"involvedIncident\": true,\r\n    \"involvedOfficialUseOnly\": true,\r\n    \"involvedWitness\": true,\r\n    \"reviewer\": \"\",\r\n    \"creator\": \"\",\r\n    \"deleteComments\": \"\",\r\n    \"sealed\": false,\r\n    \"caseNumberTrackingId\": 27,\r\n    \"termsAgreed\": false,\r\n    \"signature\": \"\",\r\n    \"signDate\": null,\r\n    \"citizens\": [\r\n        {\r\n            \"firstName\": \"Sara\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"12345\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x_____\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"sarasmith@gmail.com\",\r\n            \"additionalEmail\": \"\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Female\",\r\n            \"disability\": \"\",\r\n            \"isMinor\": true,\r\n            \"personFirstName\": \"John\",\r\n            \"personLastName\": \"Smith\",\r\n            \"personMiddleName\": \"\",\r\n            \"personAddress\": \"1234 Main Street\",\r\n            \"personCity\": \"Jacksonville\",\r\n            \"personState\": \"FL\",\r\n            \"personZip\": \"12345\",\r\n            \"personHomePhone\": \"111-111-1111 x_____\",\r\n            \"personCellPhone\": \"222-222-2222 x_____\",\r\n            \"personRelationshipToCitizen\": \"\",\r\n            \"bestContactTime\": \"1212\",\r\n            \"primaryLanguageSpoken\": \"English\",\r\n            \"canCommunicateInEnglish\": \"Yes\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtTA=\",\r\n            \"typeOfDisability\": \"\",\r\n            \"personEmail\": \"johnsmith@gmail.com\",\r\n            \"modifiedDate\": \"2022-03-31T13:02:06.2305584\",\r\n            \"createdDate\": \"2022-03-31T12:32:35.3530811\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"employees\": [\r\n        {\r\n            \"employeeId\": \"B123456\",\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Simon\",\r\n            \"inUniform\": \"Yes\",\r\n            \"race\": \"Asian\",\r\n            \"gender\": \"Female\",\r\n            \"dateOfBirth\": null,\r\n            \"division\": \"Investigations Division\",\r\n            \"section\": \"\",\r\n            \"unit\": \"Patrol Unit\",\r\n            \"description\": \"An employee description.\",\r\n            \"vehicleMake\": \"MINI\",\r\n            \"vehicleModel\": \"\",\r\n            \"vehicleColor\": \"\",\r\n            \"vehicleNumber\": \"Cooper\",\r\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtTE=\",\r\n            \"age\": \"42\",\r\n            \"userId\": 95475,\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"employeeId\": 1040,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtTU=\",\r\n                    \"modifiedDate\": \"2022-03-31T13:02:06.2305933\",\r\n                    \"createdDate\": \"2022-03-31T12:32:35.5855041\",\r\n                    \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T13:02:06.230614\",\r\n            \"createdDate\": \"2022-03-31T12:32:35.3662635\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"incidents\": [\r\n        {\r\n            \"incidentDate\": \"03/01/2022\",\r\n            \"incidentDay\": \"Tuesday\",\r\n            \"incidentTime\": \"00:12:00\",\r\n            \"evidence\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"description\": \"A description of the incident.\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtTI=\",\r\n            \"modifiedDate\": \"2022-03-31T13:02:06.2306339\",\r\n            \"createdDate\": \"2022-03-31T12:32:35.3753118\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"officialUseOnly\": [\r\n        {\r\n            \"complimentDate\": \"03/31/2022\",\r\n            \"complimentTime\": \"12:32:00\",\r\n            \"complimentReceivedMode\": \"Email\",\r\n            \"complimentType\": \"Friendly\",\r\n            \"photographsTaken\": \"\",\r\n            \"medicalReleaseForm\": \"\",\r\n            \"observations\": \"These are my observations.\",\r\n            \"complimentDispositionCode\": \"value 1\",\r\n            \"assignmentUnit\": \"\",\r\n            \"routing\": \"Watch Commander\",\r\n            \"nonEditable\": false,\r\n            \"receivedByFirstName\": \"John\",\r\n            \"receivedByLastName\": \"Smith\",\r\n            \"receivedByRank\": \"Captain\",\r\n            \"receivedByIDNumber\": \"B123456\",\r\n            \"receivedByUnit\": \"K-9 Unit\",\r\n            \"isForwarded\": false,\r\n            \"forwardedToFirstName\": \"\",\r\n            \"forwardedToLastName\": \"\",\r\n            \"forwardedToRank\": \"\",\r\n            \"forwardedToIDNumber\": \"\",\r\n            \"forwardedToUnit\": \"\",\r\n            \"dateForwarded\": \"\",\r\n            \"timeForwarded\": null,\r\n            \"concurrencyTs\": \"AAAAAAAAtTM=\",\r\n            \"purgeDate\": \"\",\r\n            \"modifiedDate\": \"2022-03-31T13:02:06.2306577\",\r\n            \"createdDate\": \"2022-03-31T12:32:35.4021491\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x_____\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"johnsmith@gmail.com\",\r\n            \"additionalEmail\": \"\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"driverLicense\": \"\",\r\n            \"relationshipToCitizen\": \"Student\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtTQ=\",\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"employeeId\": 1040,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtTU=\",\r\n                    \"modifiedDate\": \"2022-03-31T13:02:06.2305933\",\r\n                    \"createdDate\": \"2022-03-31T12:32:35.5855041\",\r\n                    \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-03-31T13:02:06.2305884\",\r\n            \"createdDate\": \"2022-03-31T12:32:35.3873811\",\r\n            \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n            \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-03-31T13:02:06.2306729\",\r\n    \"createdDate\": \"2022-03-31T12:32:35.3364562\",\r\n    \"createdBy\": \"durandpeterson@leftasystems.org\",\r\n    \"modifiedBy\": \"durandpeterson@leftasystems.org\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/emcot/compliment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcZW1jb3RcY29tcGxpbWVudA==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Apr 2022 19:47:59 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"complimentId\": 1041,\n    \"trackingId\": \"6X3YZ5X5CPQZGJT\",\n    \"creatorId\": 8,\n    \"dateOfCompliment\": \"03/31/2022\",\n    \"timeOfCompliment\": \"00:32:00\",\n    \"language\": \"English\",\n    \"isCitizen\": false,\n    \"isOfficer\": false,\n    \"officerId\": null,\n    \"isAnonymous\": false,\n    \"isSupervisorFiling\": true,\n    \"supervisorId\": 95474,\n    \"cadIncidentNumber\": \"\",\n    \"caseNumber\": \"COM-2022/028\",\n    \"concurrencyTs\": \"AAAAAAAAtWA=\",\n    \"status\": \"Editing\",\n    \"complimentType\": \"Friendly\",\n    \"involvedCitizen\": true,\n    \"involvedEmployee\": true,\n    \"involvedIncident\": true,\n    \"involvedOfficialUseOnly\": true,\n    \"involvedWitness\": true,\n    \"reviewer\": \"\",\n    \"creator\": \"\",\n    \"deleteComments\": \"\",\n    \"sealed\": false,\n    \"caseNumberTrackingId\": 27,\n    \"termsAgreed\": false,\n    \"signature\": \"\",\n    \"signDate\": null,\n    \"citizens\": [\n        {\n            \"citizenId\": 1041,\n            \"complimentId\": 1041,\n            \"firstName\": \"Sara\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"\",\n            \"address\": \"12345\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345\",\n            \"homePhone\": \"111-111-1111 x_____\",\n            \"cellPhone\": \"222-222-2222 x_____\",\n            \"additionalPhone\": \"\",\n            \"email\": \"sarasmith@gmail.com\",\n            \"additionalEmail\": \"\",\n            \"dateOfBirth\": \"03/01/1980\",\n            \"age\": \"\",\n            \"race\": \"White\",\n            \"gender\": \"Female\",\n            \"disability\": \"\",\n            \"isMinor\": true,\n            \"personFirstName\": \"John\",\n            \"personLastName\": \"Smith\",\n            \"personMiddleName\": \"\",\n            \"personAddress\": \"1234 Main Street\",\n            \"personCity\": \"Jacksonville\",\n            \"personState\": \"FL\",\n            \"personZip\": \"12345\",\n            \"personHomePhone\": \"111-111-1111 x_____\",\n            \"personCellPhone\": \"222-222-2222 x_____\",\n            \"personRelationshipToCitizen\": \"\",\n            \"bestContactTime\": \"1212\",\n            \"primaryLanguageSpoken\": \"English\",\n            \"canCommunicateInEnglish\": \"Yes\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtWE=\",\n            \"typeOfDisability\": \"\",\n            \"personEmail\": \"johnsmith@gmail.com\",\n            \"modifiedDate\": \"2022-04-01T15:47:58.9575293\",\n            \"createdDate\": \"2022-04-01T15:47:58.9575288\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"employees\": [\n        {\n            \"complimentEmployeeId\": 1041,\n            \"complimentId\": 1041,\n            \"employeeId\": \"B123456\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Simon\",\n            \"inUniform\": \"Yes\",\n            \"race\": \"Asian\",\n            \"gender\": \"Female\",\n            \"dateOfBirth\": null,\n            \"division\": \"Investigations Division\",\n            \"section\": \"\",\n            \"unit\": \"Patrol Unit\",\n            \"description\": \"An employee description.\",\n            \"vehicleMake\": \"MINI\",\n            \"vehicleModel\": \"\",\n            \"vehicleColor\": \"\",\n            \"vehicleNumber\": \"Cooper\",\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtWI=\",\n            \"age\": \"42\",\n            \"userId\": 95475,\n            \"witnessRelationshipsToEmployee\": [\n                {\n                    \"witnessRelationshipToEmployeeId\": 1029,\n                    \"witnessId\": 1029,\n                    \"employeeId\": 1041,\n                    \"witnessRelationshipToEmployee\": \"\",\n                    \"nonEditable\": false,\n                    \"concurrencyTs\": \"AAAAAAAAtWY=\",\n                    \"modifiedDate\": \"2022-04-01T15:47:59.1270545\",\n                    \"createdDate\": \"2022-04-01T15:47:59.1268604\",\n                    \"createdBy\": \"apiTest\",\n                    \"modifiedBy\": \"apiTest\",\n                    \"deleted\": false\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:47:58.9695373\",\n            \"createdDate\": \"2022-04-01T15:47:58.9695367\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"incidents\": [\n        {\n            \"incidentId\": 1041,\n            \"complimentId\": 1041,\n            \"incidentDate\": \"03/01/2022\",\n            \"incidentDay\": \"Tuesday\",\n            \"incidentTime\": \"00:12:00\",\n            \"evidence\": \"\",\n            \"address\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345\",\n            \"description\": \"A description of the incident.\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtWM=\",\n            \"modifiedDate\": \"2022-04-01T15:47:58.9776696\",\n            \"createdDate\": \"2022-04-01T15:47:58.9776691\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"officialUseOnly\": [\n        {\n            \"officalUseId\": 1041,\n            \"complimentId\": 1041,\n            \"complimentDate\": \"03/31/2022\",\n            \"complimentTime\": \"12:32:00\",\n            \"complimentReceivedMode\": \"Email\",\n            \"complimentType\": \"Friendly\",\n            \"photographsTaken\": \"\",\n            \"medicalReleaseForm\": \"\",\n            \"observations\": \"These are my observations.\",\n            \"complimentDispositionCode\": \"value 1\",\n            \"assignmentUnit\": \"\",\n            \"routing\": \"Watch Commander\",\n            \"nonEditable\": false,\n            \"receivedByFirstName\": \"John\",\n            \"receivedByLastName\": \"Smith\",\n            \"receivedByRank\": \"Captain\",\n            \"receivedByIDNumber\": \"B123456\",\n            \"receivedByUnit\": \"K-9 Unit\",\n            \"isForwarded\": false,\n            \"forwardedToFirstName\": \"\",\n            \"forwardedToLastName\": \"\",\n            \"forwardedToRank\": \"\",\n            \"forwardedToIDNumber\": \"\",\n            \"forwardedToUnit\": \"\",\n            \"dateForwarded\": \"\",\n            \"timeForwarded\": null,\n            \"concurrencyTs\": \"AAAAAAAAtWQ=\",\n            \"purgeDate\": \"\",\n            \"modifiedDate\": \"2022-04-01T15:47:59.0024655\",\n            \"createdDate\": \"2022-04-01T15:47:59.002465\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"witnesses\": [\n        {\n            \"witnessId\": 1029,\n            \"complimentId\": 1041,\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"\",\n            \"address\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345\",\n            \"homePhone\": \"111-111-1111 x_____\",\n            \"cellPhone\": \"222-222-2222 x_____\",\n            \"additionalPhone\": \"\",\n            \"email\": \"johnsmith@gmail.com\",\n            \"additionalEmail\": \"\",\n            \"race\": \"Black\",\n            \"gender\": \"Male\",\n            \"dateOfBirth\": \"03/01/1980\",\n            \"age\": \"\",\n            \"driverLicense\": \"\",\n            \"relationshipToCitizen\": \"Student\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtWU=\",\n            \"witnessRelationshipsToEmployee\": [\n                {\n                    \"witnessRelationshipToEmployeeId\": 1029,\n                    \"witnessId\": 1029,\n                    \"employeeId\": 1041,\n                    \"witnessRelationshipToEmployee\": \"\",\n                    \"nonEditable\": false,\n                    \"concurrencyTs\": \"AAAAAAAAtWY=\",\n                    \"modifiedDate\": \"2022-04-01T15:47:59.1270545\",\n                    \"createdDate\": \"2022-04-01T15:47:59.1268604\",\n                    \"createdBy\": \"apiTest\",\n                    \"modifiedBy\": \"apiTest\",\n                    \"deleted\": false\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:47:58.988931\",\n            \"createdDate\": \"2022-04-01T15:47:58.9889305\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"modifiedDate\": \"2022-04-01T15:47:58.9412137\",\n    \"createdDate\": \"2022-04-01T15:47:58.9412132\",\n    \"createdBy\": \"apiTest\",\n    \"modifiedBy\": \"apiTest\",\n    \"deleted\": false\n}"},{"id":"95c8a524-f3d9-4c1f-a63b-6fa6183ee51b","name":"Case File Already Exists","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"creatorId\": null,\r\n    \"dateOfCompliment\": \"01/27/2021\",\r\n    \"timeOfCompliment\": \"00:38:00\",\r\n    \"language\": \"English\",\r\n    \"isCitizen\": true,\r\n    \"isOfficer\": false,\r\n    \"officerId\": null,\r\n    \"isAnonymous\": false,\r\n    \"isSupervisorFiling\": false,\r\n    \"supervisorId\": null,\r\n    \"cadIncidentNumber\": \"\",\r\n    \"caseNumber\": \"COM-2021/001\",\r\n    \"concurrencyTs\": \"AAAAAAAAFTg=\",\r\n    \"status\": \"Completed\",\r\n    \"complimentType\": \"Friendly\",\r\n    \"involvedCitizen\": true,\r\n    \"involvedEmployee\": true,\r\n    \"involvedIncident\": true,\r\n    \"involvedOfficialUseOnly\": true,\r\n    \"involvedWitness\": true,\r\n    \"reviewer\": \"\",\r\n    \"creator\": \"\",\r\n    \"deleteComments\": \"\",\r\n    \"sealed\": false,\r\n    \"caseNumberTrackingId\": 1,\r\n    \"termsAgreed\": false,\r\n    \"signature\": \"\",\r\n    \"signDate\": null,\r\n    \"citizens\": [\r\n        {\r\n            \"firstName\": \"James\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"123 Johnson St.\",\r\n            \"city\": \"Norfolk\",\r\n            \"state\": \"VA\",\r\n            \"zip\": \"45698\",\r\n            \"homePhone\": \"\",\r\n            \"cellPhone\": \"123-456-7890 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"jamesmith@gmailtest.com\",\r\n            \"additionalEmail\": \"\",\r\n            \"dateOfBirth\": \"\",\r\n            \"age\": \"\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"disability\": \"\",\r\n            \"isMinor\": false,\r\n            \"personFirstName\": \"\",\r\n            \"personLastName\": \"\",\r\n            \"personMiddleName\": \"\",\r\n            \"personAddress\": \"\",\r\n            \"personCity\": \"\",\r\n            \"personState\": \"\",\r\n            \"personZip\": \"\",\r\n            \"personHomePhone\": \"\",\r\n            \"personCellPhone\": \"\",\r\n            \"personRelationshipToCitizen\": \"\",\r\n            \"bestContactTime\": \"\",\r\n            \"primaryLanguageSpoken\": \"English\",\r\n            \"canCommunicateInEnglish\": \"Yes\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAFN4=\",\r\n            \"typeOfDisability\": \"\",\r\n            \"personEmail\": \"\",\r\n            \"modifiedDate\": \"2021-01-31T10:57:32.7508431\",\r\n            \"createdDate\": \"2021-01-27T13:03:59.7049055\",\r\n            \"createdBy\": \"jamesmith@gmailtest.com\",\r\n            \"modifiedBy\": \"bryansmith@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"employees\": [\r\n        {\r\n            \"employeeId\": \"3451\",\r\n            \"firstName\": \"David\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"inUniform\": \"Yes\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": null,\r\n            \"division\": \"Patrol Division\",\r\n            \"section\": \"\",\r\n            \"unit\": \"\",\r\n            \"description\": \"\",\r\n            \"vehicleMake\": \"\",\r\n            \"vehicleModel\": \"\",\r\n            \"vehicleColor\": \"\",\r\n            \"vehicleNumber\": \"\",\r\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAFPA=\",\r\n            \"age\": \"32\",\r\n            \"userId\": null,\r\n            \"witnessRelationshipsToEmployee\": [],\r\n            \"modifiedDate\": \"2021-01-31T10:57:32.7508914\",\r\n            \"createdDate\": \"2021-01-27T13:03:59.7355754\",\r\n            \"createdBy\": \"jamesmith@gmailtest.com\",\r\n            \"modifiedBy\": \"bryansmith@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"incidents\": [\r\n        {\r\n            \"incidentDate\": \"02/01/2020\",\r\n            \"incidentDay\": \"Saturday\",\r\n            \"incidentTime\": \"13:00:00\",\r\n            \"evidence\": \"\",\r\n            \"address\": \"100 Main St\",\r\n            \"city\": \"Anywhere\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"39216\",\r\n            \"description\": \"I wanted to take a minute of your time and acknowledge the professionalism and community awareness of one of your officers. I was fortunate enough to have met Officer David Alaba while with my ten-year-old son. Officer Alaba was courteous and professional while speaking with me and engaging in conversation with my son. This meant a great deal to me as I am a former Detective from Norfolk Police Department and currently a Special Agent for the U. S. Government and have always expressed to my son how important police officers are to the community.\\n\\nUpon leaving Officer Alaba my son began talking about how nice the officer was and how he made it very comfortable to have a conversation. Officer Alaba is an obvious asset to the Anytown Police Department, but it should be noted that he is also an asset to the community and the citizens of Anywhere. \\n\\nThanking you in advance for your time.\\n\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAFQM=\",\r\n            \"modifiedDate\": \"2021-01-31T10:57:32.7509154\",\r\n            \"createdDate\": \"2021-01-27T13:03:59.7618517\",\r\n            \"createdBy\": \"jamesmith@gmailtest.com\",\r\n            \"modifiedBy\": \"bryansmith@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"officialUseOnly\": [\r\n        {\r\n            \"complimentDate\": \"01/31/2021\",\r\n            \"complimentTime\": \"07:57:00\",\r\n            \"complimentReceivedMode\": \"In-person\",\r\n            \"complimentType\": \"Friendly\",\r\n            \"photographsTaken\": \"\",\r\n            \"medicalReleaseForm\": \"\",\r\n            \"observations\": \"\",\r\n            \"complimentDispositionCode\": \"Employee's File\",\r\n            \"assignmentUnit\": \"\",\r\n            \"routing\": \"\",\r\n            \"nonEditable\": false,\r\n            \"receivedByFirstName\": \"\",\r\n            \"receivedByLastName\": \"\",\r\n            \"receivedByRank\": \"\",\r\n            \"receivedByIDNumber\": \"\",\r\n            \"receivedByUnit\": \"\",\r\n            \"isForwarded\": false,\r\n            \"forwardedToFirstName\": \"\",\r\n            \"forwardedToLastName\": \"\",\r\n            \"forwardedToRank\": \"\",\r\n            \"forwardedToIDNumber\": \"\",\r\n            \"forwardedToUnit\": \"\",\r\n            \"dateForwarded\": \"\",\r\n            \"timeForwarded\": null,\r\n            \"concurrencyTs\": \"AAAAAAAAFRU=\",\r\n            \"purgeDate\": \"\",\r\n            \"modifiedDate\": \"2021-01-31T10:57:32.7509397\",\r\n            \"createdDate\": \"2021-01-27T13:03:59.804163\",\r\n            \"createdBy\": \"jamesmith@gmailtest.com\",\r\n            \"modifiedBy\": \"bryansmith@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"firstName\": \"\",\r\n            \"lastName\": \"\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"\",\r\n            \"city\": \"\",\r\n            \"state\": \"\",\r\n            \"zip\": \"\",\r\n            \"homePhone\": \"\",\r\n            \"cellPhone\": \"\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"\",\r\n            \"additionalEmail\": \"\",\r\n            \"race\": \"\",\r\n            \"gender\": \"\",\r\n            \"dateOfBirth\": \"\",\r\n            \"age\": \"\",\r\n            \"driverLicense\": \"\",\r\n            \"relationshipToCitizen\": \"\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAFUo=\",\r\n            \"witnessRelationshipsToEmployee\": [],\r\n            \"modifiedDate\": \"2021-01-31T10:57:32.7508682\",\r\n            \"createdDate\": \"2021-01-27T13:03:59.7912045\",\r\n            \"createdBy\": \"jamesmith@gmailtest.com\",\r\n            \"modifiedBy\": \"bryansmith@leftasystems.org\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2021-01-31T10:57:32.750958\",\r\n    \"createdDate\": \"2021-01-27T13:03:59.6666192\",\r\n    \"createdBy\": \"jamesmith@gmailtest.com\",\r\n    \"modifiedBy\": \"bryansmith@leftasystems.org\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/emcot/compliment"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcZW1jb3RcY29tcGxpbWVudA==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 14:17:01 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 400,\n    \"statusDescription\": \"BadRequest\",\n    \"message\": \"Supplied Compliment Case Number already exists!\"\n}"}],"_postman_id":"d785f860-613a-41d9-84d0-707f89b0fde4"},{"name":"Update Compliment","id":"baa66c55-2989-4772-9994-094cea12e0ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"complimentId\": 1041,\r\n    \"trackingId\": \"6X3YZ5X5CPQZGJT\",\r\n    \"creatorId\": 8,\r\n    \"dateOfCompliment\": \"03/31/2022\",\r\n    \"timeOfCompliment\": \"00:32:00\",\r\n    \"language\": \"English\",\r\n    \"isCitizen\": false,\r\n    \"isOfficer\": false,\r\n    \"officerId\": null,\r\n    \"isAnonymous\": false,\r\n    \"isSupervisorFiling\": true,\r\n    \"supervisorId\": 95474,\r\n    \"cadIncidentNumber\": \"\",\r\n    \"caseNumber\": \"COM-2022/028\",\r\n    \"concurrencyTs\": \"AAAAAAAAtWA=\",\r\n    \"status\": \"Editing\",\r\n    \"complimentType\": \"Friendly\",\r\n    \"involvedCitizen\": true,\r\n    \"involvedEmployee\": true,\r\n    \"involvedIncident\": true,\r\n    \"involvedOfficialUseOnly\": true,\r\n    \"involvedWitness\": true,\r\n    \"reviewer\": \"\",\r\n    \"creator\": \"\",\r\n    \"deleteComments\": \"\",\r\n    \"sealed\": false,\r\n    \"caseNumberTrackingId\": 27,\r\n    \"termsAgreed\": false,\r\n    \"signature\": \"\",\r\n    \"signDate\": null,\r\n    \"citizens\": [\r\n        {\r\n            \"citizenId\": 1041,\r\n            \"complimentId\": 1041,\r\n            \"firstName\": \"Sara\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"12345\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x_____\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"sarasmith@gmail.com\",\r\n            \"additionalEmail\": \"\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Female\",\r\n            \"disability\": \"\",\r\n            \"isMinor\": true,\r\n            \"personFirstName\": \"John\",\r\n            \"personLastName\": \"Smith\",\r\n            \"personMiddleName\": \"\",\r\n            \"personAddress\": \"1234 Main Street\",\r\n            \"personCity\": \"Jacksonville\",\r\n            \"personState\": \"FL\",\r\n            \"personZip\": \"12345\",\r\n            \"personHomePhone\": \"111-111-1111 x_____\",\r\n            \"personCellPhone\": \"222-222-2222 x_____\",\r\n            \"personRelationshipToCitizen\": \"\",\r\n            \"bestContactTime\": \"1212\",\r\n            \"primaryLanguageSpoken\": \"English\",\r\n            \"canCommunicateInEnglish\": \"Yes\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtWE=\",\r\n            \"typeOfDisability\": \"\",\r\n            \"personEmail\": \"johnsmith@gmail.com\",\r\n            \"modifiedDate\": \"2022-04-01T15:47:58.9575293\",\r\n            \"createdDate\": \"2022-04-01T15:47:58.9575288\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"employees\": [\r\n        {\r\n            \"complimentEmployeeId\": 1041,\r\n            \"complimentId\": 1041,\r\n            \"employeeId\": \"B123456\",\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Simon\",\r\n            \"inUniform\": \"Yes\",\r\n            \"race\": \"Asian\",\r\n            \"gender\": \"Female\",\r\n            \"dateOfBirth\": null,\r\n            \"division\": \"Investigations Division\",\r\n            \"section\": \"\",\r\n            \"unit\": \"Patrol Unit\",\r\n            \"description\": \"An employee description.\",\r\n            \"vehicleMake\": \"MINI\",\r\n            \"vehicleModel\": \"\",\r\n            \"vehicleColor\": \"\",\r\n            \"vehicleNumber\": \"Cooper\",\r\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtWI=\",\r\n            \"age\": \"42\",\r\n            \"userId\": 95475,\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"witnessRelationshipToEmployeeId\": 1029,\r\n                    \"witnessId\": 1029,\r\n                    \"employeeId\": 1041,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtWY=\",\r\n                    \"modifiedDate\": \"2022-04-01T15:47:59.1270545\",\r\n                    \"createdDate\": \"2022-04-01T15:47:59.1268604\",\r\n                    \"createdBy\": \"apiTest\",\r\n                    \"modifiedBy\": \"apiTest\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:47:58.9695373\",\r\n            \"createdDate\": \"2022-04-01T15:47:58.9695367\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"incidents\": [\r\n        {\r\n            \"incidentId\": 1041,\r\n            \"complimentId\": 1041,\r\n            \"incidentDate\": \"03/01/2022\",\r\n            \"incidentDay\": \"Tuesday\",\r\n            \"incidentTime\": \"00:12:00\",\r\n            \"evidence\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"description\": \"A description of the incident.\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtWM=\",\r\n            \"modifiedDate\": \"2022-04-01T15:47:58.9776696\",\r\n            \"createdDate\": \"2022-04-01T15:47:58.9776691\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"officialUseOnly\": [\r\n        {\r\n            \"officalUseId\": 1041,\r\n            \"complimentId\": 1041,\r\n            \"complimentDate\": \"03/31/2022\",\r\n            \"complimentTime\": \"12:32:00\",\r\n            \"complimentReceivedMode\": \"Email\",\r\n            \"complimentType\": \"Friendly\",\r\n            \"photographsTaken\": \"\",\r\n            \"medicalReleaseForm\": \"\",\r\n            \"observations\": \"These are my observations.\",\r\n            \"complimentDispositionCode\": \"value 1\",\r\n            \"assignmentUnit\": \"\",\r\n            \"routing\": \"Watch Commander\",\r\n            \"nonEditable\": false,\r\n            \"receivedByFirstName\": \"John\",\r\n            \"receivedByLastName\": \"Smith\",\r\n            \"receivedByRank\": \"Captain\",\r\n            \"receivedByIDNumber\": \"B123456\",\r\n            \"receivedByUnit\": \"K-9 Unit\",\r\n            \"isForwarded\": false,\r\n            \"forwardedToFirstName\": \"\",\r\n            \"forwardedToLastName\": \"\",\r\n            \"forwardedToRank\": \"\",\r\n            \"forwardedToIDNumber\": \"\",\r\n            \"forwardedToUnit\": \"\",\r\n            \"dateForwarded\": \"\",\r\n            \"timeForwarded\": null,\r\n            \"concurrencyTs\": \"AAAAAAAAtWQ=\",\r\n            \"purgeDate\": \"\",\r\n            \"modifiedDate\": \"2022-04-01T15:47:59.0024655\",\r\n            \"createdDate\": \"2022-04-01T15:47:59.002465\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 1029,\r\n            \"complimentId\": 1041,\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x_____\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"johnsmith@gmail.com\",\r\n            \"additionalEmail\": \"\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"driverLicense\": \"\",\r\n            \"relationshipToCitizen\": \"Student\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtWU=\",\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"witnessRelationshipToEmployeeId\": 1029,\r\n                    \"witnessId\": 1029,\r\n                    \"employeeId\": 1041,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtWY=\",\r\n                    \"modifiedDate\": \"2022-04-01T15:47:59.1270545\",\r\n                    \"createdDate\": \"2022-04-01T15:47:59.1268604\",\r\n                    \"createdBy\": \"apiTest\",\r\n                    \"modifiedBy\": \"apiTest\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:47:58.988931\",\r\n            \"createdDate\": \"2022-04-01T15:47:58.9889305\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-04-01T15:47:58.9412137\",\r\n    \"createdDate\": \"2022-04-01T15:47:58.9412132\",\r\n    \"createdBy\": \"apiTest\",\r\n    \"modifiedBy\": \"apiTest\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/emcot/compliment","description":"<p>Update an existing compliment. An error will be thrown if an Incident with the supplied Incident Id cannot be found within the system. You must ensure that the Incident Id exists.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","emcot","compliment"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"22e4d181-b1b0-470f-8072-d66ebcc74c47","name":"Success","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"complimentId\": 1041,\r\n    \"trackingId\": \"6X3YZ5X5CPQZGJT\",\r\n    \"creatorId\": 8,\r\n    \"dateOfCompliment\": \"03/31/2022\",\r\n    \"timeOfCompliment\": \"00:32:00\",\r\n    \"language\": \"English\",\r\n    \"isCitizen\": false,\r\n    \"isOfficer\": false,\r\n    \"officerId\": null,\r\n    \"isAnonymous\": false,\r\n    \"isSupervisorFiling\": true,\r\n    \"supervisorId\": 95474,\r\n    \"cadIncidentNumber\": \"\",\r\n    \"caseNumber\": \"COM-2022/028\",\r\n    \"concurrencyTs\": \"AAAAAAAAtWA=\",\r\n    \"status\": \"Editing\",\r\n    \"complimentType\": \"Friendly\",\r\n    \"involvedCitizen\": true,\r\n    \"involvedEmployee\": true,\r\n    \"involvedIncident\": true,\r\n    \"involvedOfficialUseOnly\": true,\r\n    \"involvedWitness\": true,\r\n    \"reviewer\": \"\",\r\n    \"creator\": \"\",\r\n    \"deleteComments\": \"\",\r\n    \"sealed\": false,\r\n    \"caseNumberTrackingId\": 27,\r\n    \"termsAgreed\": false,\r\n    \"signature\": \"\",\r\n    \"signDate\": null,\r\n    \"citizens\": [\r\n        {\r\n            \"citizenId\": 1041,\r\n            \"complimentId\": 1041,\r\n            \"firstName\": \"Sara\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"12345\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x_____\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"sarasmith@gmail.com\",\r\n            \"additionalEmail\": \"\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Female\",\r\n            \"disability\": \"\",\r\n            \"isMinor\": true,\r\n            \"personFirstName\": \"John\",\r\n            \"personLastName\": \"Smith\",\r\n            \"personMiddleName\": \"\",\r\n            \"personAddress\": \"1234 Main Street\",\r\n            \"personCity\": \"Jacksonville\",\r\n            \"personState\": \"FL\",\r\n            \"personZip\": \"12345\",\r\n            \"personHomePhone\": \"111-111-1111 x_____\",\r\n            \"personCellPhone\": \"222-222-2222 x_____\",\r\n            \"personRelationshipToCitizen\": \"\",\r\n            \"bestContactTime\": \"1212\",\r\n            \"primaryLanguageSpoken\": \"English\",\r\n            \"canCommunicateInEnglish\": \"Yes\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtWE=\",\r\n            \"typeOfDisability\": \"\",\r\n            \"personEmail\": \"johnsmith@gmail.com\",\r\n            \"modifiedDate\": \"2022-04-01T15:47:58.9575293\",\r\n            \"createdDate\": \"2022-04-01T15:47:58.9575288\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"employees\": [\r\n        {\r\n            \"complimentEmployeeId\": 1041,\r\n            \"complimentId\": 1041,\r\n            \"employeeId\": \"B123456\",\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Simon\",\r\n            \"inUniform\": \"Yes\",\r\n            \"race\": \"Asian\",\r\n            \"gender\": \"Female\",\r\n            \"dateOfBirth\": null,\r\n            \"division\": \"Investigations Division\",\r\n            \"section\": \"\",\r\n            \"unit\": \"Patrol Unit\",\r\n            \"description\": \"An employee description.\",\r\n            \"vehicleMake\": \"MINI\",\r\n            \"vehicleModel\": \"\",\r\n            \"vehicleColor\": \"\",\r\n            \"vehicleNumber\": \"Cooper\",\r\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtWI=\",\r\n            \"age\": \"42\",\r\n            \"userId\": 95475,\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"witnessRelationshipToEmployeeId\": 1029,\r\n                    \"witnessId\": 1029,\r\n                    \"employeeId\": 1041,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtWY=\",\r\n                    \"modifiedDate\": \"2022-04-01T15:47:59.1270545\",\r\n                    \"createdDate\": \"2022-04-01T15:47:59.1268604\",\r\n                    \"createdBy\": \"apiTest\",\r\n                    \"modifiedBy\": \"apiTest\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:47:58.9695373\",\r\n            \"createdDate\": \"2022-04-01T15:47:58.9695367\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"incidents\": [\r\n        {\r\n            \"incidentId\": 1041,\r\n            \"complimentId\": 1041,\r\n            \"incidentDate\": \"03/01/2022\",\r\n            \"incidentDay\": \"Tuesday\",\r\n            \"incidentTime\": \"00:12:00\",\r\n            \"evidence\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"description\": \"A description of the incident.\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtWM=\",\r\n            \"modifiedDate\": \"2022-04-01T15:47:58.9776696\",\r\n            \"createdDate\": \"2022-04-01T15:47:58.9776691\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"officialUseOnly\": [\r\n        {\r\n            \"officalUseId\": 1041,\r\n            \"complimentId\": 1041,\r\n            \"complimentDate\": \"03/31/2022\",\r\n            \"complimentTime\": \"12:32:00\",\r\n            \"complimentReceivedMode\": \"Email\",\r\n            \"complimentType\": \"Friendly\",\r\n            \"photographsTaken\": \"\",\r\n            \"medicalReleaseForm\": \"\",\r\n            \"observations\": \"These are my observations.\",\r\n            \"complimentDispositionCode\": \"value 1\",\r\n            \"assignmentUnit\": \"\",\r\n            \"routing\": \"Watch Commander\",\r\n            \"nonEditable\": false,\r\n            \"receivedByFirstName\": \"John\",\r\n            \"receivedByLastName\": \"Smith\",\r\n            \"receivedByRank\": \"Captain\",\r\n            \"receivedByIDNumber\": \"B123456\",\r\n            \"receivedByUnit\": \"K-9 Unit\",\r\n            \"isForwarded\": false,\r\n            \"forwardedToFirstName\": \"\",\r\n            \"forwardedToLastName\": \"\",\r\n            \"forwardedToRank\": \"\",\r\n            \"forwardedToIDNumber\": \"\",\r\n            \"forwardedToUnit\": \"\",\r\n            \"dateForwarded\": \"\",\r\n            \"timeForwarded\": null,\r\n            \"concurrencyTs\": \"AAAAAAAAtWQ=\",\r\n            \"purgeDate\": \"\",\r\n            \"modifiedDate\": \"2022-04-01T15:47:59.0024655\",\r\n            \"createdDate\": \"2022-04-01T15:47:59.002465\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 1029,\r\n            \"complimentId\": 1041,\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x_____\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"johnsmith@gmail.com\",\r\n            \"additionalEmail\": \"\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"driverLicense\": \"\",\r\n            \"relationshipToCitizen\": \"Student\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtWU=\",\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"witnessRelationshipToEmployeeId\": 1029,\r\n                    \"witnessId\": 1029,\r\n                    \"employeeId\": 1041,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtWY=\",\r\n                    \"modifiedDate\": \"2022-04-01T15:47:59.1270545\",\r\n                    \"createdDate\": \"2022-04-01T15:47:59.1268604\",\r\n                    \"createdBy\": \"apiTest\",\r\n                    \"modifiedBy\": \"apiTest\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:47:58.988931\",\r\n            \"createdDate\": \"2022-04-01T15:47:58.9889305\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-04-01T15:47:58.9412137\",\r\n    \"createdDate\": \"2022-04-01T15:47:58.9412132\",\r\n    \"createdBy\": \"apiTest\",\r\n    \"modifiedBy\": \"apiTest\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/emcot/compliment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XFBvcnRhbFxMZWZ0YVN5c3RlbXMuU2hpZWxkLlBvcnRhbFxhcGlcZW1jb3RcY29tcGxpbWVudA==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 01 Apr 2022 19:48:59 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"complimentId\": 1041,\n    \"trackingId\": \"6X3YZ5X5CPQZGJT\",\n    \"creatorId\": 8,\n    \"dateOfCompliment\": \"03/31/2022\",\n    \"timeOfCompliment\": \"00:32:00\",\n    \"language\": \"English\",\n    \"isCitizen\": false,\n    \"isOfficer\": false,\n    \"officerId\": null,\n    \"isAnonymous\": false,\n    \"isSupervisorFiling\": true,\n    \"supervisorId\": 95474,\n    \"cadIncidentNumber\": \"\",\n    \"caseNumber\": \"COM-2022/028\",\n    \"concurrencyTs\": \"AAAAAAAAtW0=\",\n    \"status\": \"Editing\",\n    \"complimentType\": \"Friendly\",\n    \"involvedCitizen\": true,\n    \"involvedEmployee\": true,\n    \"involvedIncident\": true,\n    \"involvedOfficialUseOnly\": true,\n    \"involvedWitness\": true,\n    \"reviewer\": \"\",\n    \"creator\": \"\",\n    \"deleteComments\": \"\",\n    \"sealed\": false,\n    \"caseNumberTrackingId\": 27,\n    \"termsAgreed\": false,\n    \"signature\": \"\",\n    \"signDate\": null,\n    \"citizens\": [\n        {\n            \"citizenId\": 1041,\n            \"complimentId\": 1041,\n            \"firstName\": \"Sara\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"\",\n            \"address\": \"12345\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345\",\n            \"homePhone\": \"111-111-1111 x_____\",\n            \"cellPhone\": \"222-222-2222 x_____\",\n            \"additionalPhone\": \"\",\n            \"email\": \"sarasmith@gmail.com\",\n            \"additionalEmail\": \"\",\n            \"dateOfBirth\": \"03/01/1980\",\n            \"age\": \"\",\n            \"race\": \"White\",\n            \"gender\": \"Female\",\n            \"disability\": \"\",\n            \"isMinor\": true,\n            \"personFirstName\": \"John\",\n            \"personLastName\": \"Smith\",\n            \"personMiddleName\": \"\",\n            \"personAddress\": \"1234 Main Street\",\n            \"personCity\": \"Jacksonville\",\n            \"personState\": \"FL\",\n            \"personZip\": \"12345\",\n            \"personHomePhone\": \"111-111-1111 x_____\",\n            \"personCellPhone\": \"222-222-2222 x_____\",\n            \"personRelationshipToCitizen\": \"\",\n            \"bestContactTime\": \"1212\",\n            \"primaryLanguageSpoken\": \"English\",\n            \"canCommunicateInEnglish\": \"Yes\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtWc=\",\n            \"typeOfDisability\": \"\",\n            \"personEmail\": \"johnsmith@gmail.com\",\n            \"modifiedDate\": \"2022-04-01T15:48:59.240197\",\n            \"createdDate\": \"2022-04-01T15:47:58.9575288\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"employees\": [\n        {\n            \"complimentEmployeeId\": 1041,\n            \"complimentId\": 1041,\n            \"employeeId\": \"B123456\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"Simon\",\n            \"inUniform\": \"Yes\",\n            \"race\": \"Asian\",\n            \"gender\": \"Female\",\n            \"dateOfBirth\": null,\n            \"division\": \"Investigations Division\",\n            \"section\": \"\",\n            \"unit\": \"Patrol Unit\",\n            \"description\": \"An employee description.\",\n            \"vehicleMake\": \"MINI\",\n            \"vehicleModel\": \"\",\n            \"vehicleColor\": \"\",\n            \"vehicleNumber\": \"Cooper\",\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtWg=\",\n            \"age\": \"42\",\n            \"userId\": 95475,\n            \"witnessRelationshipsToEmployee\": [\n                {\n                    \"witnessRelationshipToEmployeeId\": 1029,\n                    \"witnessId\": 1029,\n                    \"employeeId\": 1041,\n                    \"witnessRelationshipToEmployee\": \"\",\n                    \"nonEditable\": false,\n                    \"concurrencyTs\": \"AAAAAAAAtWw=\",\n                    \"modifiedDate\": \"2022-04-01T15:48:59.2422367\",\n                    \"createdDate\": \"2022-04-01T15:47:59.1268604\",\n                    \"createdBy\": \"apiTest\",\n                    \"modifiedBy\": \"apiTest\",\n                    \"deleted\": false\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:48:59.2429702\",\n            \"createdDate\": \"2022-04-01T15:47:58.9695367\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"incidents\": [\n        {\n            \"incidentId\": 1041,\n            \"complimentId\": 1041,\n            \"incidentDate\": \"03/01/2022\",\n            \"incidentDay\": \"Tuesday\",\n            \"incidentTime\": \"00:12:00\",\n            \"evidence\": \"\",\n            \"address\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345\",\n            \"description\": \"A description of the incident.\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtWk=\",\n            \"modifiedDate\": \"2022-04-01T15:48:59.2437191\",\n            \"createdDate\": \"2022-04-01T15:47:58.9776691\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"officialUseOnly\": [\n        {\n            \"officalUseId\": 1041,\n            \"complimentId\": 1041,\n            \"complimentDate\": \"03/31/2022\",\n            \"complimentTime\": \"12:32:00\",\n            \"complimentReceivedMode\": \"Email\",\n            \"complimentType\": \"Friendly\",\n            \"photographsTaken\": \"\",\n            \"medicalReleaseForm\": \"\",\n            \"observations\": \"These are my observations.\",\n            \"complimentDispositionCode\": \"value 1\",\n            \"assignmentUnit\": \"\",\n            \"routing\": \"Watch Commander\",\n            \"nonEditable\": false,\n            \"receivedByFirstName\": \"John\",\n            \"receivedByLastName\": \"Smith\",\n            \"receivedByRank\": \"Captain\",\n            \"receivedByIDNumber\": \"B123456\",\n            \"receivedByUnit\": \"K-9 Unit\",\n            \"isForwarded\": false,\n            \"forwardedToFirstName\": \"\",\n            \"forwardedToLastName\": \"\",\n            \"forwardedToRank\": \"\",\n            \"forwardedToIDNumber\": \"\",\n            \"forwardedToUnit\": \"\",\n            \"dateForwarded\": \"\",\n            \"timeForwarded\": null,\n            \"concurrencyTs\": \"AAAAAAAAtWo=\",\n            \"purgeDate\": \"\",\n            \"modifiedDate\": \"2022-04-01T15:48:59.2446657\",\n            \"createdDate\": \"2022-04-01T15:47:59.002465\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"witnesses\": [\n        {\n            \"witnessId\": 1029,\n            \"complimentId\": 1041,\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"middleName\": \"\",\n            \"address\": \"1234 Main Street\",\n            \"city\": \"Jacksonville\",\n            \"state\": \"FL\",\n            \"zip\": \"12345\",\n            \"homePhone\": \"111-111-1111 x_____\",\n            \"cellPhone\": \"222-222-2222 x_____\",\n            \"additionalPhone\": \"\",\n            \"email\": \"johnsmith@gmail.com\",\n            \"additionalEmail\": \"\",\n            \"race\": \"Black\",\n            \"gender\": \"Male\",\n            \"dateOfBirth\": \"03/01/1980\",\n            \"age\": \"\",\n            \"driverLicense\": \"\",\n            \"relationshipToCitizen\": \"Student\",\n            \"nonEditable\": false,\n            \"concurrencyTs\": \"AAAAAAAAtWs=\",\n            \"witnessRelationshipsToEmployee\": [\n                {\n                    \"witnessRelationshipToEmployeeId\": 1029,\n                    \"witnessId\": 1029,\n                    \"employeeId\": 1041,\n                    \"witnessRelationshipToEmployee\": \"\",\n                    \"nonEditable\": false,\n                    \"concurrencyTs\": \"AAAAAAAAtWw=\",\n                    \"modifiedDate\": \"2022-04-01T15:48:59.2422367\",\n                    \"createdDate\": \"2022-04-01T15:47:59.1268604\",\n                    \"createdBy\": \"apiTest\",\n                    \"modifiedBy\": \"apiTest\",\n                    \"deleted\": false\n                }\n            ],\n            \"modifiedDate\": \"2022-04-01T15:48:59.241195\",\n            \"createdDate\": \"2022-04-01T15:47:58.9889305\",\n            \"createdBy\": \"apiTest\",\n            \"modifiedBy\": \"apiTest\",\n            \"deleted\": false\n        }\n    ],\n    \"modifiedDate\": \"2022-04-01T15:48:59.2448774\",\n    \"createdDate\": \"2022-04-01T15:47:58.9412132\",\n    \"createdBy\": \"apiTest\",\n    \"modifiedBy\": \"apiTest\",\n    \"deleted\": false\n}"},{"id":"c983541f-6bf5-46cb-84d9-4b6c8a72ba41","name":"Case Number Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"complimentId\": 1041,\r\n    \"trackingId\": \"6X3YZ5X5CPQZGJT\",\r\n    \"creatorId\": 8,\r\n    \"dateOfCompliment\": \"03/31/2022\",\r\n    \"timeOfCompliment\": \"00:32:00\",\r\n    \"language\": \"English\",\r\n    \"isCitizen\": false,\r\n    \"isOfficer\": false,\r\n    \"officerId\": null,\r\n    \"isAnonymous\": false,\r\n    \"isSupervisorFiling\": true,\r\n    \"supervisorId\": 95474,\r\n    \"cadIncidentNumber\": \"\",\r\n    \"caseNumber\": \"COM-2022/028\",\r\n    \"concurrencyTs\": \"AAAAAAAAtWA=\",\r\n    \"status\": \"Editing\",\r\n    \"complimentType\": \"Friendly\",\r\n    \"involvedCitizen\": true,\r\n    \"involvedEmployee\": true,\r\n    \"involvedIncident\": true,\r\n    \"involvedOfficialUseOnly\": true,\r\n    \"involvedWitness\": true,\r\n    \"reviewer\": \"\",\r\n    \"creator\": \"\",\r\n    \"deleteComments\": \"\",\r\n    \"sealed\": false,\r\n    \"caseNumberTrackingId\": 27,\r\n    \"termsAgreed\": false,\r\n    \"signature\": \"\",\r\n    \"signDate\": null,\r\n    \"citizens\": [\r\n        {\r\n            \"citizenId\": 1041,\r\n            \"complimentId\": 1041,\r\n            \"firstName\": \"Sara\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"12345\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x_____\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"sarasmith@gmail.com\",\r\n            \"additionalEmail\": \"\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Female\",\r\n            \"disability\": \"\",\r\n            \"isMinor\": true,\r\n            \"personFirstName\": \"John\",\r\n            \"personLastName\": \"Smith\",\r\n            \"personMiddleName\": \"\",\r\n            \"personAddress\": \"1234 Main Street\",\r\n            \"personCity\": \"Jacksonville\",\r\n            \"personState\": \"FL\",\r\n            \"personZip\": \"12345\",\r\n            \"personHomePhone\": \"111-111-1111 x_____\",\r\n            \"personCellPhone\": \"222-222-2222 x_____\",\r\n            \"personRelationshipToCitizen\": \"\",\r\n            \"bestContactTime\": \"1212\",\r\n            \"primaryLanguageSpoken\": \"English\",\r\n            \"canCommunicateInEnglish\": \"Yes\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtWE=\",\r\n            \"typeOfDisability\": \"\",\r\n            \"personEmail\": \"johnsmith@gmail.com\",\r\n            \"modifiedDate\": \"2022-04-01T15:47:58.9575293\",\r\n            \"createdDate\": \"2022-04-01T15:47:58.9575288\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"employees\": [\r\n        {\r\n            \"complimentEmployeeId\": 1041,\r\n            \"complimentId\": 1041,\r\n            \"employeeId\": \"B123456\",\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Simon\",\r\n            \"inUniform\": \"Yes\",\r\n            \"race\": \"Asian\",\r\n            \"gender\": \"Female\",\r\n            \"dateOfBirth\": null,\r\n            \"division\": \"Investigations Division\",\r\n            \"section\": \"\",\r\n            \"unit\": \"Patrol Unit\",\r\n            \"description\": \"An employee description.\",\r\n            \"vehicleMake\": \"MINI\",\r\n            \"vehicleModel\": \"\",\r\n            \"vehicleColor\": \"\",\r\n            \"vehicleNumber\": \"Cooper\",\r\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtWI=\",\r\n            \"age\": \"42\",\r\n            \"userId\": 95475,\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"witnessRelationshipToEmployeeId\": 1029,\r\n                    \"witnessId\": 1029,\r\n                    \"employeeId\": 1041,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtWY=\",\r\n                    \"modifiedDate\": \"2022-04-01T15:47:59.1270545\",\r\n                    \"createdDate\": \"2022-04-01T15:47:59.1268604\",\r\n                    \"createdBy\": \"apiTest\",\r\n                    \"modifiedBy\": \"apiTest\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:47:58.9695373\",\r\n            \"createdDate\": \"2022-04-01T15:47:58.9695367\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"incidents\": [\r\n        {\r\n            \"incidentId\": 1041,\r\n            \"complimentId\": 1041,\r\n            \"incidentDate\": \"03/01/2022\",\r\n            \"incidentDay\": \"Tuesday\",\r\n            \"incidentTime\": \"00:12:00\",\r\n            \"evidence\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"description\": \"A description of the incident.\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtWM=\",\r\n            \"modifiedDate\": \"2022-04-01T15:47:58.9776696\",\r\n            \"createdDate\": \"2022-04-01T15:47:58.9776691\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"officialUseOnly\": [\r\n        {\r\n            \"officalUseId\": 1041,\r\n            \"complimentId\": 1041,\r\n            \"complimentDate\": \"03/31/2022\",\r\n            \"complimentTime\": \"12:32:00\",\r\n            \"complimentReceivedMode\": \"Email\",\r\n            \"complimentType\": \"Friendly\",\r\n            \"photographsTaken\": \"\",\r\n            \"medicalReleaseForm\": \"\",\r\n            \"observations\": \"These are my observations.\",\r\n            \"complimentDispositionCode\": \"value 1\",\r\n            \"assignmentUnit\": \"\",\r\n            \"routing\": \"Watch Commander\",\r\n            \"nonEditable\": false,\r\n            \"receivedByFirstName\": \"John\",\r\n            \"receivedByLastName\": \"Smith\",\r\n            \"receivedByRank\": \"Captain\",\r\n            \"receivedByIDNumber\": \"B123456\",\r\n            \"receivedByUnit\": \"K-9 Unit\",\r\n            \"isForwarded\": false,\r\n            \"forwardedToFirstName\": \"\",\r\n            \"forwardedToLastName\": \"\",\r\n            \"forwardedToRank\": \"\",\r\n            \"forwardedToIDNumber\": \"\",\r\n            \"forwardedToUnit\": \"\",\r\n            \"dateForwarded\": \"\",\r\n            \"timeForwarded\": null,\r\n            \"concurrencyTs\": \"AAAAAAAAtWQ=\",\r\n            \"purgeDate\": \"\",\r\n            \"modifiedDate\": \"2022-04-01T15:47:59.0024655\",\r\n            \"createdDate\": \"2022-04-01T15:47:59.002465\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 1029,\r\n            \"complimentId\": 1041,\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x_____\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"johnsmith@gmail.com\",\r\n            \"additionalEmail\": \"\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"driverLicense\": \"\",\r\n            \"relationshipToCitizen\": \"Student\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtWU=\",\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"witnessRelationshipToEmployeeId\": 1029,\r\n                    \"witnessId\": 1029,\r\n                    \"employeeId\": 1041,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtWY=\",\r\n                    \"modifiedDate\": \"2022-04-01T15:47:59.1270545\",\r\n                    \"createdDate\": \"2022-04-01T15:47:59.1268604\",\r\n                    \"createdBy\": \"apiTest\",\r\n                    \"modifiedBy\": \"apiTest\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:47:58.988931\",\r\n            \"createdDate\": \"2022-04-01T15:47:58.9889305\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-04-01T15:47:58.9412137\",\r\n    \"createdDate\": \"2022-04-01T15:47:58.9412132\",\r\n    \"createdBy\": \"apiTest\",\r\n    \"modifiedBy\": \"apiTest\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/emcot/compliment"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcZW1jb3RcY29tcGxpbWVudA==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 14:22:44 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Supplied Compliment Case Number doesn't exists!\"\n}"},{"id":"429b2e64-7596-4fc5-8164-baaa7ed3aafe","name":"Instance Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"complimentId\": 1041,\r\n    \"trackingId\": \"6X3YZ5X5CPQZGJT\",\r\n    \"creatorId\": 8,\r\n    \"dateOfCompliment\": \"03/31/2022\",\r\n    \"timeOfCompliment\": \"00:32:00\",\r\n    \"language\": \"English\",\r\n    \"isCitizen\": false,\r\n    \"isOfficer\": false,\r\n    \"officerId\": null,\r\n    \"isAnonymous\": false,\r\n    \"isSupervisorFiling\": true,\r\n    \"supervisorId\": 95474,\r\n    \"cadIncidentNumber\": \"\",\r\n    \"caseNumber\": \"COM-2022/028\",\r\n    \"concurrencyTs\": \"AAAAAAAAtWA=\",\r\n    \"status\": \"Editing\",\r\n    \"complimentType\": \"Friendly\",\r\n    \"involvedCitizen\": true,\r\n    \"involvedEmployee\": true,\r\n    \"involvedIncident\": true,\r\n    \"involvedOfficialUseOnly\": true,\r\n    \"involvedWitness\": true,\r\n    \"reviewer\": \"\",\r\n    \"creator\": \"\",\r\n    \"deleteComments\": \"\",\r\n    \"sealed\": false,\r\n    \"caseNumberTrackingId\": 27,\r\n    \"termsAgreed\": false,\r\n    \"signature\": \"\",\r\n    \"signDate\": null,\r\n    \"citizens\": [\r\n        {\r\n            \"citizenId\": 1041,\r\n            \"complimentId\": 1041,\r\n            \"firstName\": \"Sara\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"12345\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x_____\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"sarasmith@gmail.com\",\r\n            \"additionalEmail\": \"\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"race\": \"White\",\r\n            \"gender\": \"Female\",\r\n            \"disability\": \"\",\r\n            \"isMinor\": true,\r\n            \"personFirstName\": \"John\",\r\n            \"personLastName\": \"Smith\",\r\n            \"personMiddleName\": \"\",\r\n            \"personAddress\": \"1234 Main Street\",\r\n            \"personCity\": \"Jacksonville\",\r\n            \"personState\": \"FL\",\r\n            \"personZip\": \"12345\",\r\n            \"personHomePhone\": \"111-111-1111 x_____\",\r\n            \"personCellPhone\": \"222-222-2222 x_____\",\r\n            \"personRelationshipToCitizen\": \"\",\r\n            \"bestContactTime\": \"1212\",\r\n            \"primaryLanguageSpoken\": \"English\",\r\n            \"canCommunicateInEnglish\": \"Yes\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtWE=\",\r\n            \"typeOfDisability\": \"\",\r\n            \"personEmail\": \"johnsmith@gmail.com\",\r\n            \"modifiedDate\": \"2022-04-01T15:47:58.9575293\",\r\n            \"createdDate\": \"2022-04-01T15:47:58.9575288\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"employees\": [\r\n        {\r\n            \"complimentEmployeeId\": 1041,\r\n            \"complimentId\": 1041,\r\n            \"employeeId\": \"B123456\",\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"Simon\",\r\n            \"inUniform\": \"Yes\",\r\n            \"race\": \"Asian\",\r\n            \"gender\": \"Female\",\r\n            \"dateOfBirth\": null,\r\n            \"division\": \"Investigations Division\",\r\n            \"section\": \"\",\r\n            \"unit\": \"Patrol Unit\",\r\n            \"description\": \"An employee description.\",\r\n            \"vehicleMake\": \"MINI\",\r\n            \"vehicleModel\": \"\",\r\n            \"vehicleColor\": \"\",\r\n            \"vehicleNumber\": \"Cooper\",\r\n            \"vehicleOtherIdentifyingCharacteristics\": \"\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtWI=\",\r\n            \"age\": \"42\",\r\n            \"userId\": 95475,\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"witnessRelationshipToEmployeeId\": 1029,\r\n                    \"witnessId\": 1029,\r\n                    \"employeeId\": 1041,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtWY=\",\r\n                    \"modifiedDate\": \"2022-04-01T15:47:59.1270545\",\r\n                    \"createdDate\": \"2022-04-01T15:47:59.1268604\",\r\n                    \"createdBy\": \"apiTest\",\r\n                    \"modifiedBy\": \"apiTest\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:47:58.9695373\",\r\n            \"createdDate\": \"2022-04-01T15:47:58.9695367\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"incidents\": [\r\n        {\r\n            \"incidentId\": 1041,\r\n            \"complimentId\": 1041,\r\n            \"incidentDate\": \"03/01/2022\",\r\n            \"incidentDay\": \"Tuesday\",\r\n            \"incidentTime\": \"00:12:00\",\r\n            \"evidence\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"description\": \"A description of the incident.\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtWM=\",\r\n            \"modifiedDate\": \"2022-04-01T15:47:58.9776696\",\r\n            \"createdDate\": \"2022-04-01T15:47:58.9776691\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"officialUseOnly\": [\r\n        {\r\n            \"officalUseId\": 1041,\r\n            \"complimentId\": 1041,\r\n            \"complimentDate\": \"03/31/2022\",\r\n            \"complimentTime\": \"12:32:00\",\r\n            \"complimentReceivedMode\": \"Email\",\r\n            \"complimentType\": \"Friendly\",\r\n            \"photographsTaken\": \"\",\r\n            \"medicalReleaseForm\": \"\",\r\n            \"observations\": \"These are my observations.\",\r\n            \"complimentDispositionCode\": \"value 1\",\r\n            \"assignmentUnit\": \"\",\r\n            \"routing\": \"Watch Commander\",\r\n            \"nonEditable\": false,\r\n            \"receivedByFirstName\": \"John\",\r\n            \"receivedByLastName\": \"Smith\",\r\n            \"receivedByRank\": \"Captain\",\r\n            \"receivedByIDNumber\": \"B123456\",\r\n            \"receivedByUnit\": \"K-9 Unit\",\r\n            \"isForwarded\": false,\r\n            \"forwardedToFirstName\": \"\",\r\n            \"forwardedToLastName\": \"\",\r\n            \"forwardedToRank\": \"\",\r\n            \"forwardedToIDNumber\": \"\",\r\n            \"forwardedToUnit\": \"\",\r\n            \"dateForwarded\": \"\",\r\n            \"timeForwarded\": null,\r\n            \"concurrencyTs\": \"AAAAAAAAtWQ=\",\r\n            \"purgeDate\": \"\",\r\n            \"modifiedDate\": \"2022-04-01T15:47:59.0024655\",\r\n            \"createdDate\": \"2022-04-01T15:47:59.002465\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"witnesses\": [\r\n        {\r\n            \"witnessId\": 1029,\r\n            \"complimentId\": 1041,\r\n            \"firstName\": \"John\",\r\n            \"lastName\": \"Smith\",\r\n            \"middleName\": \"\",\r\n            \"address\": \"1234 Main Street\",\r\n            \"city\": \"Jacksonville\",\r\n            \"state\": \"FL\",\r\n            \"zip\": \"12345\",\r\n            \"homePhone\": \"111-111-1111 x_____\",\r\n            \"cellPhone\": \"222-222-2222 x_____\",\r\n            \"additionalPhone\": \"\",\r\n            \"email\": \"johnsmith@gmail.com\",\r\n            \"additionalEmail\": \"\",\r\n            \"race\": \"Black\",\r\n            \"gender\": \"Male\",\r\n            \"dateOfBirth\": \"03/01/1980\",\r\n            \"age\": \"\",\r\n            \"driverLicense\": \"\",\r\n            \"relationshipToCitizen\": \"Student\",\r\n            \"nonEditable\": false,\r\n            \"concurrencyTs\": \"AAAAAAAAtWU=\",\r\n            \"witnessRelationshipsToEmployee\": [\r\n                {\r\n                    \"witnessRelationshipToEmployeeId\": 1029,\r\n                    \"witnessId\": 1029,\r\n                    \"employeeId\": 1041,\r\n                    \"witnessRelationshipToEmployee\": \"\",\r\n                    \"nonEditable\": false,\r\n                    \"concurrencyTs\": \"AAAAAAAAtWY=\",\r\n                    \"modifiedDate\": \"2022-04-01T15:47:59.1270545\",\r\n                    \"createdDate\": \"2022-04-01T15:47:59.1268604\",\r\n                    \"createdBy\": \"apiTest\",\r\n                    \"modifiedBy\": \"apiTest\",\r\n                    \"deleted\": false\r\n                }\r\n            ],\r\n            \"modifiedDate\": \"2022-04-01T15:47:58.988931\",\r\n            \"createdDate\": \"2022-04-01T15:47:58.9889305\",\r\n            \"createdBy\": \"apiTest\",\r\n            \"modifiedBy\": \"apiTest\",\r\n            \"deleted\": false\r\n        }\r\n    ],\r\n    \"modifiedDate\": \"2022-04-01T15:47:58.9412137\",\r\n    \"createdDate\": \"2022-04-01T15:47:58.9412132\",\r\n    \"createdBy\": \"apiTest\",\r\n    \"modifiedBy\": \"apiTest\",\r\n    \"deleted\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/emcot/compliment"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcZW1jb3RcY29tcGxpbWVudA==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 21 Mar 2022 14:23:29 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 404,\n    \"statusDescription\": \"NotFound\",\n    \"message\": \"Instance not found for the supplied id!\"\n}"}],"_postman_id":"baa66c55-2989-4772-9994-094cea12e0ed"}],"id":"604455fe-a16c-4f90-9db8-170c7093cbb9","_postman_id":"604455fe-a16c-4f90-9db8-170c7093cbb9","description":"","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}}}],"id":"f5cfae80-8b27-48ec-9652-82f4cdb0882a","description":"<p>Through the LEFTA Systems EMCOT API, you can interact with SHIELD Portal's Employee Conduct application to interact with employee conduct incidents and its related entities. EMCOT records fall into two general categories, complaints and compliments. This API is broken down, via URI, by these two categories.</p>\n","event":[{"listen":"prerequest","script":{"id":"fa4d9c67-2763-4f36-a512-0f79d1d4a4c3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"81e81ad8-7b12-46d9-a0fe-852980bc36b9","type":"text/javascript","exec":[""]}}],"_postman_id":"f5cfae80-8b27-48ec-9652-82f4cdb0882a","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}}},{"name":"LEFTA : Field Training","item":[{"name":"Instance","item":[{"name":"Get All","id":"8e50b3de-5603-40c4-a7ef-96ce9036338c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/lefta/instance","description":"<p>Get a list of all the available LEFTA instances for a specific agency. Some agencies have more than once instance of the LEFTA application. The LEFTA Key allows the API client to target a specific LEFTA instance. This is an options feature; you may not have any need for this method if your agency only have one LEFTA instance.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","lefta","instance"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"75fee332-acf9-4b4c-add3-142c1bebc7bc","name":"Success","originalRequest":{"method":"GET","header":[],"url":"{{BaseUri}}/api/lefta/instance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcaW5zdGFuY2U=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 28 Apr 2022 19:25:29 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"communications\": \"M7WY87DCVlzSxkPzWx5KvAyhoWELGzHdYc1GaBIoInk=\",\n    \"patrol\": \"nes8+2iOPcvaMRWnNpNZjg==\"\n}"}],"_postman_id":"8e50b3de-5603-40c4-a7ef-96ce9036338c"}],"id":"f53a8c77-8581-4449-9471-2ac55e22ff0c","description":"<p>The Instance namespace refers to the optional multiple instances of the LEFTA application an agency may have.</p>\n","_postman_id":"f53a8c77-8581-4449-9471-2ac55e22ff0c","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}}},{"name":"Call Signal","item":[{"name":"Get All","id":"63f1c164-2958-4390-a30f-f5b4822d3b76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BaseUri}}/api/lefta/callsignal","description":"<p>Get a list of all the current call signals in use by this instance. This method will use the LEFTA instance associated with the client token by default. You can change the method to use another instance within our agency by supplying that instance’s LeftaKey in the header of this request.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","lefta","callsignal"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"636f0822-bfc7-4144-84d4-aa430c7f43b4","name":"Success","originalRequest":{"method":"GET","header":[],"url":"{{BaseUri}}/api/lefta/callsignal"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbHNpZ25hbA==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 02 May 2022 18:28:00 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"callSignal\": \"PC\",\n        \"callCategory\": \"CAD Test Char\",\n        \"modifiedDate\": \"2022-03-02T07:56:58.1830463\",\n        \"createdDate\": \"2022-03-02T07:56:58.183045\",\n        \"createdBy\": \"durandpeterson@leftasystems.org\",\n        \"modifiedBy\": \"durandpeterson@leftasystems.org\"\n    },\n    {\n        \"callSignal\": \"1016\",\n        \"callCategory\": \"CAD Test Num\",\n        \"modifiedDate\": \"2022-03-02T07:57:28.0208041\",\n        \"createdDate\": \"2022-03-02T07:57:28.0208037\",\n        \"createdBy\": \"durandpeterson@leftasystems.org\",\n        \"modifiedBy\": \"durandpeterson@leftasystems.org\"\n    },\n    {\n        \"callSignal\": \"415E\",\n        \"callCategory\": \"CAD Test AlphaNum\",\n        \"modifiedDate\": \"2022-03-02T07:58:16.79855\",\n        \"createdDate\": \"2022-03-02T07:58:16.7985497\",\n        \"createdBy\": \"durandpeterson@leftasystems.org\",\n        \"modifiedBy\": \"durandpeterson@leftasystems.org\"\n    },\n    {\n        \"callSignal\": \"1\",\n        \"callCategory\": \"DUI\",\n        \"modifiedDate\": \"2018-09-08T19:42:07.1709419\",\n        \"createdDate\": \"2013-01-16T08:11:08.523\",\n        \"createdBy\": \"ftc\",\n        \"modifiedBy\": \"bryansmith@leftasystems.org\"\n    },\n    {\n        \"callSignal\": \"4\",\n        \"callCategory\": \"Traffic Crash - Vehicle with Injuries\",\n        \"modifiedDate\": \"2018-09-08T19:42:23.1757138\",\n        \"createdDate\": \"2013-01-16T08:09:51.707\",\n        \"createdBy\": \"ftc\",\n        \"modifiedBy\": \"bryansmith@leftasystems.org\"\n    },\n    {\n        \"callSignal\": \"8\",\n        \"callCategory\": \"Missing Person - Adult Not Endangered\",\n        \"modifiedDate\": \"2018-09-08T19:42:34.5771957\",\n        \"createdDate\": \"2013-01-16T08:10:08.773\",\n        \"createdBy\": \"ftc\",\n        \"modifiedBy\": \"bryansmith@leftasystems.org\"\n    },\n    {\n        \"callSignal\": \"10\",\n        \"callCategory\": \"Stolen Vehicle\",\n        \"modifiedDate\": \"2018-09-08T19:42:40.5177837\",\n        \"createdDate\": \"2013-02-17T10:55:30.793\",\n        \"createdBy\": \"ftc\",\n        \"modifiedBy\": \"bryansmith@leftasystems.org\"\n    },\n    {\n        \"callSignal\": \"12\",\n        \"callCategory\": \"Alcohol Violation Under 21 Years Old (.02%)\",\n        \"modifiedDate\": \"2018-09-08T19:42:52.912254\",\n        \"createdDate\": \"2013-01-16T08:10:22.61\",\n        \"createdBy\": \"ftc\",\n        \"modifiedBy\": \"bryansmith@leftasystems.org\"\n    },\n    {\n        \"callSignal\": \"459\",\n        \"callCategory\": \"Burglary\",\n        \"modifiedDate\": \"2020-06-12T13:03:38.6391669\",\n        \"createdDate\": \"2015-02-10T00:06:51.5\",\n        \"createdBy\": \"ftc\",\n        \"modifiedBy\": \"bryansmith@leftasystems.org\"\n    },\n    {\n        \"callSignal\": \"211\",\n        \"callCategory\": \"Robbery\",\n        \"modifiedDate\": \"2020-06-12T13:03:30.182966\",\n        \"createdDate\": \"2013-01-16T08:10:49.037\",\n        \"createdBy\": \"ftc\",\n        \"modifiedBy\": \"bryansmith@leftasystems.org\"\n    }\n]"}],"_postman_id":"63f1c164-2958-4390-a30f-f5b4822d3b76"},{"name":"Get All : With Instance Key","id":"5143968b-6342-4651-b8be-6da9f7c49c46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"LeftaKey","value":"M7WY87DCVlzSxkPzWx5KvAyhoWELGzHdYc1GaBIoInk=","description":"<p>Optional</p>\n","type":"text"}],"url":"{{BaseUri}}/api/lefta/callsignal","description":"<p>Get a list of all the current call signals in use by this instance. This method will use the LEFTA instance associated with the client token by default. You can change the method to use another instance within our agency by supplying that instance’s LeftaKey in the header of this request.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","lefta","callsignal"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"00346911-d207-41f3-9a9e-bda9da5a552d","name":"Success","originalRequest":{"method":"GET","header":[{"key":"LeftaKey","value":"M7WY87DCVlzSxkPzWx5KvAyhoWELGzHdYc1GaBIoInk=","description":"Optional","type":"text"},{"key":"LeftaKey","value":"nes8+2iOPcvaMRWnNpNZjg==","description":"Optional","type":"text","disabled":true}],"url":"{{BaseUri}}/api/lefta/callsignal"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbHNpZ25hbA==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 02 May 2022 18:29:16 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"callSignal\": \"PC\",\n        \"callCategory\": \"C-CAD Test Char\",\n        \"modifiedDate\": \"2022-03-02T07:56:58.1830463\",\n        \"createdDate\": \"2022-03-02T07:56:58.183045\",\n        \"createdBy\": \"durandpeterson@leftasystems.org\",\n        \"modifiedBy\": \"durandpeterson@leftasystems.org\"\n    },\n    {\n        \"callSignal\": \"1016\",\n        \"callCategory\": \"CAD Test Num\",\n        \"modifiedDate\": \"2022-03-02T07:57:28.0208041\",\n        \"createdDate\": \"2022-03-02T07:57:28.0208037\",\n        \"createdBy\": \"durandpeterson@leftasystems.org\",\n        \"modifiedBy\": \"durandpeterson@leftasystems.org\"\n    },\n    {\n        \"callSignal\": \"415E\",\n        \"callCategory\": \"CAD Test AlphaNum\",\n        \"modifiedDate\": \"2022-03-02T07:58:16.79855\",\n        \"createdDate\": \"2022-03-02T07:58:16.7985497\",\n        \"createdBy\": \"durandpeterson@leftasystems.org\",\n        \"modifiedBy\": \"durandpeterson@leftasystems.org\"\n    },\n    {\n        \"callSignal\": \"1\",\n        \"callCategory\": \"DUI\",\n        \"modifiedDate\": \"2018-09-08T19:42:07.1709419\",\n        \"createdDate\": \"2013-01-16T08:11:08.523\",\n        \"createdBy\": \"ftc\",\n        \"modifiedBy\": \"bryansmith@leftasystems.org\"\n    },\n    {\n        \"callSignal\": \"4\",\n        \"callCategory\": \"C-Traffic Crash - Vehicle with Injuries\",\n        \"modifiedDate\": \"2018-09-08T19:42:23.1757138\",\n        \"createdDate\": \"2013-01-16T08:09:51.707\",\n        \"createdBy\": \"ftc\",\n        \"modifiedBy\": \"bryansmith@leftasystems.org\"\n    },\n    {\n        \"callSignal\": \"8\",\n        \"callCategory\": \"C-Missing Person - Adult Not Endangered\",\n        \"modifiedDate\": \"2018-09-08T19:42:34.5771957\",\n        \"createdDate\": \"2013-01-16T08:10:08.773\",\n        \"createdBy\": \"ftc\",\n        \"modifiedBy\": \"bryansmith@leftasystems.org\"\n    },\n    {\n        \"callSignal\": \"10\",\n        \"callCategory\": \"Stolen Vehicle\",\n        \"modifiedDate\": \"2018-09-08T19:42:40.5177837\",\n        \"createdDate\": \"2013-02-17T10:55:30.793\",\n        \"createdBy\": \"ftc\",\n        \"modifiedBy\": \"bryansmith@leftasystems.org\"\n    },\n    {\n        \"callSignal\": \"12\",\n        \"callCategory\": \"C-Alcohol Violation Under 21 Years Old (.02%)\",\n        \"modifiedDate\": \"2018-09-08T19:42:52.912254\",\n        \"createdDate\": \"2013-01-16T08:10:22.61\",\n        \"createdBy\": \"ftc\",\n        \"modifiedBy\": \"bryansmith@leftasystems.org\"\n    },\n    {\n        \"callSignal\": \"459\",\n        \"callCategory\": \"Burglary\",\n        \"modifiedDate\": \"2020-06-12T13:03:38.6391669\",\n        \"createdDate\": \"2015-02-10T00:06:51.5\",\n        \"createdBy\": \"ftc\",\n        \"modifiedBy\": \"bryansmith@leftasystems.org\"\n    },\n    {\n        \"callSignal\": \"211\",\n        \"callCategory\": \"Robbery\",\n        \"modifiedDate\": \"2020-06-12T13:03:30.182966\",\n        \"createdDate\": \"2013-01-16T08:10:49.037\",\n        \"createdBy\": \"ftc\",\n        \"modifiedBy\": \"bryansmith@leftasystems.org\"\n    }\n]"},{"id":"e482855d-9a6a-46a7-9e1a-9cfd2c08e813","name":"Invalid Instance Key","originalRequest":{"method":"GET","header":[{"key":"LeftaKey","value":"M7WY87DCVlzSxkPzWx5KvAyhoWELGzHdYc1GaBIoInk=","type":"text"},{"key":"LeftaKey","value":"nes8+2iOPcvaMRWnNpNZjg==","type":"text"}],"url":"{{BaseUri}}/api/lefta/callsignal"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbHNpZ25hbA==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 29 Apr 2022 11:33:57 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"trackingId\": \"72287333-05f4-4b8c-aaf6-a89b66ea9d05\",\n    \"message\": \"There was a problem reading the supplied LEFTA Instance Key from the request header! Please insure the supplied keys are valid and no more than one is sent.\"\n}"}],"_postman_id":"5143968b-6342-4651-b8be-6da9f7c49c46"}],"id":"2e82f1ef-672c-4f75-a50d-aeccc49ea9a5","description":"<p>The Call Signal namespace will allow one to access field call signals used by the agency within the LEFTA application. Some API methods require call signals to be preconfigured in the LEFTA Portal to function properly. This is a good way to get a list of all the current call signals within your agency's specific LEFTA instance.</p>\n","_postman_id":"2e82f1ef-672c-4f75-a50d-aeccc49ea9a5","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}}},{"name":"Call Log","item":[{"name":"Get a List of Call Logs","id":"16578975-60fd-4d97-9aa3-0845c41aa671","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"caseNumber\": \"15\",\r\n    \"street\": \"Test\",\r\n    \"city\": \"Jacksonville\",\r\n    \"zip\": \"31548\",\r\n    \"userId\": 95475,\r\n    \"callType\": \"415E\",\r\n    \"callDescription\": \"CAD Test AlphaNum\",\r\n    \"comments\": \"Comment\",\r\n    \"disposition\": \"disposition\",\r\n    \"callDateTime\": \"2012-12-30T11:33:01.217\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/lefta/calllog/2022-4-01/2022-06-29","description":"<p>Get a list of the staged Call Logs that been submitted by a data range. The date range cannot exceed 3 months.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","lefta","calllog","2022-4-01","2022-06-29"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"3527e2be-6612-427f-b5e9-5142aef5caea","name":"Success","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"caseNumber\": \"15\",\r\n    \"street\": \"Test\",\r\n    \"city\": \"Jacksonville\",\r\n    \"zip\": \"31548\",\r\n    \"userId\": 95475,\r\n    \"callType\": \"415E\",\r\n    \"callDescription\": \"CAD Test AlphaNum\",\r\n    \"comments\": \"Comment\",\r\n    \"disposition\": \"disposition\",\r\n    \"callDateTime\": \"2012-12-30T11:33:01.217\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/lefta/calllog/2022-4-01/2022-06-29"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbGxvZ1wyMDIyLTQtMDFcMjAyMi0wNi0yOQ==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 29 Jul 2022 13:25:08 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 51,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"4\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"This is a call description.\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 2,\n        \"recordStatusMessage\": \"Received with Errors\",\n        \"errorMessage\": \"Error: Supplied CallDescription does not have a matching CallCategory!\",\n        \"modifiedDate\": \"2022-04-14T07:25:20.4005362\",\n        \"createdDate\": \"2022-04-14T07:25:20.4004982\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 52,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"4\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"This is a call description.\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 2,\n        \"recordStatusMessage\": \"Received with Errors\",\n        \"errorMessage\": \"Error: Supplied CallDescription does not have a matching CallCategory!\",\n        \"modifiedDate\": \"2022-04-14T07:25:20.4005746\",\n        \"createdDate\": \"2022-04-14T07:25:20.4005745\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 53,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"4\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"This is a call description.\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 2,\n        \"recordStatusMessage\": \"Received with Errors\",\n        \"errorMessage\": \"Error: Supplied CallDescription does not have a matching CallCategory!\",\n        \"modifiedDate\": \"2022-04-14T07:26:59.0319297\",\n        \"createdDate\": \"2022-04-14T07:26:59.0319296\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 54,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"4\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415Ee\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 2,\n        \"recordStatusMessage\": \"Received with Errors\",\n        \"errorMessage\": \"Error: Supplied CallType does not have a matching CallSignal!\",\n        \"modifiedDate\": \"2022-04-14T07:27:34.1124679\",\n        \"createdDate\": \"2022-04-14T07:27:34.1124678\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 55,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"4\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415Ee\",\n        \"callDescription\": \"CAD Test AlphaNumX\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 2,\n        \"recordStatusMessage\": \"Received with Errors\",\n        \"errorMessage\": \"Error: Supplied CallType does not have a matching CallSignal! Supplied CallDescription does not have a matching CallCategory!\",\n        \"modifiedDate\": \"2022-04-14T07:28:09.2218864\",\n        \"createdDate\": \"2022-04-14T07:28:09.2218863\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 56,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"4\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-14T07:29:52.9446725\",\n        \"createdDate\": \"2022-04-14T07:29:52.9446723\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 57,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"4\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-14T07:42:48.5924664\",\n        \"createdDate\": \"2022-04-14T07:42:48.5924381\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 58,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"5\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-15T07:21:52.0076992\",\n        \"createdDate\": \"2022-04-15T07:21:52.0076991\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 59,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"6\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-15T07:27:13.7193162\",\n        \"createdDate\": \"2022-04-15T07:27:13.7193161\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 60,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"7\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-19T10:31:57.5336214\",\n        \"createdDate\": \"2022-04-19T10:31:57.5336211\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 61,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"8\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-19T11:06:26.683029\",\n        \"createdDate\": \"2022-04-19T11:06:26.6830289\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 62,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"9\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-20T07:49:48.5104303\",\n        \"createdDate\": \"2022-04-20T07:49:48.5104302\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 63,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"10\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-20T10:36:02.5622484\",\n        \"createdDate\": \"2022-04-20T10:36:02.562248\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 64,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"11\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-20T10:38:08.6870032\",\n        \"createdDate\": \"2022-04-20T10:38:08.6870031\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 65,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"12\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-21T07:45:20.1961808\",\n        \"createdDate\": \"2022-04-21T07:45:20.1961807\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 66,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"13\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-21T15:23:56.7080239\",\n        \"createdDate\": \"2022-04-21T15:23:56.7080237\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 67,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"14\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-21T15:32:52.5921779\",\n        \"createdDate\": \"2022-04-21T15:32:52.5921777\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 68,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"15\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-28T15:34:48.1452754\",\n        \"createdDate\": \"2022-04-28T15:34:48.1452752\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 69,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"15\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415Ex\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 2,\n        \"recordStatusMessage\": \"Received with Errors\",\n        \"errorMessage\": \"Error: Supplied CallType does not have a matching CallSignal!\",\n        \"modifiedDate\": \"2022-04-29T08:04:58.3376353\",\n        \"createdDate\": \"2022-04-29T08:04:58.337635\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    }\n]"},{"id":"6a2e76f0-6825-4ccf-94ef-0aa32c1612bc","name":"Invalid Request Range","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"caseNumber\": \"15\",\r\n    \"street\": \"Test\",\r\n    \"city\": \"Jacksonville\",\r\n    \"zip\": \"31548\",\r\n    \"userId\": 95475,\r\n    \"callType\": \"415E\",\r\n    \"callDescription\": \"CAD Test AlphaNum\",\r\n    \"comments\": \"Comment\",\r\n    \"disposition\": \"disposition\",\r\n    \"callDateTime\": \"2012-12-30T11:33:01.217\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/lefta/calllog/2022-2-01/2022-06-29"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbGxvZ1wyMDIyLTItMDFcMjAyMi0wNi0yOQ==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 29 Jul 2022 13:26:14 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"trackingId\": \"4e951cc4-96be-418f-ac8a-d8c7b3a048ed\",\n    \"message\": \"Requests to this endpoint cannot excede 3 months (93 days)!\"\n}"}],"_postman_id":"16578975-60fd-4d97-9aa3-0845c41aa671"},{"name":"Get a List of Call Logs: With Instance Key","id":"c146f3fd-ef69-42d6-a2ca-cb22ef72002f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"LeftaKey","value":"M7WY87DCVlzSxkPzWx5KvAyhoWELGzHdYc1GaBIoInk=","description":"<p>Optional</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"caseNumber\": \"15\",\r\n    \"street\": \"Test\",\r\n    \"city\": \"Jacksonville\",\r\n    \"zip\": \"31548\",\r\n    \"userId\": 95475,\r\n    \"callType\": \"415E\",\r\n    \"callDescription\": \"CAD Test AlphaNum\",\r\n    \"comments\": \"Comment\",\r\n    \"disposition\": \"disposition\",\r\n    \"callDateTime\": \"2012-12-30T11:33:01.217\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/lefta/calllog/2020-4-01/2020-06-29","description":"<p>Get a list of the staged Call Logs that been submitted by a data range. The date range cannot exceed 3 months. You can change the method to use another instance within our agency by supplying that instance’s LeftaKey in the header of this request.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","lefta","calllog","2020-4-01","2020-06-29"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"0f1ba9be-01c0-472d-a781-527d84e679e0","name":"Success","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"caseNumber\": \"15\",\r\n    \"street\": \"Test\",\r\n    \"city\": \"Jacksonville\",\r\n    \"zip\": \"31548\",\r\n    \"userId\": 95475,\r\n    \"callType\": \"415E\",\r\n    \"callDescription\": \"CAD Test AlphaNum\",\r\n    \"comments\": \"Comment\",\r\n    \"disposition\": \"disposition\",\r\n    \"callDateTime\": \"2012-12-30T11:33:01.217\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/lefta/calllog/2022-4-01/2022-06-29"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbGxvZ1wyMDIyLTQtMDFcMjAyMi0wNi0yOQ==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 29 Jul 2022 13:25:08 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 51,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"4\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"This is a call description.\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 2,\n        \"recordStatusMessage\": \"Received with Errors\",\n        \"errorMessage\": \"Error: Supplied CallDescription does not have a matching CallCategory!\",\n        \"modifiedDate\": \"2022-04-14T07:25:20.4005362\",\n        \"createdDate\": \"2022-04-14T07:25:20.4004982\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 52,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"4\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"This is a call description.\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 2,\n        \"recordStatusMessage\": \"Received with Errors\",\n        \"errorMessage\": \"Error: Supplied CallDescription does not have a matching CallCategory!\",\n        \"modifiedDate\": \"2022-04-14T07:25:20.4005746\",\n        \"createdDate\": \"2022-04-14T07:25:20.4005745\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 53,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"4\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"This is a call description.\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 2,\n        \"recordStatusMessage\": \"Received with Errors\",\n        \"errorMessage\": \"Error: Supplied CallDescription does not have a matching CallCategory!\",\n        \"modifiedDate\": \"2022-04-14T07:26:59.0319297\",\n        \"createdDate\": \"2022-04-14T07:26:59.0319296\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 54,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"4\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415Ee\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 2,\n        \"recordStatusMessage\": \"Received with Errors\",\n        \"errorMessage\": \"Error: Supplied CallType does not have a matching CallSignal!\",\n        \"modifiedDate\": \"2022-04-14T07:27:34.1124679\",\n        \"createdDate\": \"2022-04-14T07:27:34.1124678\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 55,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"4\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415Ee\",\n        \"callDescription\": \"CAD Test AlphaNumX\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 2,\n        \"recordStatusMessage\": \"Received with Errors\",\n        \"errorMessage\": \"Error: Supplied CallType does not have a matching CallSignal! Supplied CallDescription does not have a matching CallCategory!\",\n        \"modifiedDate\": \"2022-04-14T07:28:09.2218864\",\n        \"createdDate\": \"2022-04-14T07:28:09.2218863\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 56,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"4\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-14T07:29:52.9446725\",\n        \"createdDate\": \"2022-04-14T07:29:52.9446723\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 57,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"4\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-14T07:42:48.5924664\",\n        \"createdDate\": \"2022-04-14T07:42:48.5924381\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 58,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"5\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-15T07:21:52.0076992\",\n        \"createdDate\": \"2022-04-15T07:21:52.0076991\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 59,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"6\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-15T07:27:13.7193162\",\n        \"createdDate\": \"2022-04-15T07:27:13.7193161\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 60,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"7\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-19T10:31:57.5336214\",\n        \"createdDate\": \"2022-04-19T10:31:57.5336211\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 61,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"8\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-19T11:06:26.683029\",\n        \"createdDate\": \"2022-04-19T11:06:26.6830289\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 62,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"9\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-20T07:49:48.5104303\",\n        \"createdDate\": \"2022-04-20T07:49:48.5104302\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 63,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"10\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-20T10:36:02.5622484\",\n        \"createdDate\": \"2022-04-20T10:36:02.562248\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 64,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"11\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-20T10:38:08.6870032\",\n        \"createdDate\": \"2022-04-20T10:38:08.6870031\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 65,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"12\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-21T07:45:20.1961808\",\n        \"createdDate\": \"2022-04-21T07:45:20.1961807\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 66,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"13\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-21T15:23:56.7080239\",\n        \"createdDate\": \"2022-04-21T15:23:56.7080237\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 67,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"14\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-21T15:32:52.5921779\",\n        \"createdDate\": \"2022-04-21T15:32:52.5921777\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 68,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"15\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415E\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 1,\n        \"recordStatusMessage\": \"Staged\",\n        \"errorMessage\": \"\",\n        \"modifiedDate\": \"2022-04-28T15:34:48.1452754\",\n        \"createdDate\": \"2022-04-28T15:34:48.1452752\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    },\n    {\n        \"id\": 69,\n        \"recruitId\": 95475,\n        \"cadid\": \"12345\",\n        \"phase\": \"\",\n        \"dayOfTraining\": null,\n        \"caseNumber\": \"15\",\n        \"callDateTime\": \"2012-12-30T11:33:01.217\",\n        \"streetAddress\": \"Test\",\n        \"city\": \"Jacksonville\",\n        \"zipCode\": \"31548\",\n        \"callType\": \"415Ex\",\n        \"callDescription\": \"CAD Test AlphaNum\",\n        \"comments\": \"Comment\",\n        \"disposition\": \"disposition\",\n        \"recordStatus\": 2,\n        \"recordStatusMessage\": \"Received with Errors\",\n        \"errorMessage\": \"Error: Supplied CallType does not have a matching CallSignal!\",\n        \"modifiedDate\": \"2022-04-29T08:04:58.3376353\",\n        \"createdDate\": \"2022-04-29T08:04:58.337635\",\n        \"createdBy\": \"apiTest\",\n        \"modifiedBy\": \"apiTest\"\n    }\n]"},{"id":"3daad432-add0-4eca-bb86-7920cbdcdd5e","name":"Invalid Request Range","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\r\n    \"caseNumber\": \"15\",\r\n    \"street\": \"Test\",\r\n    \"city\": \"Jacksonville\",\r\n    \"zip\": \"31548\",\r\n    \"userId\": 95475,\r\n    \"callType\": \"415E\",\r\n    \"callDescription\": \"CAD Test AlphaNum\",\r\n    \"comments\": \"Comment\",\r\n    \"disposition\": \"disposition\",\r\n    \"callDateTime\": \"2012-12-30T11:33:01.217\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/lefta/calllog/2022-2-01/2022-06-29"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbGxvZ1wyMDIyLTItMDFcMjAyMi0wNi0yOQ==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 29 Jul 2022 13:26:14 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"trackingId\": \"4e951cc4-96be-418f-ac8a-d8c7b3a048ed\",\n    \"message\": \"Requests to this endpoint cannot excede 3 months (93 days)!\"\n}"}],"_postman_id":"c146f3fd-ef69-42d6-a2ca-cb22ef72002f"},{"name":"Create","id":"72605d2c-1016-40e9-b07f-b9e639a7f173","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"caseNumber\": \"ApiAutoCase-110\",\r\n    \"street\": \"Test\",\r\n    \"city\": \"Jacksonville\",\r\n    \"zip\": \"31548\",\r\n    \"cadId\": \"12345\",\r\n    \"callType\": \"415E\",\r\n    \"callDescription\": \"CAD Test AlphaNum\",\r\n    \"comments\": \"Comment\",\r\n    \"disposition\": \"disposition\",\r\n    \"callDateTime\": \"2012-12-30T11:33:01.217\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/lefta/calllog","description":"<p>Create a new call log in the LEFTA application. This can be a current operational(live) call log, or a historical record. There can only be one call log per case number and user id. If an additional call log is posted with and existing case number and user id combination, the API will return a 409 response. This method will use the LEFTA instance associated with the client token by default. You can change the method to use another instance within our agency by supplying that instance’s LeftaKey in the header of this request.</p>\n<p>Model Notes:</p>\n<p>\"caseNumber\": string: Agency's case number<br />\"cadId\": int: userId from the from the LEFTA System's user model<br />\"callType\": string: matches callsignal from LEFTA System's Call Signal model<br />\"callDescription\": string: matches callcategory from LEFTA System's Call Signal model<br />\"callDateTime\": datetime: time local to the agency's time zone</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","lefta","calllog"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"8f714b33-90d7-43f6-8295-2ccbb6d9c7e2","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"caseNumber\": \"ApiAutoCase-110\",\r\n    \"street\": \"Test\",\r\n    \"city\": \"Jacksonville\",\r\n    \"zip\": \"31548\",\r\n    \"cadId\": \"12345\",\r\n    \"callType\": \"415E\",\r\n    \"callDescription\": \"CAD Test AlphaNum\",\r\n    \"comments\": \"Comment\",\r\n    \"disposition\": \"disposition\",\r\n    \"callDateTime\": \"2012-12-30T11:33:01.217\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.leftasystems.net/api/lefta/calllog"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbGxvZw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 28 Apr 2022 19:32:28 GMT"}],"cookie":[],"responseTime":null,"body":"CAD event successfully added."},{"id":"6d382664-8335-4bf3-8571-89100766dabf","name":"Call Signal Error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"caseNumber\": \"ApiAutoCase-110\",\r\n    \"street\": \"Test\",\r\n    \"city\": \"Jacksonville\",\r\n    \"zip\": \"31548\",\r\n    \"cadId\": \"12345\",\r\n    \"callType\": \"415E\",\r\n    \"callDescription\": \"CAD Test AlphaNum\",\r\n    \"comments\": \"Comment\",\r\n    \"disposition\": \"disposition\",\r\n    \"callDateTime\": \"2012-12-30T11:33:01.217\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/lefta/calllog"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbGxvZw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 29 Apr 2022 12:04:59 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"trackingId\": \"33cffd0f-e778-4ffb-8eaf-93e5f35b59a7\",\n    \"message\": \"Some of the supplied call signal information (CallType or CallDescription) could not be found!  Please ensure call signal information is up to date\"\n}"},{"id":"b009e26b-df79-489e-9872-f168052980b7","name":"User Not Found","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"caseNumber\": \"ApiAutoCase-110\",\r\n    \"street\": \"Test\",\r\n    \"city\": \"Jacksonville\",\r\n    \"zip\": \"31548\",\r\n    \"cadId\": \"12345\",\r\n    \"callType\": \"415E\",\r\n    \"callDescription\": \"CAD Test AlphaNum\",\r\n    \"comments\": \"Comment\",\r\n    \"disposition\": \"disposition\",\r\n    \"callDateTime\": \"2012-12-30T11:33:01.217\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/lefta/calllog"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbGxvZw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 29 Apr 2022 12:10:27 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"trackingId\": \"0e4d24cc-e206-4b1e-9ead-4f3721c3a645\",\n    \"message\": \"A CAD user could not be found for the supplied UserId!  Please ensure that a CAD is configured for this user.\"\n}"}],"_postman_id":"72605d2c-1016-40e9-b07f-b9e639a7f173"},{"name":"Create: With Instance Key","id":"d84829de-61af-4888-a09c-e096a93010c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"LeftaKey","value":"M7WY87DCVlzSxkPzWx5KvAyhoWELGzHdYc1GaBIoInk=","description":"<p>Optional</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"caseNumber\": \"ApiAutoCase-110\",\r\n    \"street\": \"Test\",\r\n    \"city\": \"Jacksonville\",\r\n    \"zip\": \"31548\",\r\n    \"cadId\": \"12345\",\r\n    \"callType\": \"415E\",\r\n    \"callDescription\": \"CAD Test AlphaNum\",\r\n    \"comments\": \"Comment\",\r\n    \"disposition\": \"disposition\",\r\n    \"callDateTime\": \"2012-12-30T11:33:01.217\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/lefta/calllog","description":"<p>Create a new call log in the LEFTA application. This can be a current operational(live) call log, or a historical record. There can only be one call log per case number and user id. If an additional call log is posted with and existing case number and user id combination, the API will return a 409 response. This method will use the LEFTA instance associated with the client token by default. You can change the method to use another instance within our agency by supplying that instance’s LeftaKey in the header of this request.</p>\n<p>Model Notes:</p>\n<p>\"caseNumber\": string: Agency's case number<br />\"cadId\": int: userId from the from the LEFTA System's user model<br />\"callType\": string: matches callsignal from LEFTA System's Call Signal model<br />\"callDescription\": string: matches callcategory from LEFTA System's Call Signal model<br />\"callDateTime\": datetime: time local to the agency's time zone</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","lefta","calllog"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"868762cf-4a06-4db2-a5c8-a0d839583db5","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"caseNumber\": \"ApiAutoCase-110\",\r\n    \"street\": \"Test\",\r\n    \"city\": \"Jacksonville\",\r\n    \"zip\": \"31548\",\r\n    \"cadId\": \"12345\",\r\n    \"callType\": \"415E\",\r\n    \"callDescription\": \"CAD Test AlphaNum\",\r\n    \"comments\": \"Comment\",\r\n    \"disposition\": \"disposition\",\r\n    \"callDateTime\": \"2012-12-30T11:33:01.217\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.leftasystems.net/api/lefta/calllog"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbGxvZw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 28 Apr 2022 19:32:28 GMT"}],"cookie":[],"responseTime":null,"body":"CAD event successfully added."},{"id":"d2a1a87f-72e2-4d70-91dd-5a2d058d339d","name":"Invalid Instance Key","originalRequest":{"method":"GET","header":[{"key":"LeftaKey","value":"M7WY87DCVlzSxkPzWx5KvAyhoWELGzHdYc1GaBIoInk=","type":"text"},{"key":"LeftaKey","value":"nes8+2iOPcvaMRWnNpNZjg==","type":"text"}],"url":"{{BaseUri}}/api/lefta/callsignal"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbHNpZ25hbA==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 29 Apr 2022 11:33:57 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"trackingId\": \"72287333-05f4-4b8c-aaf6-a89b66ea9d05\",\n    \"message\": \"There was a problem reading the supplied LEFTA Instance Key from the request header! Please insure the supplied keys are valid and no more than one is sent.\"\n}"},{"id":"e469a592-91c6-457a-9c24-e89c69ad91cb","name":"Call Signal Error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"caseNumber\": \"ApiAutoCase-110\",\r\n    \"street\": \"Test\",\r\n    \"city\": \"Jacksonville\",\r\n    \"zip\": \"31548\",\r\n    \"cadId\": \"12345\",\r\n    \"callType\": \"415E\",\r\n    \"callDescription\": \"CAD Test AlphaNum\",\r\n    \"comments\": \"Comment\",\r\n    \"disposition\": \"disposition\",\r\n    \"callDateTime\": \"2012-12-30T11:33:01.217\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/lefta/calllog"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbGxvZw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 29 Apr 2022 12:04:59 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"trackingId\": \"33cffd0f-e778-4ffb-8eaf-93e5f35b59a7\",\n    \"message\": \"Some of the supplied call signal information (CallType or CallDescription) could not be found!  Please ensure call signal information is up to date\"\n}"},{"id":"9af78f08-048c-40e0-b641-23e0b9057280","name":"User Not Found","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"caseNumber\": \"ApiAutoCase-110\",\r\n    \"street\": \"Test\",\r\n    \"city\": \"Jacksonville\",\r\n    \"zip\": \"31548\",\r\n    \"cadId\": \"12345\",\r\n    \"callType\": \"415E\",\r\n    \"callDescription\": \"CAD Test AlphaNum\",\r\n    \"comments\": \"Comment\",\r\n    \"disposition\": \"disposition\",\r\n    \"callDateTime\": \"2012-12-30T11:33:01.217\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{BaseUri}}/api/lefta/calllog"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbGxvZw==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 29 Apr 2022 12:10:27 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"trackingId\": \"0e4d24cc-e206-4b1e-9ead-4f3721c3a645\",\n    \"message\": \"A CAD user could not be found for the supplied UserId!  Please ensure that a CAD is configured for this user.\"\n}"}],"_postman_id":"d84829de-61af-4888-a09c-e096a93010c6"},{"name":"Recall","id":"f3de8583-c6a6-43c5-a4eb-5f5fec039b14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{BaseUri}}/api/lefta/calllog/15/95475","description":"<p>Remove a previously submitted call log from the LEFTA instance. This method will use the LEFTA instance associated with the client token by default. You can change the method to use another instance within our agency by supplying that instance’s LeftaKey in the header of this request.</p>\n<p>To recall a previously submitted call log, supply the URL with the case number and CAD id with the call log you want to recall. An example follows.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">DELETE /api/lefta/calllog/{caseNumber}/{cadId} HTTP/1.1\nHost: api.leftasystems.net\n\n</code></pre>\n<p>Because the call logs are processed at a regular interval, the log you are requesting may no longer be available. If the userId or call log supplied doesn't exist, the API will return with a 404. A status 409 will be returned if the call log has already been processed.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","lefta","calllog","15","95475"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"12f2b6c5-6b81-4b70-9ae3-3547b5ab0509","name":"Success","originalRequest":{"method":"DELETE","header":[],"url":"{{BaseUri}}/api/lefta/calllog/15/95475"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbGxvZ1wxNVw5NTQ3NQ==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 28 Apr 2022 19:34:48 GMT"}],"cookie":[],"responseTime":null,"body":"CAD event recalled successfully."},{"id":"227aeed4-2a7c-4039-bf46-bc957137443a","name":"User Not Found","originalRequest":{"method":"DELETE","header":[],"url":"{{BaseUri}}/api/lefta/calllog/15/95475"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbGxvZ1wxNVw5NTQ3NTE=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 29 Apr 2022 11:50:48 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"trackingId\": \"2841ca16-a0a3-4db8-abfc-763b0cb46ad5\",\n    \"message\": \"A CAD user could not be found for the supplied UserId!  Please ensure that a CAD is configured for this user.\"\n}"},{"id":"86e5a5f8-a405-4414-b00c-735e315c905c","name":"Call Log Not Found","originalRequest":{"method":"DELETE","header":[],"url":"{{BaseUri}}/api/lefta/calllog/15/95475"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbGxvZ1wxNVw5NTQ3NTE=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 29 Apr 2022 11:50:48 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"trackingId\": \"2841ca16-a0a3-4db8-abfc-763b0cb46ad5\",\n    \"message\": \"A call log was not found for the supplied parameters!\"\n}"},{"id":"87553c6a-841d-44dd-b7af-c3669c426c01","name":"Call Log Already Processed","originalRequest":{"method":"DELETE","header":[],"url":"{{BaseUri}}/api/lefta/calllog/15/95475"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbGxvZ1wxNVw5NTQ3NTE=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 29 Apr 2022 11:50:48 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"trackingId\": \"2841ca16-a0a3-4db8-abfc-763b0cb46ad5\",\n    \"message\": \"The requested call log has already been processed and can no longer be recalled!\"\n}"}],"_postman_id":"f3de8583-c6a6-43c5-a4eb-5f5fec039b14"},{"name":"Recall: With Instance Key","id":"a61f0a6e-58e8-4b22-bf95-d96255fd07ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"LeftaKey","value":"M7WY87DCVlzSxkPzWx5KvAyhoWELGzHdYc1GaBIoInk=","description":"<p>Optional</p>\n","type":"text"}],"url":"{{BaseUri}}/api/lefta/calllog/15/95475","description":"<p>Remove a previously submitted call log from the LEFTA instance. This method will use the LEFTA instance associated with the client token by default. You can change the method to use another instance within our agency by supplying that instance’s LeftaKey in the header of this request.</p>\n<p>To recall a previously submitted call log, supply the URL with the case number and CAD id with the call log you want to recall. An example follows.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">DELETE /api/lefta/calllog/{caseNumber}/{cadId} HTTP/1.1\nHost: api.leftasystems.net\n\n</code></pre>\n<p>Because the call logs are processed at a regular interval, the log you are requesting may no longer be available. If the userId or call log supplied doesn't exist, the API will return with a 404. A status 409 will be returned if the call log has already been processed.</p>\n","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}},"urlObject":{"path":["api","lefta","calllog","15","95475"],"host":["{{BaseUri}}"],"query":[],"variable":[]}},"response":[{"id":"069bef2e-db31-4323-9691-f6c164855901","name":"Success","originalRequest":{"method":"DELETE","header":[],"url":"{{BaseUri}}/api/lefta/calllog/15/95475"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/plain; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbGxvZ1wxNVw5NTQ3NQ==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 28 Apr 2022 19:34:48 GMT"}],"cookie":[],"responseTime":null,"body":"CAD event recalled successfully."},{"id":"28dc58cf-8d1f-41f7-94cc-cd3e7f0a19eb","name":"Invalid Instance Key","originalRequest":{"method":"GET","header":[{"key":"LeftaKey","value":"M7WY87DCVlzSxkPzWx5KvAyhoWELGzHdYc1GaBIoInk=","type":"text"},{"key":"LeftaKey","value":"nes8+2iOPcvaMRWnNpNZjg==","type":"text"}],"url":"{{BaseUri}}/api/lefta/callsignal"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbHNpZ25hbA==?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 29 Apr 2022 11:33:57 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"trackingId\": \"72287333-05f4-4b8c-aaf6-a89b66ea9d05\",\n    \"message\": \"There was a problem reading the supplied LEFTA Instance Key from the request header! Please insure the supplied keys are valid and no more than one is sent.\"\n}"},{"id":"bfbe8cac-11e1-455c-937b-c9a08d6d784d","name":"User Not Found","originalRequest":{"method":"DELETE","header":[],"url":"{{BaseUri}}/api/lefta/calllog/15/95475"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbGxvZ1wxNVw5NTQ3NTE=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 29 Apr 2022 11:50:48 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"trackingId\": \"2841ca16-a0a3-4db8-abfc-763b0cb46ad5\",\n    \"message\": \"A CAD user could not be found for the supplied UserId!  Please ensure that a CAD is configured for this user.\"\n}"},{"id":"16f6b589-b23d-420a-9e2b-af4b85114e91","name":"Call Log Not Found","originalRequest":{"method":"DELETE","header":[],"url":"{{BaseUri}}/api/lefta/calllog/15/95475"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbGxvZ1wxNVw5NTQ3NTE=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 29 Apr 2022 11:50:48 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"trackingId\": \"2841ca16-a0a3-4db8-abfc-763b0cb46ad5\",\n    \"message\": \"A call log was not found for the supplied parameters!\"\n}"},{"id":"25a66ec6-3c80-420b-9371-5e748c70f0c1","name":"Call Log Already Processed","originalRequest":{"method":"DELETE","header":[],"url":"{{BaseUri}}/api/lefta/calllog/15/95475"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Kestrel"},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcU291cmNlIENvbnRyb2xcR2l0XEFwaVxMZWZ0YVN5c3RlbXMuU2hpZWxkLkFwaVxhcGlcbGVmdGFcY2FsbGxvZ1wxNVw5NTQ3NTE=?="},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 29 Apr 2022 11:50:48 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"trackingId\": \"2841ca16-a0a3-4db8-abfc-763b0cb46ad5\",\n    \"message\": \"The requested call log has already been processed and can no longer be recalled!\"\n}"}],"_postman_id":"a61f0a6e-58e8-4b22-bf95-d96255fd07ea"}],"id":"d01ceb8d-8e06-403a-a149-8706243805ed","description":"<p>Everything in the Call Log namespace will be related to the CAD call log record for a selected LEFTA instance. New call logs are created via the Create method. Call logs may also be removed via the Recall method. There is no call log update method. If changes need to be made to a call log, first recall it from the system and post a new one to the API.</p>\n","_postman_id":"d01ceb8d-8e06-403a-a149-8706243805ed","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}}}],"id":"64b6d6ab-1b5d-4446-b1d1-3da4cd654a22","description":"<p>Through the LEFTA Systems LEFTA API, you can interact with each client’s LEFTA applications to perform common user functions. Because it is possible for clients to have more than one instance of the LEFTA application, some of the functions in this API accept optional LEFTA Keys in the request header.</p>\n","_postman_id":"64b6d6ab-1b5d-4446-b1d1-3da4cd654a22","auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"},"isInherited":true,"source":{"_postman_id":"33893710-1615-4c30-8d19-c5e2692d375a","id":"33893710-1615-4c30-8d19-c5e2692d375a","name":"LEFTA Systems API","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"token":"{{AccessToken}}"}},"event":[{"listen":"prerequest","script":{"id":"3d1a5231-29e7-446b-8e9e-67f9979a4b38","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bf3bc8ea-94fb-4c08-8e76-401e87cd66bb","type":"text/javascript","exec":[""]}}],"variable":[{"key":"baseUrl","value":"localhost:3000","type":"string"},{"key":"Password","value":""},{"key":"pw","value":""}]}