{"info":{"_postman_id":"f45e41c1-ccfd-43ea-b06b-fa296af690ab","name":"Medhub API Specifications","description":"<html><head></head><body><p>The MedHub API provides external systems with access to its database through pre-defined calls. The API is much like a standard REST interface, but with a couple of important differences.</p>\n<p>First, MedHub uses the HTTP method “POST” for all requests, using a Content-Type of <code>application/x-www-form-urlencoded</code>. This provides for complex requests and garners more familiarity and support than the often unused “PUT” method.</p>\n<p>Second, MedHub employs a verification technique that is very similar to Amazon’s AWS authentication. This process is described in detail in the \"API Requirements\" section.</p>\n<h1 id=\"requesting-api-access\">Requesting API Access</h1>\n<p>Each institution manages access to the MedHub API through the GME Office. To request access, contact the project manager within the GME Office and provide the following information in your request.</p>\n<p>Company/System Information:</p>\n<ul><li><div>Company Name</div></li><li><div>System Name</div></li><li><div>System IP Addresses</div></li></ul>\n\n<p>Contact Information:</p>\n<ul><li><div>Primary Contact</div></li><li><div>Contact Email Address</div></li><li><div>Contact Phone Number</div></li></ul>\n\n<p>Access Needs:</p>\n<ul><li><div>Programs/Courses Needed</div></li><li><div>Calls Requested (see below for list of available calls)</div></li></ul>\n\n<p>If your request is approved, you will be provided with a <code>clientID</code> (integer) and a private key. These will be used to generate a verification key, which is needed for each API call. Keep the private key in a safe place and do not distribute.</p>\n<h1 id=\"api-requirements\">API Requirements</h1>\n<p>This section will identify the interface requirements and process for making a call to the MedHub API. All calls should be made using HTTPS, to ensure encryption in transit.</p>\n<p>All calls should use a standard POST request and include the following variables. The Content-Type of these requests should be set as <code>application/x-www-form-urlencoded</code>.</p>\n<ul><li><div><code>clientID</code> - Your assigned client identifier (integer)</div></li><li><div><code>ts</code> - Current UNIX timestamp (must be within 10 minutes of MedHub server time). <i>Note: this timestamp should be provided in whole seconds (e.g. 1593030486 representing 6/24/2020 at 8:28pm UTC)</i></div></li><li><div><code>type</code> - This will identify the format type of the request and response. At this time, only “json” is supported.</div></li><li><div><code>request</code> - The JSON encoded request, which is specific to each call. <i>Note: this is not needed or optional for some calls.</i></div></li><li><div><code>verify</code> - The unique hash which is used to verify the authenticity of the request</div></li></ul>\n\n<p>Process used to generate the “verify” string.</p>\n<ol><li><div>Concatenate a string with the following data, delimited with the pipe (“|”) character:<br></div><ol><li><div>clientID</div></li><li><div>timestamp</div></li><li><div>private key</div></li><li><div>request</div></li></ol><div><br><br>The string should look like this:<br><br><code>{clientID}</code>|<code>{timestamp}</code>|<code>{private key}</code>|<code>{request}</code><br><br><i>Note: the third pipe character is required even if the request is left blank.</i></div></li><li><div>Generate a SHA256 digest (keyless hash) of this information and send as the value of the <code>verify</code> key.</div></li></ol>\n\n<h1 id=\"error-codes\">Error Codes</h1>\n<table><tbody><tr><th>Error Code</th><th>Error Description</th><th>Error Notes</th></tr><tr><td><div>S01</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Request was not well formed (missing class, method, verify string, or clientID)</div><div><div><div><div></div></div></div><div></div></div></td><td><div>None</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>S02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>IP Address not discoverable</div><div><div><div><div></div></div></div><div></div></div></td><td><div>None</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>S03</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Invalid Client</div><div><div><div><div></div></div></div><div></div></div></td><td><div>None</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>S04</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Inactive Client</div><div><div><div><div></div></div></div><div></div></div></td><td><div>None</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>S05</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Client does not have access to call or this call has been deactivated</div><div><div><div><div></div></div></div><div></div></div></td><td><div>None</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>S06</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Timestamp not within 10 minutes</div><div><div><div><div></div></div></div><div></div></div></td><td><div>None</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>S07</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Verification string invalid</div><div><div><div><div></div></div></div><div></div></div></td><td><div>None</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>S08</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Invalid requesting IP Address</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Identify requesting IP address and ask GME Office to update profile</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>E01</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Invalid request (class/method not found)</div><div><div><div><div></div></div></div><div></div></div></td><td><div>None</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>E02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Unsupported return type requested</div><div><div><div><div></div></div></div><div></div></div></td><td><div>None</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>E03</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Access denied to this program</div><div><div><div><div></div></div></div><div></div></div></td><td><div>None</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>E04</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Invalid request (unknown or malformed inputs)</div><div><div><div><div></div></div></div><div></div></div></td><td><div>None</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>E05</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Requested result set is too large</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This error is displayed when the requested data set is too large. Thresholds are call-specific and should be provided in the documentation above. This error can often be avoided by adding additional filters (date range, etc)</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h1 id=\"http-status-codes\">HTTP Status Codes</h1>\n<table><tbody><tr><th>Status Code:</th><th>Code Description:</th><th>Notes:</th></tr><tr><td><div>200</div><div><div><div><div></div></div></div><div></div></div></td><td><div>OK</div><div><div><div><div></div></div></div><div></div></div></td><td><div>You should receive this code with any successful call.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>400</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Bad Request</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This code will be returned if an invalid return type is requested</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>401</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Unauthorized</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This code will be received if there was a security/authorization-related error</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>403</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Forbidden</div><div><div><div><div></div></div></div><div></div></div></td><td><div>(currently unused)</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>404</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Not Found</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This code identifies an unknown call</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h1 id=\"sample-interface-scripts\">Sample Interface Scripts</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>//Client-specific settings\n$clientID='1001';\n$institution='demo';\n$privateKey='pv93bfq12eps';\n//Sample call path\n$callPath='users/residents';\n//Get UNIX timestamp\n$timeNow=time();\n//Create request\n$requestA=array('programID'=&gt;19);\n$request_json=json_encode($requestA);\n//Generate verification string\n$verifyStr=hash('sha256',$clientID.\"|\".$timeNow.\"|\".$privateKey.\"|\".$request_json);\n//Construct data to send\n$post_dataA=array(\n    'clientID'=&gt;$clientID,\n    'ts'=&gt;$timeNow,\n    'verify'=&gt;$verifyStr,\n    'type'=&gt;'json',\n    'request'=&gt;$request_json);\n//Request URL\n$url='https://'.$institution.'.medhub.com/functions/api/'.$callPath;\n//Initialize cURL\n$ch=curl_init();\ncurl_setopt($ch, CURLOPT_URL, $url);\ncurl_setopt($ch, CURLOPT_USERAGENT, \"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)\");\ncurl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);\ncurl_setopt($ch, CURLOPT_POST, 1);\ncurl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($post_dataA));\n//Get response data and\n$responseStr=curl_exec($ch);\n$response_infoA=curl_getinfo($ch);\n//Close session\ncurl_close($ch);\n//Display response\necho \"HTTP Status Code: &lt;strong class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;\".$response_infoA[&amp;#x27;http_code&amp;#x27;].\"&lt;/b&gt;&lt;BR&gt;&lt;BR&gt;\";\necho \"&lt;pre class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;\".htmlentities($responseStr).\"&lt;/pre&gt;\";\necho \"&lt;BR&gt;&lt;BR&gt;&lt;HR size=1&gt;&lt;strong class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;JSON Decoded:&lt;/b&gt;&lt;BR&gt;&lt;BR&gt;\";\necho &amp;#x27;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; style=\"font-family: monospace; white-space:pre;\"&gt;&amp;#x27;;\necho htmlspecialchars(var_export(json_decode($responseStr,true)));\necho &amp;#x27;&lt;/div&gt;&amp;#x27;;\n?&gt;\n\n</code></pre></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Requesting API Access","slug":"requesting-api-access"},{"content":"API Requirements","slug":"api-requirements"},{"content":"Error Codes","slug":"error-codes"},{"content":"HTTP Status Codes","slug":"http-status-codes"},{"content":"Sample Interface Scripts","slug":"sample-interface-scripts"}],"owner":"10092239","collectionId":"f45e41c1-ccfd-43ea-b06b-fa296af690ab","publishedId":"T17KbkzJ","public":true,"customColor":{"top-bar":"125488","right-sidebar":"303030","highlight":"5FA800"},"publishDate":"2020-07-08T12:34:12.000Z"},"item":[{"name":"Info","item":[{"name":"info/test","event":[{"listen":"prerequest","script":{"id":"d7868eca-cf46-4346-9bcc-da90d1c5928c","exec":[""],"type":"text/javascript"}}],"id":"72b1e88b-7a64-4024-932d-63d76ad1f661","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"","description":"<p>no input required</p>\n","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/info/test","description":"<p>Test call to verify a successful connection to the api.</p>\n","urlObject":{"path":["info","test"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"b5f07f82-b8cb-47a2-8a6e-95b547090cbf","name":"info/test","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"","value":"","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/info/test"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Mar 2020 18:21:48 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"72b1e88b-7a64-4024-932d-63d76ad1f661"},{"name":"info/institution","id":"ab1619a6-c562-4066-b909-3ec5758ecbc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"","description":"<p>no input required</p>\n","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/info/institution","description":"<p>Retrieves information about the institution.</p>\n","urlObject":{"path":["info","institution"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"4fa09aed-ef33-418f-9f7b-554c3c087548","name":"info/institution","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/info/institution"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Mar 2020 18:24:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"institution_name\": \"Demo HealthCare System\",\n    \"institution_abbreviation\": \"SANDBOX\",\n    \"globalID\": 184,\n    \"url\": \"https://sandbox.medhub.com\",\n    \"api_version\": \"0.90\",\n    \"rotationsetID\": 19,\n    \"school_name\": \"Sandbox School of Medicine\"\n}"}],"_postman_id":"ab1619a6-c562-4066-b909-3ec5758ecbc2"},{"name":"info/medicalSchools","id":"5ba50b26-2d9c-4be0-9c65-973a799f1162","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"","description":"<p>no input required</p>\n","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/info/medicalSchools","description":"<p>Retrieves information about the medical school.</p>\n<h6 id=\"response-data\">Response Data</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Variable Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Version</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>schoolname</td>\n<td>unique school name</td>\n<td>integer</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>schoolcity</td>\n<td>city location of school</td>\n<td>integer</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>schoolstate</td>\n<td>state location of school</td>\n<td>integer</td>\n<td></td>\n<td>Capitalized abbreviation (e.g., CA)</td>\n</tr>\n<tr>\n<td>schoolzipcode</td>\n<td>zip code of school</td>\n<td>integer</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>schoolcountry</td>\n<td>country of school</td>\n<td>integer</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>schoolcode</td>\n<td>unique school code</td>\n<td>integer</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>schoolcode_aamc</td>\n<td></td>\n<td>integer</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>schoolcode_ama</td>\n<td></td>\n<td>integer</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>schoolcode_nrmp</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>status</td>\n<td>current state of education record</td>\n<td>integer</td>\n<td></td>\n<td>\"Active\" or \"Inactive\"</td>\n</tr>\n<tr>\n<td>inactivation_date</td>\n<td>date when record became inactive</td>\n<td>date</td>\n<td></td>\n<td>YYYY-MM-DD format</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["info","medicalSchools"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"c09de6c2-9416-4abc-baa4-9117ab697264","name":"info/institution","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/info/institution"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Mar 2020 18:24:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"institution_name\": \"Demo HealthCare System\",\n    \"institution_abbreviation\": \"SANDBOX\",\n    \"globalID\": 184,\n    \"url\": \"https://sandbox.medhub.com\",\n    \"api_version\": \"0.90\",\n    \"rotationsetID\": 19,\n    \"school_name\": \"Sandbox School of Medicine\"\n}"}],"_postman_id":"5ba50b26-2d9c-4be0-9c65-973a799f1162"},{"name":"info/status","id":"a84e7bb8-ab7f-4a91-9d3b-53cb0d3b2a66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"","description":"<p>no input required</p>\n","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/info/status","description":"<p>Retrieves the status of the MedHub API.</p>\n","urlObject":{"path":["info","status"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"83b74990-87a7-4392-a306-12f82cc42992","name":"info/status","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/info/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Mar 2020 18:25:19 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"active\",\n    \"time\": \"2020-03-30 02:25pm\",\n    \"timestamp\": 1585592719\n}"}],"_postman_id":"a84e7bb8-ab7f-4a91-9d3b-53cb0d3b2a66"},{"name":"info/access","id":"49e70180-b771-46eb-8e3c-aab39e0919a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"","description":"<p>no input required</p>\n","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/info/access","description":"<p>Retrieves a list of all calls granted to this API client by the institution.</p>\n","urlObject":{"path":["info","access"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"b6002f3b-d582-4efb-a0c2-3340a75e3d1b","name":"info/access","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/info/access"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Mar 2020 18:26:13 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"call\": \"Conference Attendance\",\n        \"call_path\": \"conferences/attendance\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the conferences attended by and individual user over a specified date range\"\n    },\n    {\n        \"call\": \"Conference Attendance\",\n        \"call_path\": \"conferences/attendance\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the conferences attended by and individual user over a specified date range\"\n    },\n    {\n        \"call\": \"Conference Groups\",\n        \"call_path\": \"conferences/groups\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the conference groups for a program\"\n    },\n    {\n        \"call\": \"Conference Groups\",\n        \"call_path\": \"conferences/groups\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the conference groups for a program\"\n    },\n    {\n        \"call\": \"Conference Record Attendance\",\n        \"call_path\": \"conferences/record\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Records attendance for a conference\"\n    },\n    {\n        \"call\": \"Conference Record Attendance\",\n        \"call_path\": \"conferences/record\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Records attendance for a conference\"\n    },\n    {\n        \"call\": \"Conference Schedule\",\n        \"call_path\": \"conferences/schedule\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the conference schedule for a program over a specified date range\"\n    },\n    {\n        \"call\": \"Conference Schedule\",\n        \"call_path\": \"conferences/schedule\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the conference schedule for a program over a specified date range\"\n    },\n    {\n        \"call\": \"Accessible Courses\",\n        \"call_path\": \"courses/access\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"List of accessible courses\"\n    },\n    {\n        \"call\": \"All Courses\",\n        \"call_path\": \"courses/all\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"List of all courses\"\n    },\n    {\n        \"call\": \"Create New Course\",\n        \"call_path\": \"courses/courseCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Create a new course\"\n    },\n    {\n        \"call\": \"All Course Groups\",\n        \"call_path\": \"courses/groups\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"List of all course groups\"\n    },\n    {\n        \"call\": \"Course Locations\",\n        \"call_path\": \"courses/locations\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"List of all active course locations\"\n    },\n    {\n        \"call\": \"Course Parents\",\n        \"call_path\": \"courses/parents\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get course parents\"\n    },\n    {\n        \"call\": \"Delete Entry\",\n        \"call_path\": \"dutyhours/delete\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Remove a work period\"\n    },\n    {\n        \"call\": \"Delete Entry\",\n        \"call_path\": \"dutyhours/delete\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Remove a work period\"\n    },\n    {\n        \"call\": \"Post Work Period\",\n        \"call_path\": \"dutyhours/post\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"This call is used to post a work period for resident duty hours\"\n    },\n    {\n        \"call\": \"Post Work Period\",\n        \"call_path\": \"dutyhours/post\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"This call is used to post a work period for resident duty hours\"\n    },\n    {\n        \"call\": \"Violation Reasons\",\n        \"call_path\": \"dutyhours/reasons\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the potential violation reasons\"\n    },\n    {\n        \"call\": \"Violation Reasons\",\n        \"call_path\": \"dutyhours/reasons\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the potential violation reasons\"\n    },\n    {\n        \"call\": \"Duty Hour Review Periods\",\n        \"call_path\": \"dutyhours/reviews\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the duty hour review periods for a specific program over a defined date range\"\n    },\n    {\n        \"call\": \"Duty Hour Review Periods\",\n        \"call_path\": \"dutyhours/reviews\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the duty hour review periods for a specific program over a defined date range\"\n    },\n    {\n        \"call\": \"Timesheet Status\",\n        \"call_path\": \"dutyhours/status\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Status of open weeks\"\n    },\n    {\n        \"call\": \"Timesheet Status\",\n        \"call_path\": \"dutyhours/status\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Status of open weeks\"\n    },\n    {\n        \"call\": \"Submit Timesheet\",\n        \"call_path\": \"dutyhours/submit\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit timesheet as complete\"\n    },\n    {\n        \"call\": \"Submit Timesheet\",\n        \"call_path\": \"dutyhours/submit\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit timesheet as complete\"\n    },\n    {\n        \"call\": \"View Timesheets\",\n        \"call_path\": \"dutyhours/timesheets\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Provides duty hour entries for a resident over a defined date range\"\n    },\n    {\n        \"call\": \"View Timesheets\",\n        \"call_path\": \"dutyhours/timesheets\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Provides duty hour entries for a resident over a defined date range\"\n    },\n    {\n        \"call\": \"Weekly Details\",\n        \"call_path\": \"dutyhours/week\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Detailed information for a calendar week\"\n    },\n    {\n        \"call\": \"Weekly Details\",\n        \"call_path\": \"dutyhours/week\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Detailed information for a calendar week\"\n    },\n    {\n        \"call\": \"Work Types\",\n        \"call_path\": \"dutyhours/workTypes\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the duty hour work types\"\n    },\n    {\n        \"call\": \"Work Types\",\n        \"call_path\": \"dutyhours/workTypes\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the duty hour work types\"\n    },\n    {\n        \"call\": \"Create Enrollment Period\",\n        \"call_path\": \"enrollmentperiods/periodCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Create a new enrollment period.\"\n    },\n    {\n        \"call\": \"Delete Enrollment Period\",\n        \"call_path\": \"enrollmentperiods/periodDelete\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Delete an enrollment period.\"\n    },\n    {\n        \"call\": \"List Enrollment Periods\",\n        \"call_path\": \"enrollmentperiods/periods\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get list of enrollment periods for a given course.\"\n    },\n    {\n        \"call\": \"Update Enrollment Period\",\n        \"call_path\": \"enrollmentperiods/periodUpdate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Update enrollment period information.\"\n    },\n    {\n        \"call\": \"Create Student Enrollment Record\",\n        \"call_path\": \"enrollments/enrollmentCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Create a new student enrollment record\"\n    },\n    {\n        \"call\": \"Create Student Enrollment Record\",\n        \"call_path\": \"enrollments/enrollmentCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Create a new student enrollment record\"\n    },\n    {\n        \"call\": \"Enrollment Drop\",\n        \"call_path\": \"enrollments/enrollmentDrop\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Drop a specified enrollment record\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Submit a new Grade Record\",\n        \"call_path\": \"enrollments/gradeCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Submit a new Grade Record for a UME enrollment\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Get Grading Options for an enrollment record\",\n        \"call_path\": \"enrollments/gradeOptions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get the final and component grading options for an enrollment record\"\n    },\n    {\n        \"call\": \"Evaluation Forms\",\n        \"call_path\": \"evals/forms\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the active evaluation forms in a program\"\n    },\n    {\n        \"call\": \"Evaluation Forms\",\n        \"call_path\": \"evals/forms\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the active evaluation forms in a program\"\n    },\n    {\n        \"call\": \"Incomplete Evaluations\",\n        \"call_path\": \"evals/incomplete\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the incomplete evaluations for a specific user\"\n    },\n    {\n        \"call\": \"Incomplete Evaluations\",\n        \"call_path\": \"evals/incomplete\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the incomplete evaluations for a specific user\"\n    },\n    {\n        \"call\": \"Initiate Evaluation\",\n        \"call_path\": \"evals/initiate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Deliver a new evaluation\"\n    },\n    {\n        \"call\": \"Initiate Evaluation\",\n        \"call_path\": \"evals/initiate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Deliver a new evaluation\"\n    },\n    {\n        \"call\": \"Evaluation Leaderboard\",\n        \"call_path\": \"evals/leaderboard\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieve the leaderboard for a specific user\"\n    },\n    {\n        \"call\": \"Evaluation Leaderboard\",\n        \"call_path\": \"evals/leaderboard\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieve the leaderboard for a specific user\"\n    },\n    {\n        \"call\": \"Milestones List\",\n        \"call_path\": \"evals/milestones\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the milestones, EPAS, or rotation objectives for a program\"\n    },\n    {\n        \"call\": \"Milestones List\",\n        \"call_path\": \"evals/milestones\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the milestones, EPAS, or rotation objectives for a program\"\n    },\n    {\n        \"call\": \"Milestone Summary\",\n        \"call_path\": \"evals/milestoneSummary\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieve the Milestone Summary for a specific user\"\n    },\n    {\n        \"call\": \"Milestone Summary\",\n        \"call_path\": \"evals/milestoneSummary\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieve the Milestone Summary for a specific user\"\n    },\n    {\n        \"call\": \"Evaluation Post\",\n        \"call_path\": \"evals/post\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Posts a new evaluation response\"\n    },\n    {\n        \"call\": \"Evaluation Post\",\n        \"call_path\": \"evals/post\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Posts a new evaluation response\"\n    },\n    {\n        \"call\": \"Progress Reports\",\n        \"call_path\": \"evals/progress\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Displays the progress report scores for a specified resident and review period\"\n    },\n    {\n        \"call\": \"Progress Reports\",\n        \"call_path\": \"evals/progress\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Displays the progress report scores for a specified resident and review period\"\n    },\n    {\n        \"call\": \"Evaluation Questions\",\n        \"call_path\": \"evals/questions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the questions for an evaluation form\"\n    },\n    {\n        \"call\": \"Evaluation Questions\",\n        \"call_path\": \"evals/questions\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the questions for an evaluation form\"\n    },\n    {\n        \"call\": \"Remove Incomplete Evaluation\",\n        \"call_path\": \"evals/remove\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Remove an evaluation for insifficuent contact\"\n    },\n    {\n        \"call\": \"Remove Incomplete Evaluation\",\n        \"call_path\": \"evals/remove\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Remove an evaluation for insifficuent contact\"\n    },\n    {\n        \"call\": \"Evaluation Responses\",\n        \"call_path\": \"evals/responses\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves completed evaluation data\"\n    },\n    {\n        \"call\": \"Evaluation Responses\",\n        \"call_path\": \"evals/responses\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves completed evaluation data\"\n    },\n    {\n        \"call\": \"Self-Serve Evaluation Forms\",\n        \"call_path\": \"evals/selfserveForms\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves a list of evaluation forms that may be initiated directly by users.\"\n    },\n    {\n        \"call\": \"Self-Serve Evaluation Forms\",\n        \"call_path\": \"evals/selfserveForms\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves a list of evaluation forms that may be initiated directly by users.\"\n    },\n    {\n        \"call\": \"Evaluation Status\",\n        \"call_path\": \"evals/status\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves the status of an evaluation response\"\n    },\n    {\n        \"call\": \"Evaluation Status\",\n        \"call_path\": \"evals/status\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves the status of an evaluation response\"\n    },\n    {\n        \"call\": \"Evaluation Types\",\n        \"call_path\": \"evals/types\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the standard evaluation types\"\n    },\n    {\n        \"call\": \"Evaluation Types\",\n        \"call_path\": \"evals/types\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the standard evaluation types\"\n    },\n    {\n        \"call\": \"Call Access\",\n        \"call_path\": \"info/access\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"This identifies all of the calls that the current client can access\"\n    },\n    {\n        \"call\": \"Call Access\",\n        \"call_path\": \"info/access\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"This identifies all of the calls that the current client can access\"\n    },\n    {\n        \"call\": \"Information\",\n        \"call_path\": \"info/institution\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Basic institution information is provided\"\n    },\n    {\n        \"call\": \"Information\",\n        \"call_path\": \"info/institution\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Basic institution information is provided\"\n    },\n    {\n        \"call\": \"API Status\",\n        \"call_path\": \"info/status\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"This call provides the status of the MedHub API\"\n    },\n    {\n        \"call\": \"API Status\",\n        \"call_path\": \"info/status\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"This call provides the status of the MedHub API\"\n    },\n    {\n        \"call\": \"Terminology\",\n        \"call_path\": \"info/terms\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Institution-specific terminology is provided\"\n    },\n    {\n        \"call\": \"Terminology\",\n        \"call_path\": \"info/terms\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Institution-specific terminology is provided\"\n    },\n    {\n        \"call\": \"API Test\",\n        \"call_path\": \"info/test\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Clients can use this simple call to test their connection to the API\"\n    },\n    {\n        \"call\": \"API Test\",\n        \"call_path\": \"info/test\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Clients can use this simple call to test their connection to the API\"\n    },\n    {\n        \"call\": \"CME Credit Types\",\n        \"call_path\": \"portfolios/cmeTypes\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the standard Faculty CME credit types\"\n    },\n    {\n        \"call\": \"CME Credit Types\",\n        \"call_path\": \"portfolios/cmeTypes\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the standard Faculty CME credit types\"\n    },\n    {\n        \"call\": \"Portfolio Entry Types\",\n        \"call_path\": \"portfolios/types\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the standard portfolio entry types\"\n    },\n    {\n        \"call\": \"Portfolio Entry Types\",\n        \"call_path\": \"portfolios/types\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the standard portfolio entry types\"\n    },\n    {\n        \"call\": \"Append Diagnosis\",\n        \"call_path\": \"procedures/appendDiagnosis\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Appends a diagnosis to a given procedure log.\"\n    },\n    {\n        \"call\": \"Append Diagnosis\",\n        \"call_path\": \"procedures/appendDiagnosis\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Appends a diagnosis to a given procedure log.\"\n    },\n    {\n        \"call\": \"Append Procedure\",\n        \"call_path\": \"procedures/appendProcedure\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Appends a procedure to a given procedure log.\"\n    },\n    {\n        \"call\": \"Append Procedure\",\n        \"call_path\": \"procedures/appendProcedure\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Appends a procedure to a given procedure log.\"\n    },\n    {\n        \"call\": \"Procedure Certifications\",\n        \"call_path\": \"procedures/certifications\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the procedure certifications attained by a specified resident\"\n    },\n    {\n        \"call\": \"Procedure Certifications\",\n        \"call_path\": \"procedures/certifications\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the procedure certifications attained by a specified resident\"\n    },\n    {\n        \"call\": \"Delete Diagnosis\",\n        \"call_path\": \"procedures/deleteDiagnosis\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Deletes a diagnosis from a given procedure log.\"\n    },\n    {\n        \"call\": \"Delete Diagnosis\",\n        \"call_path\": \"procedures/deleteDiagnosis\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Deletes a diagnosis from a given procedure log.\"\n    },\n    {\n        \"call\": \"Delete Procedure\",\n        \"call_path\": \"procedures/deleteProcedure\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Deletes a procedure from a given procedure log.\"\n    },\n    {\n        \"call\": \"Delete Procedure\",\n        \"call_path\": \"procedures/deleteProcedure\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Deletes a procedure from a given procedure log.\"\n    },\n    {\n        \"call\": \"Diagnosis Counts\",\n        \"call_path\": \"procedures/diagnosisCounts\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Counts the diagnoses logged by a specific resident\"\n    },\n    {\n        \"call\": \"Diagnosis Counts\",\n        \"call_path\": \"procedures/diagnosisCounts\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Counts the diagnoses logged by a specific resident\"\n    },\n    {\n        \"call\": \"Diagnosis Requirements\",\n        \"call_path\": \"procedures/diagnosisRequirements\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves diagnosis requirements for a given user in a given program or clerkship\"\n    },\n    {\n        \"call\": \"Diagnosis Requirements\",\n        \"call_path\": \"procedures/diagnosisRequirements\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves diagnosis requirements for a given user in a given program or clerkship\"\n    },\n    {\n        \"call\": \"Diagnosis Requirements Progress\",\n        \"call_path\": \"procedures/diagnosisRequirementsProgress\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves diagnosis requirement progress for a given user in a given program or clerkship\"\n    },\n    {\n        \"call\": \"Diagnosis Requirements Progress\",\n        \"call_path\": \"procedures/diagnosisRequirementsProgress\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves diagnosis requirement progress for a given user in a given program or clerkship\"\n    },\n    {\n        \"call\": \"Diagnosis Types\",\n        \"call_path\": \"procedures/diagnosisTypes\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the diagnosis types defined by a program\"\n    },\n    {\n        \"call\": \"Diagnosis Types\",\n        \"call_path\": \"procedures/diagnosisTypes\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the diagnosis types defined by a program\"\n    },\n    {\n        \"call\": \"Procedure Locations\",\n        \"call_path\": \"procedures/locations\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves procedure locations for a given program or course.\"\n    },\n    {\n        \"call\": \"Procedure Locations\",\n        \"call_path\": \"procedures/locations\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves procedure locations for a given program or course.\"\n    },\n    {\n        \"call\": \"Procedure Logs\",\n        \"call_path\": \"procedures/logs\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves list of logged procedures.\"\n    },\n    {\n        \"call\": \"Procedure Logs\",\n        \"call_path\": \"procedures/logs\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves list of logged procedures.\"\n    },\n    {\n        \"call\": \"Procedure Counts\",\n        \"call_path\": \"procedures/procedureCounts\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Counts the procedures logged by a specific resident\"\n    },\n    {\n        \"call\": \"Procedure Counts\",\n        \"call_path\": \"procedures/procedureCounts\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Counts the procedures logged by a specific resident\"\n    },\n    {\n        \"call\": \"Procedure Requirements\",\n        \"call_path\": \"procedures/procedureRequirements\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves procedure requirements for a given user in a given program or clerkship\"\n    },\n    {\n        \"call\": \"Procedure Requirements\",\n        \"call_path\": \"procedures/procedureRequirements\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves procedure requirements for a given user in a given program or clerkship\"\n    },\n    {\n        \"call\": \"Procedure Requirements Progress\",\n        \"call_path\": \"procedures/procedureRequirementsProgress\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves procedure requirement progress for a given user in a given program or clerkship\"\n    },\n    {\n        \"call\": \"Procedure Requirements Progress\",\n        \"call_path\": \"procedures/procedureRequirementsProgress\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves procedure requirement progress for a given user in a given program or clerkship\"\n    },\n    {\n        \"call\": \"Procedure Types\",\n        \"call_path\": \"procedures/procedureTypes\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the procedure types defined by a program\"\n    },\n    {\n        \"call\": \"Procedure Types\",\n        \"call_path\": \"procedures/procedureTypes\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the procedure types defined by a program\"\n    },\n    {\n        \"call\": \"Record Log\",\n        \"call_path\": \"procedures/record\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Initiate or save a procedure log.\"\n    },\n    {\n        \"call\": \"Record Log\",\n        \"call_path\": \"procedures/record\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Initiate or save a procedure log.\"\n    },\n    {\n        \"call\": \"Procedure Roles\",\n        \"call_path\": \"procedures/roles\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the standard procedure roles\"\n    },\n    {\n        \"call\": \"Procedure Roles\",\n        \"call_path\": \"procedures/roles\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the standard procedure roles\"\n    },\n    {\n        \"call\": \"Procedure Settings\",\n        \"call_path\": \"procedures/settings\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves a procedure settings for a given program or course.\"\n    },\n    {\n        \"call\": \"Procedure Settings\",\n        \"call_path\": \"procedures/settings\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves a procedure settings for a given program or course.\"\n    },\n    {\n        \"call\": \"Supervision Levels\",\n        \"call_path\": \"procedures/supervisionLevels\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the supervision levels defined by a program\"\n    },\n    {\n        \"call\": \"Supervision Levels\",\n        \"call_path\": \"procedures/supervisionLevels\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the supervision levels defined by a program\"\n    },\n    {\n        \"call\": \"Procedure Supervisors\",\n        \"call_path\": \"procedures/supervisors\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves a list of supervisors for a program or course.\"\n    },\n    {\n        \"call\": \"Procedure Supervisors\",\n        \"call_path\": \"procedures/supervisors\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves a list of supervisors for a program or course.\"\n    },\n    {\n        \"call\": \"Procedure Supervisors Count\",\n        \"call_path\": \"procedures/supervisorsCount\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves a count of supervisors for a program or course.\"\n    },\n    {\n        \"call\": \"Procedure Supervisors Count\",\n        \"call_path\": \"procedures/supervisorsCount\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves a count of supervisors for a program or course.\"\n    },\n    {\n        \"call\": \"Procedure Verification History\",\n        \"call_path\": \"procedures/verificationsHistory\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get procedureIDs of procedures I have verified over a given date range.\"\n    },\n    {\n        \"call\": \"Procedure Verification History\",\n        \"call_path\": \"procedures/verificationsHistory\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get procedureIDs of procedures I have verified over a given date range.\"\n    },\n    {\n        \"call\": \"Procedure Verification History\",\n        \"call_path\": \"procedures/verificationsHistory\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get procedureIDs of procedures I have verified over a given date range.\"\n    },\n    {\n        \"call\": \"Procedure Verification History\",\n        \"call_path\": \"procedures/verificationsHistory\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get procedureIDs of procedures I have verified over a given date range.\"\n    },\n    {\n        \"call\": \"Procedure Verifications Pending\",\n        \"call_path\": \"procedures/verificationsPending\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get procedureIDs of procedures waiting for my verification\"\n    },\n    {\n        \"call\": \"Procedure Verifications Pending\",\n        \"call_path\": \"procedures/verificationsPending\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Get procedureIDs of procedures waiting for my verification\"\n    },\n    {\n        \"call\": \"Verify\",\n        \"call_path\": \"procedures/verify\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Verify a Procedure\"\n    },\n    {\n        \"call\": \"Verify\",\n        \"call_path\": \"procedures/verify\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Verify a Procedure\"\n    },\n    {\n        \"call\": \"Accessible Programs\",\n        \"call_path\": \"programs/access\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"This call provides a list of programs that the current client can access\"\n    },\n    {\n        \"call\": \"Accessible Programs\",\n        \"call_path\": \"programs/access\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"This call provides a list of programs that the current client can access\"\n    },\n    {\n        \"call\": \"All Programs\",\n        \"call_path\": \"programs/all\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"All active programs in the institution are listed\"\n    },\n    {\n        \"call\": \"All Programs\",\n        \"call_path\": \"programs/all\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"All active programs in the institution are listed\"\n    },\n    {\n        \"call\": \"Clinics\",\n        \"call_path\": \"schedules/clinics\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the clinics for a program\"\n    },\n    {\n        \"call\": \"Clinics\",\n        \"call_path\": \"schedules/clinics\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the clinics for a program\"\n    },\n    {\n        \"call\": \"Course Roster\",\n        \"call_path\": \"schedules/enrollment\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"List all students enrolled to a course period\"\n    },\n    {\n        \"call\": \"Course Periods\",\n        \"call_path\": \"schedules/periods\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"List all enrollment periods for a course\"\n    },\n    {\n        \"call\": \"Rotations\",\n        \"call_path\": \"schedules/rotations\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the rotation periods for a schedule and year\"\n    },\n    {\n        \"call\": \"Rotations\",\n        \"call_path\": \"schedules/rotations\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the rotation periods for a schedule and year\"\n    },\n    {\n        \"call\": \"Services\",\n        \"call_path\": \"schedules/services\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the services for a program\"\n    },\n    {\n        \"call\": \"Services\",\n        \"call_path\": \"schedules/services\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the services for a program\"\n    },\n    {\n        \"call\": \"Shift/Call Definitions\",\n        \"call_path\": \"schedules/shifts\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Shift/Call definitions for a given program and year\"\n    },\n    {\n        \"call\": \"Shift/Call Schedule\",\n        \"call_path\": \"schedules/shiftsSchedule\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Shift/Call schedule data for a give date range\"\n    },\n    {\n        \"call\": \"Schedules\",\n        \"call_path\": \"schedules/view\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the schedules defined for a program and year\"\n    },\n    {\n        \"call\": \"Schedules\",\n        \"call_path\": \"schedules/view\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the schedules defined for a program and year\"\n    },\n    {\n        \"call\": \"Academic Years\",\n        \"call_path\": \"schedules/years\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the academic years\"\n    },\n    {\n        \"call\": \"Academic Years\",\n        \"call_path\": \"schedules/years\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the academic years\"\n    },\n    {\n        \"call\": \"Accessible Schools\",\n        \"call_path\": \"schools/access\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists all accessible schools.\"\n    },\n    {\n        \"call\": \"User Statistics\",\n        \"call_path\": \"stats/users\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"This call provides basic user counts\"\n    },\n    {\n        \"call\": \"User Statistics\",\n        \"call_path\": \"stats/users\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"This call provides basic user counts\"\n    },\n    {\n        \"call\": \"User Type Statistics\",\n        \"call_path\": \"stats/userTypes\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"This call provides basic user counts by user type\"\n    },\n    {\n        \"call\": \"User Type Statistics\",\n        \"call_path\": \"stats/userTypes\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"This call provides basic user counts by user type\"\n    },\n    {\n        \"call\": \"User Authentication\",\n        \"call_path\": \"users/authenticate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"This call can be used to authenticate users\"\n    },\n    {\n        \"call\": \"User Authentication\",\n        \"call_path\": \"users/authenticate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"This call can be used to authenticate users\"\n    },\n    {\n        \"call\": \"Calendar Sync\",\n        \"call_path\": \"users/calendarSync\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Toggle ics calender export on.\"\n    },\n    {\n        \"call\": \"Calendar Sync\",\n        \"call_path\": \"users/calendarSync\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Toggle ics calender export on.\"\n    },\n    {\n        \"call\": \"Search Course Coordinators\",\n        \"call_path\": \"users/courseCoordinatorSearch\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Allows the client to search for course coordinators by name, employee ID, or username\"\n    },\n    {\n        \"call\": \"Search Course Coordinators\",\n        \"call_path\": \"users/courseCoordinatorSearch\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Allows the client to search for course coordinators by name, employee ID, or username\"\n    },\n    {\n        \"call\": \"View Device Token\",\n        \"call_path\": \"users/deviceToken\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Displays a users device UDID and token for a specified application\"\n    },\n    {\n        \"call\": \"View Device Token\",\n        \"call_path\": \"users/deviceToken\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Displays a users device UDID and token for a specified application\"\n    },\n    {\n        \"call\": \"Active Faculty\",\n        \"call_path\": \"users/faculty\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the active faculty in a specified program\"\n    },\n    {\n        \"call\": \"Active Faculty\",\n        \"call_path\": \"users/faculty\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the active faculty in a specified program\"\n    },\n    {\n        \"call\": \"Add Faculty to Programs/Clerkships\",\n        \"call_path\": \"users/facultyAccess\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Modifies the program/clerkship access of a faculty member.\"\n    },\n    {\n        \"call\": \"Add Faculty to Programs/Clerkships\",\n        \"call_path\": \"users/facultyAccess\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Modifies the program/clerkship access of a faculty member.\"\n    },\n    {\n        \"call\": \"Create Faculty Member\",\n        \"call_path\": \"users/facultyCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Creates a new faculty member.\"\n    },\n    {\n        \"call\": \"Create Faculty Member\",\n        \"call_path\": \"users/facultyCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Creates a new faculty member.\"\n    },\n    {\n        \"call\": \"Faculty Demographic Fields List\",\n        \"call_path\": \"users/facultyFields\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists faculty demographic fields.\"\n    },\n    {\n        \"call\": \"Faculty Demographic Fields List\",\n        \"call_path\": \"users/facultyFields\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists faculty demographic fields.\"\n    },\n    {\n        \"call\": \"Faculty Demographics\",\n        \"call_path\": \"users/facultyInfo\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Detailed demographic information for a faculty member\"\n    },\n    {\n        \"call\": \"Faculty Demographics\",\n        \"call_path\": \"users/facultyInfo\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Detailed demographic information for a faculty member\"\n    },\n    {\n        \"call\": \"Search Faculty\",\n        \"call_path\": \"users/facultySearch\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Allows the client to search for faculty by name, employee ID, or username\"\n    },\n    {\n        \"call\": \"Search Faculty\",\n        \"call_path\": \"users/facultySearch\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Allows the client to search for faculty by name, employee ID, or username\"\n    },\n    {\n        \"call\": \"Update Faculty Demographics\",\n        \"call_path\": \"users/facultyUpdate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Updates faculty demographic information.\"\n    },\n    {\n        \"call\": \"Update Faculty Demographics\",\n        \"call_path\": \"users/facultyUpdate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Updates faculty demographic information.\"\n    },\n    {\n        \"call\": \"Off-Program Evaluators\",\n        \"call_path\": \"users/off_program_evaluators\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists active off-program evaluators in a specified program\"\n    },\n    {\n        \"call\": \"Off-Program Evaluators\",\n        \"call_path\": \"users/off_program_evaluators\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists active off-program evaluators in a specified program\"\n    },\n    {\n        \"call\": \"Off-Program Evaluators\",\n        \"call_path\": \"users/off_program_evaluators\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists active off-program evaluators in a specified program\"\n    },\n    {\n        \"call\": \"Off-Program Evaluators\",\n        \"call_path\": \"users/off_program_evaluators\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists active off-program evaluators in a specified program\"\n    },\n    {\n        \"call\": \"Outside Evaluators\",\n        \"call_path\": \"users/outside\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists active outside evaluators in a specified program\"\n    },\n    {\n        \"call\": \"Outside Evaluators\",\n        \"call_path\": \"users/outside\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists active outside evaluators in a specified program\"\n    },\n    {\n        \"call\": \"Outside Evaluator Lookup\",\n        \"call_path\": \"users/outsideLookup\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Provides outside evaluator information given the unique identifier\"\n    },\n    {\n        \"call\": \"Outside Evaluator Lookup\",\n        \"call_path\": \"users/outsideLookup\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Provides outside evaluator information given the unique identifier\"\n    },\n    {\n        \"call\": \"Missing Photos\",\n        \"call_path\": \"users/photosMissing\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies active residents and faculty with missing photos\"\n    },\n    {\n        \"call\": \"Missing Photos\",\n        \"call_path\": \"users/photosMissing\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies active residents and faculty with missing photos\"\n    },\n    {\n        \"call\": \"Create Resident\",\n        \"call_path\": \"users/residentCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Creates a new resident.\"\n    },\n    {\n        \"call\": \"Resident Demographic Fields List\",\n        \"call_path\": \"users/residentFields\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists resident demographic fields.\"\n    },\n    {\n        \"call\": \"Resident Demographics\",\n        \"call_path\": \"users/residentInfo\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Detailed demographic information for a resident\"\n    },\n    {\n        \"call\": \"Resident Demographics\",\n        \"call_path\": \"users/residentInfo\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Detailed demographic information for a resident\"\n    },\n    {\n        \"call\": \"Active Residents\",\n        \"call_path\": \"users/residents\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the active residents in a specified program\"\n    },\n    {\n        \"call\": \"Active Residents\",\n        \"call_path\": \"users/residents\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists the active residents in a specified program\"\n    },\n    {\n        \"call\": \"Active Residents Count\",\n        \"call_path\": \"users/residentsCount\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves a count of the active residents in a specified program\"\n    },\n    {\n        \"call\": \"Active Residents Count\",\n        \"call_path\": \"users/residentsCount\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves a count of the active residents in a specified program\"\n    },\n    {\n        \"call\": \"Active Residents Count\",\n        \"call_path\": \"users/residentsCount\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves a count of the active residents in a specified program\"\n    },\n    {\n        \"call\": \"Active Residents Count\",\n        \"call_path\": \"users/residentsCount\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves a count of the active residents in a specified program\"\n    },\n    {\n        \"call\": \"Active Residents Count\",\n        \"call_path\": \"users/residentsCount\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Retrieves a count of the active residents in a specified program\"\n    },\n    {\n        \"call\": \"Search Residents\",\n        \"call_path\": \"users/residentSearch\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Allows the client to search for residents by name, employee ID, or username\"\n    },\n    {\n        \"call\": \"Search Residents\",\n        \"call_path\": \"users/residentSearch\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Allows the client to search for residents by name, employee ID, or username\"\n    },\n    {\n        \"call\": \"Resident Training\",\n        \"call_path\": \"users/residentTraining\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists full training history for a resident\"\n    },\n    {\n        \"call\": \"Resident Training\",\n        \"call_path\": \"users/residentTraining\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists full training history for a resident\"\n    },\n    {\n        \"call\": \"Resident Types\",\n        \"call_path\": \"users/residentTypes\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the standard resident types\"\n    },\n    {\n        \"call\": \"Resident Types\",\n        \"call_path\": \"users/residentTypes\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the standard resident types\"\n    },\n    {\n        \"call\": \"Update Resident Demographics\",\n        \"call_path\": \"users/residentUpdate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Updates resident demographic information.\"\n    },\n    {\n        \"call\": \"Set Device Token\",\n        \"call_path\": \"users/setDeviceToken\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Sets the users device UDID and token for an application\"\n    },\n    {\n        \"call\": \"Set Device Token\",\n        \"call_path\": \"users/setDeviceToken\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Sets the users device UDID and token for an application\"\n    },\n    {\n        \"call\": \"Create Student\",\n        \"call_path\": \"users/studentCreate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Creates a new student.\"\n    },\n    {\n        \"call\": \"Student Demographic Fields List\",\n        \"call_path\": \"users/studentFields\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists student demographic fields.\"\n    },\n    {\n        \"call\": \"Student Demographics\",\n        \"call_path\": \"users/studentInfo\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Detailed demographic information for a student\"\n    },\n    {\n        \"call\": \"Active Students\",\n        \"call_path\": \"users/students\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"List of all courses\"\n    },\n    {\n        \"call\": \"Search Students\",\n        \"call_path\": \"users/studentSearch\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Allows search for students by name, employee ID, or username\"\n    },\n    {\n        \"call\": \"Student Training\",\n        \"call_path\": \"users/studentTraining\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Lists full training history for a student\"\n    },\n    {\n        \"call\": \"Student Types\",\n        \"call_path\": \"users/studentTypes\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"List of Student Types\"\n    },\n    {\n        \"call\": \"Update Student Demographics\",\n        \"call_path\": \"users/studentUpdate\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Updates student demographic information.\"\n    },\n    {\n        \"call\": \"User Types\",\n        \"call_path\": \"users/types\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the standard user types that can login to MedHub\"\n    },\n    {\n        \"call\": \"User Types\",\n        \"call_path\": \"users/types\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Identifies the standard user types that can login to MedHub\"\n    },\n    {\n        \"call\": \"User Lookup\",\n        \"call_path\": \"users/userLookup\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Provides user information given the unique identifier\"\n    },\n    {\n        \"call\": \"User Lookup\",\n        \"call_path\": \"users/userLookup\",\n        \"status\": \"Active\",\n        \"request_type\": \"POST\",\n        \"call_description\": \"Provides user information given the unique identifier\"\n    }\n]"}],"_postman_id":"49e70180-b771-46eb-8e3c-aab39e0919a9"}],"id":"443a81a1-70a9-44bf-848f-e3af0234bbf5","_postman_id":"443a81a1-70a9-44bf-848f-e3af0234bbf5","description":""},{"name":"Conferences","item":[{"name":"conferences/attendance","id":"8a12a14d-90e8-4c05-ac4e-2745e6584a8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"userID\":97927, \"programID\":481, \"startDate\":\"2018-07-01\",\"endDate\":\"2019-06-30\"}","description":"<p>example only</p>\n","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/conferences/attendance","description":"<p>Lists the conferences attended by an individual user over a specified date range.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.01</td>\n        <td>n/a</td>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>integer</td>\n        <td>Yes*</td>\n        <td>v0.90</td>\n        <td>Required if courseID not specified</td>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>integer</td>\n        <td>Yes*</td>\n        <td>v1.06</td>\n        <td>Required if programID not specified</td>\n    </tr>\n    <tr>\n        <td>startDate</td>\n        <td>date</td>\n        <td>No</td>\n        <td>v1.01</td>\n        <td>format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>endDate</td>\n        <td>date</td>\n        <td>No</td>\n        <td>v1.01</td>\n        <td>format YYYY-MM-DD</td>\n    </tr>\n</table>","urlObject":{"path":["conferences","attendance"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"603b2dbb-b326-406e-b751-a37704463917","name":"conferences/attendance","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"userID\":97927, \"programID\":481, \"startDate\":\"2018-07-01\",\"endDate\":\"2019-06-30\"}","description":"this is just an example","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/conferences/attendance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Mar 2020 18:27:35 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"conferenceID\": \"47384\",\n        \"date\": \"2018-07-04\",\n        \"start_time\": \"11:50:00\",\n        \"end_time\": \"12:50:00\",\n        \"title\": \"Noon Conference\",\n        \"location\": \"Conference Hall A\",\n        \"groupID\": \"94\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"0\",\n        \"self_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"47532\",\n        \"date\": \"2018-07-17\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"PGY2 Conference\",\n        \"location\": \"Blue Room\",\n        \"groupID\": \"149\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"0\",\n        \"self_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"47385\",\n        \"date\": \"2018-07-18\",\n        \"start_time\": \"11:50:00\",\n        \"end_time\": \"12:50:00\",\n        \"title\": \"Noon Conference\",\n        \"location\": \"Conference Hall A\",\n        \"groupID\": \"94\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"0\",\n        \"self_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"48048\",\n        \"date\": \"2018-11-06\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"12:00:00\",\n        \"title\": \"Super Magic Didactics\",\n        \"location\": \"Deck\",\n        \"groupID\": \"935\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"1\",\n        \"self_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"47602\",\n        \"date\": \"2018-11-09\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"0\",\n        \"self_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48085\",\n        \"date\": \"2018-11-28\",\n        \"start_time\": \"01:05:00\",\n        \"end_time\": \"02:05:00\",\n        \"title\": \"Example\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"0\",\n        \"self_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"47615\",\n        \"date\": \"2018-11-28\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"0\",\n        \"self_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"47616\",\n        \"date\": \"2018-11-29\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"0\",\n        \"self_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"48056\",\n        \"date\": \"2019-01-01\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Super Magic Didactics\",\n        \"location\": \"Deck\",\n        \"groupID\": \"935\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"1\",\n        \"self_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"47640\",\n        \"date\": \"2019-01-02\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"0\",\n        \"self_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"47991\",\n        \"date\": \"2019-01-06\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"0\",\n        \"self_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"47644\",\n        \"date\": \"2019-01-08\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"0\",\n        \"self_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"47646\",\n        \"date\": \"2019-01-10\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"0\",\n        \"self_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"47660\",\n        \"date\": \"2019-01-30\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"0\",\n        \"self_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"47690\",\n        \"date\": \"2019-03-13\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"0\",\n        \"self_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48323\",\n        \"date\": \"2019-04-19\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"0\",\n        \"self_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"47735\",\n        \"date\": \"2019-05-15\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"1\",\n        \"self_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"47748\",\n        \"date\": \"2019-06-03\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"0\",\n        \"self_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48271\",\n        \"date\": \"2019-06-21\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 605\",\n        \"groupID\": \"134\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"0\",\n        \"self_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48397\",\n        \"date\": \"2019-06-28\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"late_flag\": \"0\",\n        \"async_flag\": \"0\",\n        \"self_flag\": \"0\"\n    }\n]"}],"_postman_id":"8a12a14d-90e8-4c05-ac4e-2745e6584a8d"},{"name":"conferences/groups","id":"6b8f2add-b860-4742-bfc8-a86668fd7403","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"programID\":481}","description":"<p>example only</p>\n","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/conferences/groups","description":"<p>Lists the conference groups defined for a given program or course.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>integer</td>\n        <td>Yes*</td>\n        <td>v0.90</td>\n        <td>Required if courseID not specified</td>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>integer</td>\n        <td>Yes*</td>\n        <td>v1.06</td>\n        <td>Required if programID not specified</td>\n    </tr>\n</table>","urlObject":{"path":["conferences","groups"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"17881ce2-fbd3-48a4-9df4-1bc7aad242aa","name":"conferences/groups","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"programID\":481}","description":"this is just an example","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/conferences/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Mar 2020 18:28:25 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"groupID\": \"149\",\n        \"title\": \"Attending Rounds\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"941\",\n        \"title\": \"BCM Example Group\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"949\",\n        \"title\": \"BIDMC's 1st session\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"806\",\n        \"title\": \"Case Study Test\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"915\",\n        \"title\": \"CCC\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"961\",\n        \"title\": \"Charting Group\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"142\",\n        \"title\": \"Conference\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"974\",\n        \"title\": \"Grand Rounds\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"916\",\n        \"title\": \"Grand Rounds\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"899\",\n        \"title\": \"Grand Rounds\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"972\",\n        \"title\": \"Grand Rounds\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"955\",\n        \"title\": \"Grand Rounds\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"845\",\n        \"title\": \"Grand Rounds - OSU\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"952\",\n        \"title\": \"Journal Club\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"907\",\n        \"title\": \"Journal Club\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"759\",\n        \"title\": \"Journal Club\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"918\",\n        \"title\": \"Kern Test\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"808\",\n        \"title\": \"Lecturers\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"134\",\n        \"title\": \"Morning Report\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"923\",\n        \"title\": \"Morning Reports\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"945\",\n        \"title\": \"MSU Conference Group\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"94\",\n        \"title\": \"Noon Conference\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"864\",\n        \"title\": \"Noon Conference\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"844\",\n        \"title\": \"OSU Grand Rounds\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"962\",\n        \"title\": \"Patient Care\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"752\",\n        \"title\": \"Pre-Clinic Conference\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"903\",\n        \"title\": \"Presence Example Group\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"882\",\n        \"title\": \"Sams Test Group\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"968\",\n        \"title\": \"SIDRA TEST\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"969\",\n        \"title\": \"SMH\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"935\",\n        \"title\": \"Super Magic\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"957\",\n        \"title\": \"Tamika's Grand Rounds\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"936\",\n        \"title\": \"Telepsychiatry\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"883\",\n        \"title\": \"Tidelands Example Group\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"958\",\n        \"title\": \"TTUHSC Grand Rounds\",\n        \"status\": \"Active\"\n    },\n    {\n        \"groupID\": \"143\",\n        \"title\": \"Grand Rounds\",\n        \"status\": \"Inactive\"\n    },\n    {\n        \"groupID\": \"821\",\n        \"title\": \"Nick Group\",\n        \"status\": \"Inactive\"\n    },\n    {\n        \"groupID\": \"818\",\n        \"title\": \"Sams Test Group\",\n        \"status\": \"Inactive\"\n    },\n    {\n        \"groupID\": \"157\",\n        \"title\": \"Social Event\",\n        \"status\": \"Inactive\"\n    },\n    {\n        \"groupID\": \"764\",\n        \"title\": \"Test\",\n        \"status\": \"Inactive\"\n    },\n    {\n        \"groupID\": \"793\",\n        \"title\": \"Test Conference Group \",\n        \"status\": \"Inactive\"\n    },\n    {\n        \"groupID\": \"813\",\n        \"title\": \"Test Group\",\n        \"status\": \"Inactive\"\n    },\n    {\n        \"groupID\": \"834\",\n        \"title\": \"test group\",\n        \"status\": \"Inactive\"\n    },\n    {\n        \"groupID\": \"791\",\n        \"title\": \"Test Group Sam\",\n        \"status\": \"Inactive\"\n    }\n]"}],"_postman_id":"6b8f2add-b860-4742-bfc8-a86668fd7403"},{"name":"conferences/record","event":[{"listen":"prerequest","script":{"id":"215a43db-5ddd-4e4f-8e34-15db8e30d8c0","exec":[""],"type":"text/javascript"}}],"id":"e57713e8-6f7e-4dfb-87d8-58b7bd8efdaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"attendance\":[{\"conferenceID\":49482,\"userID\":97925,\"late_flag\":0},{\"conferenceID\":49191,\"userID\":115647,\"late_flag\":1}]}","description":"<p>example only</p>\n","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/conferences/record","description":"<p>Records attendance for a specified conference. </p>\n<p><em>Note: the input variables listed below must be sent as a multi-dimensional array, with each record providing the following values and a parent index of ‘attendance’.</em></p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>attendance</td>\n        <td>array</td>\n        <td> </td>\n        <td> </td>\n        <td>Parent index that holds attendance records</td>\n    </tr>\n    <tr>\n        <td>    conferenceID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.01</td>\n        <td>Use conferences/schedule to get a list of conferenceIDs</td>\n    </tr>\n    <tr>\n        <td>    userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.01</td>\n        <td>Unique user identifier</td>\n    </tr>\n    <tr>\n        <td>    late_flag</td>\n        <td>integer</td>\n        <td>No</td>\n        <td>v1.01</td>\n        <td>If not provided (or if set to \"0\") the user was not late</td>\n    </tr>\n</table>","urlObject":{"path":["conferences","record"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"d026d5be-e3e0-461b-8bf5-8db801fe3310","name":"conferences/record","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"attendance\":[{\"conferenceID\":49482,\"userID\":97925,\"late_flag\":0},{\"conferenceID\":49191,\"userID\":115647,\"late_flag\":1}]}","description":"example only","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/conferences/record"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Mar 2020 18:38:21 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"recorded_number\": 2\n}"}],"_postman_id":"e57713e8-6f7e-4dfb-87d8-58b7bd8efdaf"},{"name":"conferences/schedule","id":"93739a25-8c4b-4ba4-8f54-3bc0b1bb0dd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"programID\":481,\"startDate\":\"2019-07-01\",\"endDate\":\"2020-06-30\"}","description":"<p>example only</p>\n","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/conferences/schedule","description":"<p>Lists the conference schedule for a program over a specified date range.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>integer</td>\n        <td>Yes*</td>\n        <td>v0.90</td>\n        <td>Required if courseID not specified</td>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>integer</td>\n        <td>Yes*</td>\n        <td>v1.06</td>\n        <td>Required if programID not specified</td>\n    </tr>\n    <tr>\n        <td>startDate</td>\n        <td>date</td>\n        <td>Yes</td>\n        <td>v1.01</td>\n        <td> </td>\n    </tr>\n    <tr>\n        <td>endDate</td>\n        <td>date</td>\n        <td>Yes</td>\n        <td>v1.01</td>\n        <td> </td>\n    </tr>\n    <tr>\n        <td>groupID</td>\n        <td>integer</td>\n        <td>No</td>\n        <td>v1.01</td>\n        <td>Use to filter schedule by conference group</td>\n</tr></table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>conferenceID</td>\n        <td>Unique conference identifier</td>\n        <td>text</td>\n        <td>v1.01</td>\n        <td> </td>\n    </tr>\n    <tr>\n        <td>date</td>\n        <td>conference date</td>\n        <td>date</td>\n        <td>v1.01</td>\n        <td>format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>start_time</td>\n        <td>conference start time</td>\n        <td>time</td>\n        <td>v1.01</td>\n        <td>format HH:MM:SS</td>\n    </tr>\n    <tr>\n        <td>end_time</td>\n        <td>conference end time</td>\n        <td>time</td>\n        <td>v1.01</td>\n        <td>format HH:MM:SS</td>\n    </tr>\n    <tr>\n        <td>title</td>\n        <td>conference title</td>\n        <td>text</td>\n        <td>v1.01</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>location</td>\n        <td>conference location</td>\n        <td>text</td>\n        <td>v1.01</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>groupID</td>\n        <td>unique conference group identifier</td>\n        <td>integer</td>\n        <td>v1.01</td>\n        <td>use conferences/groups to get groupIDs</td>\n    </tr>\n    <tr>\n        <td>attendance_flag</td>\n        <td>flag if attendance is taken</td>\n        <td>integer</td>\n        <td>v1.01</td>\n        <td>\"0\" = no attendance, \"1\" = attendance taken</td>\n    </tr>\n</table>","urlObject":{"path":["conferences","schedule"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"41d745b9-8a19-43a8-819e-d3953d307d8a","name":"conferences/schedule","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"programID\":481,\"startDate\":\"2019-07-01\",\"endDate\":\"2020-06-30\"}","description":"example only","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/conferences/schedule"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Mar 2020 18:39:37 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"conferenceID\": \"49684\",\n        \"date\": \"2019-07-01\",\n        \"start_time\": \"06:00:00\",\n        \"end_time\": \"07:00:00\",\n        \"title\": \"JJTest\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49685\",\n        \"date\": \"2019-07-08\",\n        \"start_time\": \"06:00:00\",\n        \"end_time\": \"07:00:00\",\n        \"title\": \"JJTest\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49686\",\n        \"date\": \"2019-07-15\",\n        \"start_time\": \"06:00:00\",\n        \"end_time\": \"07:00:00\",\n        \"title\": \"JJTest\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49482\",\n        \"date\": \"2019-07-17\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"12:00:00\",\n        \"title\": \"Grand Release rounds\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"49687\",\n        \"date\": \"2019-07-22\",\n        \"start_time\": \"06:00:00\",\n        \"end_time\": \"07:00:00\",\n        \"title\": \"JJTest\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49410\",\n        \"date\": \"2019-07-22\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49688\",\n        \"date\": \"2019-07-29\",\n        \"start_time\": \"06:00:00\",\n        \"end_time\": \"07:00:00\",\n        \"title\": \"JJTest\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49411\",\n        \"date\": \"2019-07-29\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49192\",\n        \"date\": \"2019-07-30\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Journal Club II\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"48564\",\n        \"date\": \"2019-07-30\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Journal Club II\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"49508\",\n        \"date\": \"2019-07-31\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"12:00:00\",\n        \"title\": \"What!\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49412\",\n        \"date\": \"2019-08-05\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48914\",\n        \"date\": \"2019-08-09\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports w/ Dr. Jackson! &quot;Thrilller&quot;\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"48915\",\n        \"date\": \"2019-08-12\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49413\",\n        \"date\": \"2019-08-12\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48916\",\n        \"date\": \"2019-08-13\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48917\",\n        \"date\": \"2019-08-14\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48918\",\n        \"date\": \"2019-08-15\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48919\",\n        \"date\": \"2019-08-16\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48920\",\n        \"date\": \"2019-08-19\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Becky's Site\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49414\",\n        \"date\": \"2019-08-19\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48921\",\n        \"date\": \"2019-08-20\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"48922\",\n        \"date\": \"2019-08-21\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48923\",\n        \"date\": \"2019-08-22\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48924\",\n        \"date\": \"2019-08-23\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48925\",\n        \"date\": \"2019-08-26\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"49415\",\n        \"date\": \"2019-08-26\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"48926\",\n        \"date\": \"2019-08-27\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"48565\",\n        \"date\": \"2019-08-28\",\n        \"start_time\": \"00:00:00\",\n        \"end_time\": \"01:35:00\",\n        \"title\": \"2019 conference\",\n        \"location\": \"Example Location\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49193\",\n        \"date\": \"2019-08-28\",\n        \"start_time\": \"00:00:00\",\n        \"end_time\": \"01:35:00\",\n        \"title\": \"2019 conference\",\n        \"location\": \"Example Location\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48927\",\n        \"date\": \"2019-08-28\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48928\",\n        \"date\": \"2019-08-29\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48929\",\n        \"date\": \"2019-08-30\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48930\",\n        \"date\": \"2019-09-02\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Blue Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49416\",\n        \"date\": \"2019-09-02\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48931\",\n        \"date\": \"2019-09-03\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48932\",\n        \"date\": \"2019-09-04\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Spine Conference\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"48933\",\n        \"date\": \"2019-09-05\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48934\",\n        \"date\": \"2019-09-06\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48935\",\n        \"date\": \"2019-09-09\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49417\",\n        \"date\": \"2019-09-09\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48936\",\n        \"date\": \"2019-09-10\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48937\",\n        \"date\": \"2019-09-11\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48938\",\n        \"date\": \"2019-09-12\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48939\",\n        \"date\": \"2019-09-13\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48566\",\n        \"date\": \"2019-09-15\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49194\",\n        \"date\": \"2019-09-15\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49558\",\n        \"date\": \"2019-09-16\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Not everything has a cure\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48940\",\n        \"date\": \"2019-09-16\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49418\",\n        \"date\": \"2019-09-16\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48941\",\n        \"date\": \"2019-09-17\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49538\",\n        \"date\": \"2019-09-17\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48942\",\n        \"date\": \"2019-09-18\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48943\",\n        \"date\": \"2019-09-19\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49539\",\n        \"date\": \"2019-09-19\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48944\",\n        \"date\": \"2019-09-20\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"49195\",\n        \"date\": \"2019-09-22\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48567\",\n        \"date\": \"2019-09-22\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48945\",\n        \"date\": \"2019-09-23\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49419\",\n        \"date\": \"2019-09-23\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48946\",\n        \"date\": \"2019-09-24\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48947\",\n        \"date\": \"2019-09-25\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48948\",\n        \"date\": \"2019-09-26\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48949\",\n        \"date\": \"2019-09-27\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48568\",\n        \"date\": \"2019-09-29\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49196\",\n        \"date\": \"2019-09-29\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48950\",\n        \"date\": \"2019-09-30\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"49420\",\n        \"date\": \"2019-09-30\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"48951\",\n        \"date\": \"2019-10-01\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48952\",\n        \"date\": \"2019-10-02\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48953\",\n        \"date\": \"2019-10-03\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48569\",\n        \"date\": \"2019-10-06\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49197\",\n        \"date\": \"2019-10-06\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48955\",\n        \"date\": \"2019-10-07\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49421\",\n        \"date\": \"2019-10-07\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48956\",\n        \"date\": \"2019-10-08\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48957\",\n        \"date\": \"2019-10-09\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48958\",\n        \"date\": \"2019-10-10\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48959\",\n        \"date\": \"2019-10-11\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48570\",\n        \"date\": \"2019-10-13\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49198\",\n        \"date\": \"2019-10-13\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48960\",\n        \"date\": \"2019-10-14\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49422\",\n        \"date\": \"2019-10-14\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48961\",\n        \"date\": \"2019-10-15\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49540\",\n        \"date\": \"2019-10-15\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48962\",\n        \"date\": \"2019-10-16\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48963\",\n        \"date\": \"2019-10-17\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49199\",\n        \"date\": \"2019-10-17\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Jen's Test Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49541\",\n        \"date\": \"2019-10-17\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48571\",\n        \"date\": \"2019-10-17\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Jen's Test Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48964\",\n        \"date\": \"2019-10-18\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48572\",\n        \"date\": \"2019-10-20\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"49200\",\n        \"date\": \"2019-10-20\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"48965\",\n        \"date\": \"2019-10-21\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49423\",\n        \"date\": \"2019-10-21\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48966\",\n        \"date\": \"2019-10-22\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49604\",\n        \"date\": \"2019-10-23\",\n        \"start_time\": \"00:15:00\",\n        \"end_time\": \"01:15:00\",\n        \"title\": \"Testing\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48967\",\n        \"date\": \"2019-10-23\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48968\",\n        \"date\": \"2019-10-24\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48969\",\n        \"date\": \"2019-10-25\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48573\",\n        \"date\": \"2019-10-27\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49201\",\n        \"date\": \"2019-10-27\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48970\",\n        \"date\": \"2019-10-28\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49424\",\n        \"date\": \"2019-10-28\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48971\",\n        \"date\": \"2019-10-29\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48972\",\n        \"date\": \"2019-10-30\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48973\",\n        \"date\": \"2019-10-31\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48974\",\n        \"date\": \"2019-11-01\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49202\",\n        \"date\": \"2019-11-03\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48574\",\n        \"date\": \"2019-11-03\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48975\",\n        \"date\": \"2019-11-04\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49425\",\n        \"date\": \"2019-11-04\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48976\",\n        \"date\": \"2019-11-05\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48575\",\n        \"date\": \"2019-11-06\",\n        \"start_time\": \"01:05:00\",\n        \"end_time\": \"02:05:00\",\n        \"title\": \"Example\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49203\",\n        \"date\": \"2019-11-06\",\n        \"start_time\": \"01:05:00\",\n        \"end_time\": \"02:05:00\",\n        \"title\": \"Example\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48977\",\n        \"date\": \"2019-11-06\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"48576\",\n        \"date\": \"2019-11-06\",\n        \"start_time\": \"15:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Sams Test Conference\",\n        \"location\": \"Deck\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49204\",\n        \"date\": \"2019-11-06\",\n        \"start_time\": \"15:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Sams Test Conference\",\n        \"location\": \"Deck\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48978\",\n        \"date\": \"2019-11-07\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports--Dr. Abbott\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48979\",\n        \"date\": \"2019-11-08\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49205\",\n        \"date\": \"2019-11-10\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48577\",\n        \"date\": \"2019-11-10\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48980\",\n        \"date\": \"2019-11-11\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49426\",\n        \"date\": \"2019-11-11\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48981\",\n        \"date\": \"2019-11-12\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48578\",\n        \"date\": \"2019-11-13\",\n        \"start_time\": \"01:05:00\",\n        \"end_time\": \"02:05:00\",\n        \"title\": \"Example\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49206\",\n        \"date\": \"2019-11-13\",\n        \"start_time\": \"01:05:00\",\n        \"end_time\": \"02:05:00\",\n        \"title\": \"Example\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48982\",\n        \"date\": \"2019-11-13\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48579\",\n        \"date\": \"2019-11-13\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49207\",\n        \"date\": \"2019-11-13\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48983\",\n        \"date\": \"2019-11-14\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48984\",\n        \"date\": \"2019-11-15\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49208\",\n        \"date\": \"2019-11-17\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48580\",\n        \"date\": \"2019-11-17\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48985\",\n        \"date\": \"2019-11-18\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49427\",\n        \"date\": \"2019-11-18\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48986\",\n        \"date\": \"2019-11-19\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49542\",\n        \"date\": \"2019-11-19\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48581\",\n        \"date\": \"2019-11-20\",\n        \"start_time\": \"01:05:00\",\n        \"end_time\": \"02:05:00\",\n        \"title\": \"Example\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49209\",\n        \"date\": \"2019-11-20\",\n        \"start_time\": \"01:05:00\",\n        \"end_time\": \"02:05:00\",\n        \"title\": \"Example\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48987\",\n        \"date\": \"2019-11-20\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48582\",\n        \"date\": \"2019-11-20\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49210\",\n        \"date\": \"2019-11-20\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48988\",\n        \"date\": \"2019-11-21\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49543\",\n        \"date\": \"2019-11-21\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48989\",\n        \"date\": \"2019-11-22\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49211\",\n        \"date\": \"2019-11-24\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48583\",\n        \"date\": \"2019-11-24\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48990\",\n        \"date\": \"2019-11-25\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49428\",\n        \"date\": \"2019-11-25\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48991\",\n        \"date\": \"2019-11-26\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48584\",\n        \"date\": \"2019-11-27\",\n        \"start_time\": \"01:05:00\",\n        \"end_time\": \"02:05:00\",\n        \"title\": \"Example\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49212\",\n        \"date\": \"2019-11-27\",\n        \"start_time\": \"01:05:00\",\n        \"end_time\": \"02:05:00\",\n        \"title\": \"Example\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48992\",\n        \"date\": \"2019-11-27\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48585\",\n        \"date\": \"2019-11-27\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49213\",\n        \"date\": \"2019-11-27\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48993\",\n        \"date\": \"2019-11-28\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48994\",\n        \"date\": \"2019-11-29\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48586\",\n        \"date\": \"2019-12-01\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49214\",\n        \"date\": \"2019-12-01\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48995\",\n        \"date\": \"2019-12-02\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49429\",\n        \"date\": \"2019-12-02\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48996\",\n        \"date\": \"2019-12-03\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48997\",\n        \"date\": \"2019-12-04\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49215\",\n        \"date\": \"2019-12-04\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48587\",\n        \"date\": \"2019-12-04\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48998\",\n        \"date\": \"2019-12-05\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48999\",\n        \"date\": \"2019-12-06\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48588\",\n        \"date\": \"2019-12-08\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49216\",\n        \"date\": \"2019-12-08\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49000\",\n        \"date\": \"2019-12-09\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49430\",\n        \"date\": \"2019-12-09\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49001\",\n        \"date\": \"2019-12-10\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49002\",\n        \"date\": \"2019-12-11\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48589\",\n        \"date\": \"2019-12-11\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49217\",\n        \"date\": \"2019-12-11\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49003\",\n        \"date\": \"2019-12-12\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49004\",\n        \"date\": \"2019-12-13\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49218\",\n        \"date\": \"2019-12-15\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48590\",\n        \"date\": \"2019-12-15\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49431\",\n        \"date\": \"2019-12-16\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49544\",\n        \"date\": \"2019-12-17\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49005\",\n        \"date\": \"2019-12-18\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48591\",\n        \"date\": \"2019-12-18\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49219\",\n        \"date\": \"2019-12-18\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49006\",\n        \"date\": \"2019-12-19\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49545\",\n        \"date\": \"2019-12-19\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49007\",\n        \"date\": \"2019-12-20\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48592\",\n        \"date\": \"2019-12-22\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"49220\",\n        \"date\": \"2019-12-22\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49008\",\n        \"date\": \"2019-12-23\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49432\",\n        \"date\": \"2019-12-23\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49009\",\n        \"date\": \"2019-12-24\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49010\",\n        \"date\": \"2019-12-25\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49221\",\n        \"date\": \"2019-12-25\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48593\",\n        \"date\": \"2019-12-25\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49011\",\n        \"date\": \"2019-12-26\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49012\",\n        \"date\": \"2019-12-27\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48594\",\n        \"date\": \"2019-12-29\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49222\",\n        \"date\": \"2019-12-29\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49013\",\n        \"date\": \"2019-12-30\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49433\",\n        \"date\": \"2019-12-30\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49014\",\n        \"date\": \"2019-12-31\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49015\",\n        \"date\": \"2020-01-01\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48595\",\n        \"date\": \"2020-01-01\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49223\",\n        \"date\": \"2020-01-01\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49016\",\n        \"date\": \"2020-01-02\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49017\",\n        \"date\": \"2020-01-03\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"49224\",\n        \"date\": \"2020-01-05\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48596\",\n        \"date\": \"2020-01-05\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49018\",\n        \"date\": \"2020-01-06\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49434\",\n        \"date\": \"2020-01-06\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49019\",\n        \"date\": \"2020-01-07\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49020\",\n        \"date\": \"2020-01-08\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"48597\",\n        \"date\": \"2020-01-08\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49225\",\n        \"date\": \"2020-01-08\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49672\",\n        \"date\": \"2020-01-08\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Conference for Students, Residents, Faculty, and Staff\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49021\",\n        \"date\": \"2020-01-09\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49022\",\n        \"date\": \"2020-01-10\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48598\",\n        \"date\": \"2020-01-12\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49226\",\n        \"date\": \"2020-01-12\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49023\",\n        \"date\": \"2020-01-13\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"49435\",\n        \"date\": \"2020-01-13\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49024\",\n        \"date\": \"2020-01-14\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49025\",\n        \"date\": \"2020-01-15\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49227\",\n        \"date\": \"2020-01-15\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48599\",\n        \"date\": \"2020-01-15\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49026\",\n        \"date\": \"2020-01-16\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49027\",\n        \"date\": \"2020-01-16\",\n        \"start_time\": \"08:30:00\",\n        \"end_time\": \"09:30:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"Room 105\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49546\",\n        \"date\": \"2020-01-16\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49029\",\n        \"date\": \"2020-01-17\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 605\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49028\",\n        \"date\": \"2020-01-17\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48600\",\n        \"date\": \"2020-01-19\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49228\",\n        \"date\": \"2020-01-19\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49030\",\n        \"date\": \"2020-01-20\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49436\",\n        \"date\": \"2020-01-20\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49031\",\n        \"date\": \"2020-01-21\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49547\",\n        \"date\": \"2020-01-21\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49032\",\n        \"date\": \"2020-01-22\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48601\",\n        \"date\": \"2020-01-22\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49229\",\n        \"date\": \"2020-01-22\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49033\",\n        \"date\": \"2020-01-23\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49034\",\n        \"date\": \"2020-01-24\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"48602\",\n        \"date\": \"2020-01-26\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49230\",\n        \"date\": \"2020-01-26\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49035\",\n        \"date\": \"2020-01-27\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49437\",\n        \"date\": \"2020-01-27\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49036\",\n        \"date\": \"2020-01-28\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49037\",\n        \"date\": \"2020-01-29\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49231\",\n        \"date\": \"2020-01-29\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48603\",\n        \"date\": \"2020-01-29\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49039\",\n        \"date\": \"2020-01-30\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"Room 105\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49038\",\n        \"date\": \"2020-01-30\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49041\",\n        \"date\": \"2020-01-31\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 605\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49232\",\n        \"date\": \"2020-01-31\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49040\",\n        \"date\": \"2020-01-31\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48604\",\n        \"date\": \"2020-01-31\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48605\",\n        \"date\": \"2020-02-02\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49233\",\n        \"date\": \"2020-02-02\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49234\",\n        \"date\": \"2020-02-03\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49042\",\n        \"date\": \"2020-02-03\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49438\",\n        \"date\": \"2020-02-03\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49043\",\n        \"date\": \"2020-02-04\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49236\",\n        \"date\": \"2020-02-05\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49044\",\n        \"date\": \"2020-02-05\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48606\",\n        \"date\": \"2020-02-05\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49235\",\n        \"date\": \"2020-02-05\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49045\",\n        \"date\": \"2020-02-06\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49237\",\n        \"date\": \"2020-02-06\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48607\",\n        \"date\": \"2020-02-06\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49238\",\n        \"date\": \"2020-02-07\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49046\",\n        \"date\": \"2020-02-07\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48608\",\n        \"date\": \"2020-02-07\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"49239\",\n        \"date\": \"2020-02-09\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48609\",\n        \"date\": \"2020-02-09\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49240\",\n        \"date\": \"2020-02-10\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49047\",\n        \"date\": \"2020-02-10\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49439\",\n        \"date\": \"2020-02-10\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49048\",\n        \"date\": \"2020-02-11\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48610\",\n        \"date\": \"2020-02-11\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49241\",\n        \"date\": \"2020-02-11\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49243\",\n        \"date\": \"2020-02-12\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49049\",\n        \"date\": \"2020-02-12\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48611\",\n        \"date\": \"2020-02-12\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"49242\",\n        \"date\": \"2020-02-12\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49051\",\n        \"date\": \"2020-02-13\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"Room 105\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49050\",\n        \"date\": \"2020-02-13\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48612\",\n        \"date\": \"2020-02-13\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"49244\",\n        \"date\": \"2020-02-13\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49053\",\n        \"date\": \"2020-02-14\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 605\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49052\",\n        \"date\": \"2020-02-14\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48613\",\n        \"date\": \"2020-02-14\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48614\",\n        \"date\": \"2020-02-16\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49245\",\n        \"date\": \"2020-02-16\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49246\",\n        \"date\": \"2020-02-17\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49054\",\n        \"date\": \"2020-02-17\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"49440\",\n        \"date\": \"2020-02-17\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49055\",\n        \"date\": \"2020-02-18\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49247\",\n        \"date\": \"2020-02-18\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49548\",\n        \"date\": \"2020-02-18\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48615\",\n        \"date\": \"2020-02-18\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49249\",\n        \"date\": \"2020-02-19\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49056\",\n        \"date\": \"2020-02-19\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48616\",\n        \"date\": \"2020-02-19\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49248\",\n        \"date\": \"2020-02-19\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49057\",\n        \"date\": \"2020-02-20\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49549\",\n        \"date\": \"2020-02-20\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49250\",\n        \"date\": \"2020-02-20\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48617\",\n        \"date\": \"2020-02-20\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49251\",\n        \"date\": \"2020-02-21\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49058\",\n        \"date\": \"2020-02-21\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48618\",\n        \"date\": \"2020-02-21\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49252\",\n        \"date\": \"2020-02-23\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48619\",\n        \"date\": \"2020-02-23\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49253\",\n        \"date\": \"2020-02-24\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49059\",\n        \"date\": \"2020-02-24\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"49441\",\n        \"date\": \"2020-02-24\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49060\",\n        \"date\": \"2020-02-25\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48620\",\n        \"date\": \"2020-02-25\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49254\",\n        \"date\": \"2020-02-25\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49256\",\n        \"date\": \"2020-02-26\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49061\",\n        \"date\": \"2020-02-26\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48621\",\n        \"date\": \"2020-02-26\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"49255\",\n        \"date\": \"2020-02-26\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49063\",\n        \"date\": \"2020-02-27\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"Room 105\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49062\",\n        \"date\": \"2020-02-27\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48622\",\n        \"date\": \"2020-02-27\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49257\",\n        \"date\": \"2020-02-27\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49065\",\n        \"date\": \"2020-02-28\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 605\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49258\",\n        \"date\": \"2020-02-28\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49064\",\n        \"date\": \"2020-02-28\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48623\",\n        \"date\": \"2020-02-28\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48624\",\n        \"date\": \"2020-03-01\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49259\",\n        \"date\": \"2020-03-01\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49260\",\n        \"date\": \"2020-03-02\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49066\",\n        \"date\": \"2020-03-02\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49442\",\n        \"date\": \"2020-03-02\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49067\",\n        \"date\": \"2020-03-03\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49261\",\n        \"date\": \"2020-03-03\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48625\",\n        \"date\": \"2020-03-03\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49263\",\n        \"date\": \"2020-03-04\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49068\",\n        \"date\": \"2020-03-04\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49262\",\n        \"date\": \"2020-03-04\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48626\",\n        \"date\": \"2020-03-04\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49069\",\n        \"date\": \"2020-03-05\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49689\",\n        \"date\": \"2020-03-05\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sunny\\\\\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48627\",\n        \"date\": \"2020-03-05\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49264\",\n        \"date\": \"2020-03-05\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"49265\",\n        \"date\": \"2020-03-06\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49070\",\n        \"date\": \"2020-03-06\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"1\"\n    },\n    {\n        \"conferenceID\": \"48628\",\n        \"date\": \"2020-03-06\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49266\",\n        \"date\": \"2020-03-08\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48629\",\n        \"date\": \"2020-03-08\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49267\",\n        \"date\": \"2020-03-09\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49071\",\n        \"date\": \"2020-03-09\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49443\",\n        \"date\": \"2020-03-09\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49072\",\n        \"date\": \"2020-03-10\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48630\",\n        \"date\": \"2020-03-10\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49268\",\n        \"date\": \"2020-03-10\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49270\",\n        \"date\": \"2020-03-11\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49073\",\n        \"date\": \"2020-03-11\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49269\",\n        \"date\": \"2020-03-11\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48631\",\n        \"date\": \"2020-03-11\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49074\",\n        \"date\": \"2020-03-12\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49075\",\n        \"date\": \"2020-03-12\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"Room 105\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49271\",\n        \"date\": \"2020-03-12\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48632\",\n        \"date\": \"2020-03-12\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49272\",\n        \"date\": \"2020-03-13\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49077\",\n        \"date\": \"2020-03-13\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 605\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49076\",\n        \"date\": \"2020-03-13\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48633\",\n        \"date\": \"2020-03-13\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48634\",\n        \"date\": \"2020-03-15\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49273\",\n        \"date\": \"2020-03-15\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49274\",\n        \"date\": \"2020-03-16\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49078\",\n        \"date\": \"2020-03-16\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49444\",\n        \"date\": \"2020-03-16\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49079\",\n        \"date\": \"2020-03-17\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49275\",\n        \"date\": \"2020-03-17\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49550\",\n        \"date\": \"2020-03-17\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48635\",\n        \"date\": \"2020-03-17\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49277\",\n        \"date\": \"2020-03-18\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49080\",\n        \"date\": \"2020-03-18\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48636\",\n        \"date\": \"2020-03-18\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49276\",\n        \"date\": \"2020-03-18\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49081\",\n        \"date\": \"2020-03-19\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49551\",\n        \"date\": \"2020-03-19\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48637\",\n        \"date\": \"2020-03-19\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49278\",\n        \"date\": \"2020-03-19\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49279\",\n        \"date\": \"2020-03-20\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49082\",\n        \"date\": \"2020-03-20\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48638\",\n        \"date\": \"2020-03-20\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48639\",\n        \"date\": \"2020-03-22\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49280\",\n        \"date\": \"2020-03-22\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49281\",\n        \"date\": \"2020-03-23\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49083\",\n        \"date\": \"2020-03-23\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49445\",\n        \"date\": \"2020-03-23\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49084\",\n        \"date\": \"2020-03-24\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49282\",\n        \"date\": \"2020-03-24\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48640\",\n        \"date\": \"2020-03-24\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49284\",\n        \"date\": \"2020-03-25\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49085\",\n        \"date\": \"2020-03-25\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49283\",\n        \"date\": \"2020-03-25\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48641\",\n        \"date\": \"2020-03-25\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49087\",\n        \"date\": \"2020-03-26\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"Room 105\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49086\",\n        \"date\": \"2020-03-26\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49285\",\n        \"date\": \"2020-03-26\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48642\",\n        \"date\": \"2020-03-26\",\n        \"start_time\": \"10:00:00\",\n        \"end_time\": \"11:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49089\",\n        \"date\": \"2020-03-27\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 605\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49286\",\n        \"date\": \"2020-03-27\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48643\",\n        \"date\": \"2020-03-27\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49088\",\n        \"date\": \"2020-03-27\",\n        \"start_time\": \"09:30:00\",\n        \"end_time\": \"10:30:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49287\",\n        \"date\": \"2020-03-29\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48644\",\n        \"date\": \"2020-03-29\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49288\",\n        \"date\": \"2020-03-30\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49090\",\n        \"date\": \"2020-03-30\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49446\",\n        \"date\": \"2020-03-30\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49091\",\n        \"date\": \"2020-03-31\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48645\",\n        \"date\": \"2020-03-31\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49289\",\n        \"date\": \"2020-03-31\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49291\",\n        \"date\": \"2020-04-01\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49092\",\n        \"date\": \"2020-04-01\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48646\",\n        \"date\": \"2020-04-01\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49290\",\n        \"date\": \"2020-04-01\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49093\",\n        \"date\": \"2020-04-02\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49292\",\n        \"date\": \"2020-04-02\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49293\",\n        \"date\": \"2020-04-03\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49094\",\n        \"date\": \"2020-04-03\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48647\",\n        \"date\": \"2020-04-03\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49294\",\n        \"date\": \"2020-04-05\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48648\",\n        \"date\": \"2020-04-05\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49295\",\n        \"date\": \"2020-04-06\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49095\",\n        \"date\": \"2020-04-06\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49447\",\n        \"date\": \"2020-04-06\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49096\",\n        \"date\": \"2020-04-07\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48649\",\n        \"date\": \"2020-04-07\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49296\",\n        \"date\": \"2020-04-07\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49298\",\n        \"date\": \"2020-04-08\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49097\",\n        \"date\": \"2020-04-08\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48650\",\n        \"date\": \"2020-04-08\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49297\",\n        \"date\": \"2020-04-08\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49099\",\n        \"date\": \"2020-04-09\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"Room 105\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49098\",\n        \"date\": \"2020-04-09\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49299\",\n        \"date\": \"2020-04-09\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49300\",\n        \"date\": \"2020-04-10\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49101\",\n        \"date\": \"2020-04-10\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 605\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49100\",\n        \"date\": \"2020-04-10\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48651\",\n        \"date\": \"2020-04-10\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49301\",\n        \"date\": \"2020-04-12\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48652\",\n        \"date\": \"2020-04-12\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49302\",\n        \"date\": \"2020-04-13\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49102\",\n        \"date\": \"2020-04-13\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49448\",\n        \"date\": \"2020-04-13\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49103\",\n        \"date\": \"2020-04-14\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48653\",\n        \"date\": \"2020-04-14\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49303\",\n        \"date\": \"2020-04-14\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49305\",\n        \"date\": \"2020-04-15\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49104\",\n        \"date\": \"2020-04-15\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49304\",\n        \"date\": \"2020-04-15\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48654\",\n        \"date\": \"2020-04-15\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49105\",\n        \"date\": \"2020-04-16\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49306\",\n        \"date\": \"2020-04-16\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49552\",\n        \"date\": \"2020-04-16\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49307\",\n        \"date\": \"2020-04-17\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49106\",\n        \"date\": \"2020-04-17\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48655\",\n        \"date\": \"2020-04-17\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48656\",\n        \"date\": \"2020-04-19\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49308\",\n        \"date\": \"2020-04-19\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49309\",\n        \"date\": \"2020-04-20\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49107\",\n        \"date\": \"2020-04-20\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49310\",\n        \"date\": \"2020-04-20\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Monday Morning Meeting\",\n        \"location\": \"BCC\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49449\",\n        \"date\": \"2020-04-20\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49108\",\n        \"date\": \"2020-04-21\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49311\",\n        \"date\": \"2020-04-21\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49553\",\n        \"date\": \"2020-04-21\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48657\",\n        \"date\": \"2020-04-21\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49313\",\n        \"date\": \"2020-04-22\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49109\",\n        \"date\": \"2020-04-22\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48658\",\n        \"date\": \"2020-04-22\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49312\",\n        \"date\": \"2020-04-22\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49110\",\n        \"date\": \"2020-04-23\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49314\",\n        \"date\": \"2020-04-23\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49111\",\n        \"date\": \"2020-04-23\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"Room 105\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49315\",\n        \"date\": \"2020-04-24\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49113\",\n        \"date\": \"2020-04-24\",\n        \"start_time\": \"07:30:00\",\n        \"end_time\": \"08:30:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 605\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49112\",\n        \"date\": \"2020-04-24\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48659\",\n        \"date\": \"2020-04-24\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49316\",\n        \"date\": \"2020-04-26\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48660\",\n        \"date\": \"2020-04-26\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49317\",\n        \"date\": \"2020-04-27\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49114\",\n        \"date\": \"2020-04-27\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49318\",\n        \"date\": \"2020-04-27\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Monday Morning Meeting\",\n        \"location\": \"BCC\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49450\",\n        \"date\": \"2020-04-27\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49115\",\n        \"date\": \"2020-04-28\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49319\",\n        \"date\": \"2020-04-28\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48661\",\n        \"date\": \"2020-04-28\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49321\",\n        \"date\": \"2020-04-29\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49116\",\n        \"date\": \"2020-04-29\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49320\",\n        \"date\": \"2020-04-29\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48662\",\n        \"date\": \"2020-04-29\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49322\",\n        \"date\": \"2020-04-30\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49117\",\n        \"date\": \"2020-04-30\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49324\",\n        \"date\": \"2020-05-01\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49323\",\n        \"date\": \"2020-05-01\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 900\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49118\",\n        \"date\": \"2020-05-01\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48663\",\n        \"date\": \"2020-05-01\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48664\",\n        \"date\": \"2020-05-03\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49325\",\n        \"date\": \"2020-05-03\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49326\",\n        \"date\": \"2020-05-04\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49119\",\n        \"date\": \"2020-05-04\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49327\",\n        \"date\": \"2020-05-04\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Monday Morning Meeting\",\n        \"location\": \"BCC\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49451\",\n        \"date\": \"2020-05-04\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49120\",\n        \"date\": \"2020-05-05\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48665\",\n        \"date\": \"2020-05-05\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49328\",\n        \"date\": \"2020-05-05\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49330\",\n        \"date\": \"2020-05-06\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49121\",\n        \"date\": \"2020-05-06\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48666\",\n        \"date\": \"2020-05-06\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49329\",\n        \"date\": \"2020-05-06\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49122\",\n        \"date\": \"2020-05-07\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49331\",\n        \"date\": \"2020-05-07\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49123\",\n        \"date\": \"2020-05-07\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"Room 105\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49333\",\n        \"date\": \"2020-05-08\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49125\",\n        \"date\": \"2020-05-08\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 605\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49332\",\n        \"date\": \"2020-05-08\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 900\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49124\",\n        \"date\": \"2020-05-08\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48667\",\n        \"date\": \"2020-05-08\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48668\",\n        \"date\": \"2020-05-10\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49334\",\n        \"date\": \"2020-05-10\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49335\",\n        \"date\": \"2020-05-11\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49126\",\n        \"date\": \"2020-05-11\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49336\",\n        \"date\": \"2020-05-11\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Monday Morning Meeting\",\n        \"location\": \"BCC\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49452\",\n        \"date\": \"2020-05-11\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49127\",\n        \"date\": \"2020-05-12\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48669\",\n        \"date\": \"2020-05-12\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49337\",\n        \"date\": \"2020-05-12\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49340\",\n        \"date\": \"2020-05-13\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49128\",\n        \"date\": \"2020-05-13\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49338\",\n        \"date\": \"2020-05-13\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"12:00:00\",\n        \"title\": \"TTUHSC Grand Rounds\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49339\",\n        \"date\": \"2020-05-13\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48670\",\n        \"date\": \"2020-05-13\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49129\",\n        \"date\": \"2020-05-14\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49341\",\n        \"date\": \"2020-05-14\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49343\",\n        \"date\": \"2020-05-15\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49342\",\n        \"date\": \"2020-05-15\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 900\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49130\",\n        \"date\": \"2020-05-15\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48671\",\n        \"date\": \"2020-05-15\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48672\",\n        \"date\": \"2020-05-17\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49344\",\n        \"date\": \"2020-05-17\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49345\",\n        \"date\": \"2020-05-18\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49131\",\n        \"date\": \"2020-05-18\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49346\",\n        \"date\": \"2020-05-18\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Monday Morning Meeting\",\n        \"location\": \"BCC\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49453\",\n        \"date\": \"2020-05-18\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49132\",\n        \"date\": \"2020-05-19\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49554\",\n        \"date\": \"2020-05-19\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49347\",\n        \"date\": \"2020-05-19\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48673\",\n        \"date\": \"2020-05-19\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49349\",\n        \"date\": \"2020-05-20\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49133\",\n        \"date\": \"2020-05-20\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49348\",\n        \"date\": \"2020-05-20\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48674\",\n        \"date\": \"2020-05-20\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49135\",\n        \"date\": \"2020-05-21\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"Room 105\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49134\",\n        \"date\": \"2020-05-21\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49350\",\n        \"date\": \"2020-05-21\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49555\",\n        \"date\": \"2020-05-21\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49352\",\n        \"date\": \"2020-05-22\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49137\",\n        \"date\": \"2020-05-22\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 605\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49351\",\n        \"date\": \"2020-05-22\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 900\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49136\",\n        \"date\": \"2020-05-22\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48675\",\n        \"date\": \"2020-05-22\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48676\",\n        \"date\": \"2020-05-24\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49353\",\n        \"date\": \"2020-05-24\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49354\",\n        \"date\": \"2020-05-25\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49138\",\n        \"date\": \"2020-05-25\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49355\",\n        \"date\": \"2020-05-25\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Monday Morning Meeting\",\n        \"location\": \"BCC\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49454\",\n        \"date\": \"2020-05-25\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49139\",\n        \"date\": \"2020-05-26\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48677\",\n        \"date\": \"2020-05-26\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49356\",\n        \"date\": \"2020-05-26\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49359\",\n        \"date\": \"2020-05-27\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49140\",\n        \"date\": \"2020-05-27\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49357\",\n        \"date\": \"2020-05-27\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"12:00:00\",\n        \"title\": \"TTUHSC Grand Rounds\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48678\",\n        \"date\": \"2020-05-27\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49358\",\n        \"date\": \"2020-05-27\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49141\",\n        \"date\": \"2020-05-28\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49360\",\n        \"date\": \"2020-05-28\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49362\",\n        \"date\": \"2020-05-29\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49142\",\n        \"date\": \"2020-05-29\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49361\",\n        \"date\": \"2020-05-29\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 900\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48679\",\n        \"date\": \"2020-05-29\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48680\",\n        \"date\": \"2020-05-31\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49363\",\n        \"date\": \"2020-05-31\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49364\",\n        \"date\": \"2020-06-01\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49143\",\n        \"date\": \"2020-06-01\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49365\",\n        \"date\": \"2020-06-01\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Monday Morning Meeting\",\n        \"location\": \"BCC\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49455\",\n        \"date\": \"2020-06-01\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49144\",\n        \"date\": \"2020-06-02\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48681\",\n        \"date\": \"2020-06-02\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49366\",\n        \"date\": \"2020-06-02\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49368\",\n        \"date\": \"2020-06-03\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49145\",\n        \"date\": \"2020-06-03\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48682\",\n        \"date\": \"2020-06-03\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49367\",\n        \"date\": \"2020-06-03\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49147\",\n        \"date\": \"2020-06-04\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"Room 105\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49146\",\n        \"date\": \"2020-06-04\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49369\",\n        \"date\": \"2020-06-04\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49371\",\n        \"date\": \"2020-06-05\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49149\",\n        \"date\": \"2020-06-05\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 605\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49148\",\n        \"date\": \"2020-06-05\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49370\",\n        \"date\": \"2020-06-05\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 900\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48683\",\n        \"date\": \"2020-06-05\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48684\",\n        \"date\": \"2020-06-07\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49372\",\n        \"date\": \"2020-06-07\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49373\",\n        \"date\": \"2020-06-08\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49150\",\n        \"date\": \"2020-06-08\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49374\",\n        \"date\": \"2020-06-08\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Monday Morning Meeting\",\n        \"location\": \"BCC\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49456\",\n        \"date\": \"2020-06-08\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49151\",\n        \"date\": \"2020-06-09\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49375\",\n        \"date\": \"2020-06-09\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48685\",\n        \"date\": \"2020-06-09\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49378\",\n        \"date\": \"2020-06-10\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49376\",\n        \"date\": \"2020-06-10\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"12:00:00\",\n        \"title\": \"TTUHSC Grand Rounds\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49152\",\n        \"date\": \"2020-06-10\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49377\",\n        \"date\": \"2020-06-10\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48686\",\n        \"date\": \"2020-06-10\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49153\",\n        \"date\": \"2020-06-11\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49379\",\n        \"date\": \"2020-06-11\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49381\",\n        \"date\": \"2020-06-12\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49154\",\n        \"date\": \"2020-06-12\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49380\",\n        \"date\": \"2020-06-12\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 900\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48687\",\n        \"date\": \"2020-06-12\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48688\",\n        \"date\": \"2020-06-14\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49382\",\n        \"date\": \"2020-06-14\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49383\",\n        \"date\": \"2020-06-15\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49155\",\n        \"date\": \"2020-06-15\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49384\",\n        \"date\": \"2020-06-15\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Monday Morning Meeting\",\n        \"location\": \"BCC\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49457\",\n        \"date\": \"2020-06-15\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49156\",\n        \"date\": \"2020-06-16\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49556\",\n        \"date\": \"2020-06-16\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48689\",\n        \"date\": \"2020-06-16\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49385\",\n        \"date\": \"2020-06-16\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49387\",\n        \"date\": \"2020-06-17\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49157\",\n        \"date\": \"2020-06-17\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48690\",\n        \"date\": \"2020-06-17\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49386\",\n        \"date\": \"2020-06-17\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49158\",\n        \"date\": \"2020-06-18\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49159\",\n        \"date\": \"2020-06-18\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"Room 105\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49388\",\n        \"date\": \"2020-06-18\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49557\",\n        \"date\": \"2020-06-18\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Training\",\n        \"location\": \"SMH TRAINING\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49161\",\n        \"date\": \"2020-06-19\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 605\",\n        \"groupID\": \"134\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49390\",\n        \"date\": \"2020-06-19\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49160\",\n        \"date\": \"2020-06-19\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49389\",\n        \"date\": \"2020-06-19\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 900\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48691\",\n        \"date\": \"2020-06-19\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49391\",\n        \"date\": \"2020-06-21\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48692\",\n        \"date\": \"2020-06-21\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49392\",\n        \"date\": \"2020-06-22\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49162\",\n        \"date\": \"2020-06-22\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49393\",\n        \"date\": \"2020-06-22\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Monday Morning Meeting\",\n        \"location\": \"BCC\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49458\",\n        \"date\": \"2020-06-22\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49163\",\n        \"date\": \"2020-06-23\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49394\",\n        \"date\": \"2020-06-23\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48693\",\n        \"date\": \"2020-06-23\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Tuesday Morning Conference\",\n        \"location\": \"Room 650\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49397\",\n        \"date\": \"2020-06-24\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49164\",\n        \"date\": \"2020-06-24\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49395\",\n        \"date\": \"2020-06-24\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"12:00:00\",\n        \"title\": \"TTUHSC Grand Rounds\",\n        \"location\": \"Adler Center\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48694\",\n        \"date\": \"2020-06-24\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49396\",\n        \"date\": \"2020-06-24\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Wednesday Morning Conferences\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49165\",\n        \"date\": \"2020-06-25\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49398\",\n        \"date\": \"2020-06-25\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Thursday Morning Conference\",\n        \"location\": \"\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49400\",\n        \"date\": \"2020-06-26\",\n        \"start_time\": \"07:00:00\",\n        \"end_time\": \"08:00:00\",\n        \"title\": \"BCM Mornings\",\n        \"location\": \"BCM Example Room\",\n        \"groupID\": \"941\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49166\",\n        \"date\": \"2020-06-26\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Morning Reports\",\n        \"location\": \"Board Room\",\n        \"groupID\": \"923\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49399\",\n        \"date\": \"2020-06-26\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 900\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48695\",\n        \"date\": \"2020-06-26\",\n        \"start_time\": \"09:00:00\",\n        \"end_time\": \"10:00:00\",\n        \"title\": \"Friday Morning Conference\",\n        \"location\": \"Room 500\",\n        \"groupID\": \"916\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"48696\",\n        \"date\": \"2020-06-28\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49401\",\n        \"date\": \"2020-06-28\",\n        \"start_time\": \"09:05:00\",\n        \"end_time\": \"10:05:00\",\n        \"title\": \"Sams Test Conference to batch change\",\n        \"location\": \"New place\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49459\",\n        \"date\": \"2020-06-29\",\n        \"start_time\": \"11:00:00\",\n        \"end_time\": \"16:00:00\",\n        \"title\": \"Docs 4 Patient Care\",\n        \"location\": \"\",\n        \"groupID\": \"962\",\n        \"attendance_flag\": \"0\"\n    },\n    {\n        \"conferenceID\": \"49673\",\n        \"date\": \"2020-06-30\",\n        \"start_time\": \"08:00:00\",\n        \"end_time\": \"09:00:00\",\n        \"title\": \"All Resident Orientation\",\n        \"location\": \"Adler Center Conference Room\",\n        \"groupID\": \"149\",\n        \"attendance_flag\": \"0\"\n    }\n]"}],"_postman_id":"93739a25-8c4b-4ba4-8f54-3bc0b1bb0dd0"}],"id":"f0598d99-47a2-4be6-88a0-b7cef40f082c","_postman_id":"f0598d99-47a2-4be6-88a0-b7cef40f082c","description":""},{"name":"Courses","item":[{"name":"courses/all","id":"ff1c6f81-f586-430b-8192-2a317c11d128","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>no input required</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/courses/all","description":"<p>Lists all active courses within the institution, regardless of API client access.</p>\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>courseID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique course identifier</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.06</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>course_name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>course name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.06</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>course_abbrev</div><div><div><div><div></div></div></div><div></div></div></td><td><div>course abbreviation</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.06</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["courses","all"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"29cdd7d1-a1c3-4856-83ed-43b3ae2f7259","name":"courses/all","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"","description":"no input required","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/courses/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Mar 2020 18:40:58 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"courseID\": \"1066\",\n        \"course_name\": \"100 Emergency Med\",\n        \"course_abbrev\": \"EM\"\n    },\n    {\n        \"courseID\": \"616\",\n        \"course_name\": \"1st Internal Medicine Core Clerkship\",\n        \"course_abbrev\": \"MED1\"\n    },\n    {\n        \"courseID\": \"894\",\n        \"course_name\": \"1st Internal Medicine Core Clerkship - Ann Arbor\",\n        \"course_abbrev\": \"MED1-AA\"\n    },\n    {\n        \"courseID\": \"1113\",\n        \"course_name\": \"1st Internal Medicine Core Clerkship - Beard\",\n        \"course_abbrev\": \"MED1-Beard\"\n    },\n    {\n        \"courseID\": \"895\",\n        \"course_name\": \"1st Internal Medicine Core Clerkship - Dearborn\",\n        \"course_abbrev\": \"MED1-DRBN\"\n    },\n    {\n        \"courseID\": \"896\",\n        \"course_name\": \"1st Internal Medicine Core Clerkship - Flint\",\n        \"course_abbrev\": \"MED1-FLT\"\n    },\n    {\n        \"courseID\": \"893\",\n        \"course_name\": \"1st Internal Medicine Core Clerkship - Grand Rapids\",\n        \"course_abbrev\": \"MED1-GR\"\n    },\n    {\n        \"courseID\": \"944\",\n        \"course_name\": \"1st Internal Medicine Core Clerkship - Memorial Hospital\",\n        \"course_abbrev\": \"MED1-MH\"\n    },\n    {\n        \"courseID\": \"1121\",\n        \"course_name\": \"1st Internal Medicine Core Clerkship - Sunny Campus\",\n        \"course_abbrev\": \"MED1-Sun\"\n    },\n    {\n        \"courseID\": \"898\",\n        \"course_name\": \"1st Internal Medicine Core Clerkship - Test for Site ALerts\",\n        \"course_abbrev\": \"MED1-Test for S\"\n    },\n    {\n        \"courseID\": \"832\",\n        \"course_name\": \"1st Year Courses* - San Diego\",\n        \"course_abbrev\": \"IM CC San Diego\"\n    },\n    {\n        \"courseID\": \"109\",\n        \"course_name\": \"2nd Year Courses\",\n        \"course_abbrev\": \"MED2\"\n    },\n    {\n        \"courseID\": \"1112\",\n        \"course_name\": \"2nd Year Courses - Ann Arbor\",\n        \"course_abbrev\": \"MED2-AA\"\n    },\n    {\n        \"courseID\": \"805\",\n        \"course_name\": \"2nd Year Courses - Downtown Hospital\",\n        \"course_abbrev\": \"MED2-DH\"\n    },\n    {\n        \"courseID\": \"804\",\n        \"course_name\": \"2nd Year Courses - Family Planning Clinic\",\n        \"course_abbrev\": \"MED2-FPC\"\n    },\n    {\n        \"courseID\": \"931\",\n        \"course_name\": \"2nd Year Courses - Site Test\",\n        \"course_abbrev\": \"MED2-Site Test\"\n    },\n    {\n        \"courseID\": \"757\",\n        \"course_name\": \"6 Month Course\",\n        \"course_abbrev\": \"6 Month\"\n    },\n    {\n        \"courseID\": \"754\",\n        \"course_name\": \"A Test\",\n        \"course_abbrev\": \"A Test\"\n    },\n    {\n        \"courseID\": \"755\",\n        \"course_name\": \"AA Test\",\n        \"course_abbrev\": \"AA Test\"\n    },\n    {\n        \"courseID\": \"756\",\n        \"course_name\": \"AAA - Biochemistry Course\",\n        \"course_abbrev\": \"Biochem\"\n    },\n    {\n        \"courseID\": \"767\",\n        \"course_name\": \"AAA Multiple Sites\",\n        \"course_abbrev\": \"AAA MS\"\n    },\n    {\n        \"courseID\": \"819\",\n        \"course_name\": \"AAA Multiple Sites - Downtown Hospital\",\n        \"course_abbrev\": \"AAA MS-DH\"\n    },\n    {\n        \"courseID\": \"910\",\n        \"course_name\": \"AAA Multiple Sites - Main Street Hospital\",\n        \"course_abbrev\": \"AAA MS-MSH\"\n    },\n    {\n        \"courseID\": \"905\",\n        \"course_name\": \"AAA Multiple Sites - Memorial Hospital\",\n        \"course_abbrev\": \"AAA MS-MH\"\n    },\n    {\n        \"courseID\": \"817\",\n        \"course_name\": \"AAA Multiple Sites - San Diego\",\n        \"course_abbrev\": \"AAA MS-SD\"\n    },\n    {\n        \"courseID\": \"827\",\n        \"course_name\": \"AAA Multiple Sites - Test for Site ALerts\",\n        \"course_abbrev\": \"AAA MS-Test for\"\n    },\n    {\n        \"courseID\": \"818\",\n        \"course_name\": \"AAA Multiple Sites - West Clinic\",\n        \"course_abbrev\": \"AAA MS-WC\"\n    },\n    {\n        \"courseID\": \"1109\",\n        \"course_name\": \"Advance Family Planning\",\n        \"course_abbrev\": \"FAMP\"\n    },\n    {\n        \"courseID\": \"1111\",\n        \"course_name\": \"Advance Gynecology\",\n        \"course_abbrev\": \"AGYN\"\n    },\n    {\n        \"courseID\": \"1108\",\n        \"course_name\": \"Advance Medial Toxicology\",\n        \"course_abbrev\": \"MEDTX\"\n    },\n    {\n        \"courseID\": \"1110\",\n        \"course_name\": \"Advanced Pain Medicine\",\n        \"course_abbrev\": \"PM\"\n    },\n    {\n        \"courseID\": \"1064\",\n        \"course_name\": \"Alpha Course\",\n        \"course_abbrev\": \"AAC\"\n    },\n    {\n        \"courseID\": \"392\",\n        \"course_name\": \"Anatomic Pathology Elective (4WK) Off Block\",\n        \"course_abbrev\": \"PATH 300\"\n    },\n    {\n        \"courseID\": \"1082\",\n        \"course_name\": \"Anatomy 101\",\n        \"course_abbrev\": \"ANAT 101\"\n    },\n    {\n        \"courseID\": \"1119\",\n        \"course_name\": \"Anatomy 101 - Ann Arbor\",\n        \"course_abbrev\": \"ANAT 101-AA\"\n    },\n    {\n        \"courseID\": \"1118\",\n        \"course_name\": \"Anatomy 101 - South Campus\",\n        \"course_abbrev\": \"ANAT 101-South\"\n    },\n    {\n        \"courseID\": \"768\",\n        \"course_name\": \"AO Longitudinal Course for Testing\",\n        \"course_abbrev\": \"AOLCT\"\n    },\n    {\n        \"courseID\": \"769\",\n        \"course_name\": \"AO Longitudinal Course for Testing 2\",\n        \"course_abbrev\": \"AOLCT2\"\n    },\n    {\n        \"courseID\": \"883\",\n        \"course_name\": \"API Test Course\",\n        \"course_abbrev\": \"API-TEST\"\n    },\n    {\n        \"courseID\": \"884\",\n        \"course_name\": \"API Test Course 4\",\n        \"course_abbrev\": \"APITEST4\"\n    },\n    {\n        \"courseID\": \"229\",\n        \"course_name\": \"AWAY - Electives\",\n        \"course_abbrev\": \"AWAY ELECTIVE\"\n    },\n    {\n        \"courseID\": \"230\",\n        \"course_name\": \"AWAY - Subinternships\",\n        \"course_abbrev\": \"AWAY SUB-I\"\n    },\n    {\n        \"courseID\": \"833\",\n        \"course_name\": \"Away Elective 1\",\n        \"course_abbrev\": \"AWY EL 1\"\n    },\n    {\n        \"courseID\": \"764\",\n        \"course_name\": \"Basket weaving\",\n        \"course_abbrev\": \"BW\"\n    },\n    {\n        \"courseID\": \"750\",\n        \"course_name\": \"BB Test\",\n        \"course_abbrev\": \"BBT\"\n    },\n    {\n        \"courseID\": \"820\",\n        \"course_name\": \"BB Test - Downtown Hospital\",\n        \"course_abbrev\": \"BBT-DH\"\n    },\n    {\n        \"courseID\": \"821\",\n        \"course_name\": \"BB Test - Sunny Side Family Practice\",\n        \"course_abbrev\": \"BBT-SSFP\"\n    },\n    {\n        \"courseID\": \"822\",\n        \"course_name\": \"BB Test - West Medical Group\",\n        \"course_abbrev\": \"BBT-WMG\"\n    },\n    {\n        \"courseID\": \"906\",\n        \"course_name\": \"Becky's Course\",\n        \"course_abbrev\": \"BGC\"\n    },\n    {\n        \"courseID\": \"909\",\n        \"course_name\": \"Becky's Course - Dearborn\",\n        \"course_abbrev\": \"BGC-DRBN\"\n    },\n    {\n        \"courseID\": \"907\",\n        \"course_name\": \"Becky's Course - Gerace\",\n        \"course_abbrev\": \"BGC-GER\"\n    },\n    {\n        \"courseID\": \"908\",\n        \"course_name\": \"Becky's Course - Grand Rapids\",\n        \"course_abbrev\": \"BGC-GR\"\n    },\n    {\n        \"courseID\": \"845\",\n        \"course_name\": \"CEK Overlap Terms - Cohort Lottery Test\",\n        \"course_abbrev\": \"CEK Overlap Tes\"\n    },\n    {\n        \"courseID\": \"1\",\n        \"course_name\": \"Clerkship: Ambulatory Medicine (4WK)\",\n        \"course_abbrev\": \"IMED CLK100\"\n    },\n    {\n        \"courseID\": \"803\",\n        \"course_name\": \"Clerkship: Ambulatory Medicine (4WK) - Phoenix\",\n        \"course_abbrev\": \"IMED CLK100-PHX\"\n    },\n    {\n        \"courseID\": \"802\",\n        \"course_name\": \"Clerkship: Ambulatory Medicine (4WK) - San Diego\",\n        \"course_abbrev\": \"IMED CLK100-SD\"\n    },\n    {\n        \"courseID\": \"245\",\n        \"course_name\": \"Clerkship: Anesthesiology (2WK)\",\n        \"course_abbrev\": \"ANES CLK1\"\n    },\n    {\n        \"courseID\": \"7\",\n        \"course_name\": \"Clerkship: Clinical Neuroscience (4WK)\",\n        \"course_abbrev\": \"NEUR CLK100\"\n    },\n    {\n        \"courseID\": \"244\",\n        \"course_name\": \"Clerkship: Emergency Medicine (2WK)\",\n        \"course_abbrev\": \"EMED CLK1\"\n    },\n    {\n        \"courseID\": \"823\",\n        \"course_name\": \"Clerkship: Emergency Medicine (2WK) - Downtown Hospital\",\n        \"course_abbrev\": \"EMED CLK1-DH\"\n    },\n    {\n        \"courseID\": \"824\",\n        \"course_name\": \"Clerkship: Emergency Medicine (2WK) - Main Street Hospital\",\n        \"course_abbrev\": \"EMED CLK1-MSH\"\n    },\n    {\n        \"courseID\": \"825\",\n        \"course_name\": \"Clerkship: Emergency Medicine (2WK) - Phoenix\",\n        \"course_abbrev\": \"EMED CLK1-PHX\"\n    },\n    {\n        \"courseID\": \"232\",\n        \"course_name\": \"Clerkship: Internal Medicine\",\n        \"course_abbrev\": \"IM\"\n    },\n    {\n        \"courseID\": \"741\",\n        \"course_name\": \"Clerkship: Internal Medicine (12 WK)\",\n        \"course_abbrev\": \"IMLC\"\n    },\n    {\n        \"courseID\": \"579\",\n        \"course_name\": \"Clerkship: Internal Medicine (8WK)\",\n        \"course_abbrev\": \"IMED CLK102\"\n    },\n    {\n        \"courseID\": \"933\",\n        \"course_name\": \"Clerkship: Internal Medicine - Detroit\",\n        \"course_abbrev\": \"IM-DET\"\n    },\n    {\n        \"courseID\": \"808\",\n        \"course_name\": \"Clerkship: Internal Medicine - Downtown Hospital\",\n        \"course_abbrev\": \"IM-DH\"\n    },\n    {\n        \"courseID\": \"809\",\n        \"course_name\": \"Clerkship: Internal Medicine - Family Planning Clinic\",\n        \"course_abbrev\": \"IM-FPC\"\n    },\n    {\n        \"courseID\": \"814\",\n        \"course_name\": \"Clerkship: Internal Medicine - Main Street Hospital\",\n        \"course_abbrev\": \"IM-MSH\"\n    },\n    {\n        \"courseID\": \"807\",\n        \"course_name\": \"Clerkship: Internal Medicine - Memorial Hospital\",\n        \"course_abbrev\": \"IM-MH\"\n    },\n    {\n        \"courseID\": \"806\",\n        \"course_name\": \"Clerkship: Internal Medicine - Phoenix\",\n        \"course_abbrev\": \"IM-PHX\"\n    },\n    {\n        \"courseID\": \"2\",\n        \"course_name\": \"Clerkship: Internal Medicine I (4WK)\",\n        \"course_abbrev\": \"IMED CLK102\"\n    },\n    {\n        \"courseID\": \"679\",\n        \"course_name\": \"Clerkship: Internal Medicine, Medical Approach to the Patient\",\n        \"course_abbrev\": \"CL MAP-IM\"\n    },\n    {\n        \"courseID\": \"680\",\n        \"course_name\": \"Clerkship: Neurology, Medical Approach to the Patient\",\n        \"course_abbrev\": \"CL MAP-NE\"\n    },\n    {\n        \"courseID\": \"356\",\n        \"course_name\": \"Clerkship: Ob/Gyn\",\n        \"course_abbrev\": \"Ob/Gyn\"\n    },\n    {\n        \"courseID\": \"8\",\n        \"course_name\": \"Clerkship: Obstetrics and Gynecology (6WK)\",\n        \"course_abbrev\": \"OBGY CLK100\"\n    },\n    {\n        \"courseID\": \"5\",\n        \"course_name\": \"Clerkship: Pediatrics I (4WK)\",\n        \"course_abbrev\": \"PEDS CLK100\"\n    },\n    {\n        \"courseID\": \"873\",\n        \"course_name\": \"Clerkship: Pediatrics I (4WK) - Ann Arbor\",\n        \"course_abbrev\": \"PEDS CLK100-AA\"\n    },\n    {\n        \"courseID\": \"874\",\n        \"course_name\": \"Clerkship: Pediatrics I (4WK) - Dearborn\",\n        \"course_abbrev\": \"PEDS CLK100-DRBN\"\n    },\n    {\n        \"courseID\": \"875\",\n        \"course_name\": \"Clerkship: Pediatrics I (4WK) - Detroit\",\n        \"course_abbrev\": \"PEDS CLK100-DET\"\n    },\n    {\n        \"courseID\": \"876\",\n        \"course_name\": \"Clerkship: Pediatrics I (4WK) - Flint\",\n        \"course_abbrev\": \"PEDS CLK100-FLT\"\n    },\n    {\n        \"courseID\": \"6\",\n        \"course_name\": \"Clerkship: Pediatrics II (4WK)\",\n        \"course_abbrev\": \"PEDS CLK102\"\n    },\n    {\n        \"courseID\": \"714\",\n        \"course_name\": \"Clerkship: Pediatrics Inpatient (3 WK)\",\n        \"course_abbrev\": \"PEDS CLK1\"\n    },\n    {\n        \"courseID\": \"330\",\n        \"course_name\": \"Clerkship: Pediatrics Longitudinal\",\n        \"course_abbrev\": \"PEDS CLK102\"\n    },\n    {\n        \"courseID\": \"715\",\n        \"course_name\": \"Clerkship: Pediatrics Outpatient (3 WK)\",\n        \"course_abbrev\": \"PEDS CLK2\"\n    },\n    {\n        \"courseID\": \"689\",\n        \"course_name\": \"Clerkship: Primary Care &amp; Psychiatry\",\n        \"course_abbrev\": \"CL PCP-PC\"\n    },\n    {\n        \"courseID\": \"335\",\n        \"course_name\": \"Clerkship: Primary Care (12WK)\",\n        \"course_abbrev\": \"PCC Long\"\n    },\n    {\n        \"courseID\": \"800\",\n        \"course_name\": \"Clerkship: Primary Care (12WK) - Phoenix\",\n        \"course_abbrev\": \"PCC Long-PHX\"\n    },\n    {\n        \"courseID\": \"801\",\n        \"course_name\": \"Clerkship: Primary Care (12WK) - San Diego\",\n        \"course_abbrev\": \"PCC Long-SD\"\n    },\n    {\n        \"courseID\": \"4\",\n        \"course_name\": \"Clerkship: Primary Care (4WK)\",\n        \"course_abbrev\": \"IMED CLK104\"\n    },\n    {\n        \"courseID\": \"223\",\n        \"course_name\": \"Clerkship: Primary Care Evening Clinic\",\n        \"course_abbrev\": \"WEC\"\n    },\n    {\n        \"courseID\": \"475\",\n        \"course_name\": \"Clerkship: Psychiatry (12WK)\",\n        \"course_abbrev\": \"PSYC Long\"\n    },\n    {\n        \"courseID\": \"9\",\n        \"course_name\": \"Clerkship: Psychiatry (6WK)\",\n        \"course_abbrev\": \"PSYC CLK100\"\n    },\n    {\n        \"courseID\": \"233\",\n        \"course_name\": \"Clerkship: Surgery\",\n        \"course_abbrev\": \"Surgery\"\n    },\n    {\n        \"courseID\": \"10\",\n        \"course_name\": \"Clerkship: Surgery / ER / Anesthesiology (12WK)\",\n        \"course_abbrev\": \"SURG CLK100\"\n    },\n    {\n        \"courseID\": \"913\",\n        \"course_name\": \"Cody\",\n        \"course_abbrev\": \"CB\"\n    },\n    {\n        \"courseID\": \"914\",\n        \"course_name\": \"Cody - Beard\",\n        \"course_abbrev\": \"CB-Beard\"\n    },\n    {\n        \"courseID\": \"887\",\n        \"course_name\": \"Cody's test course\",\n        \"course_abbrev\": \"CTC\"\n    },\n    {\n        \"courseID\": \"225\",\n        \"course_name\": \"Commencement\",\n        \"course_abbrev\": \"COMMENCEMENT\"\n    },\n    {\n        \"courseID\": \"770\",\n        \"course_name\": \"Course Name\",\n        \"course_abbrev\": \"CN\"\n    },\n    {\n        \"courseID\": \"1120\",\n        \"course_name\": \"Crump Clinic\",\n        \"course_abbrev\": \"CC\"\n    },\n    {\n        \"courseID\": \"490\",\n        \"course_name\": \"CS Ambulatory Medicine Dermatology Selective\",\n        \"course_abbrev\": \"SELECT\"\n    },\n    {\n        \"courseID\": \"730\",\n        \"course_name\": \"CS Primary Care Dermatology Selective\",\n        \"course_abbrev\": \"SELECT\"\n    },\n    {\n        \"courseID\": \"489\",\n        \"course_name\": \"CS Surgery Ophthalmology Selective\",\n        \"course_abbrev\": \"SELECT\"\n    },\n    {\n        \"courseID\": \"491\",\n        \"course_name\": \"CS Surgery Orthopaedic Selective\",\n        \"course_abbrev\": \"SELECT\"\n    },\n    {\n        \"courseID\": \"584\",\n        \"course_name\": \"CS Surgery Urology Selective\",\n        \"course_abbrev\": \"SELECT\"\n    },\n    {\n        \"courseID\": \"941\",\n        \"course_name\": \"Dexter Course - Ann Arbor\",\n        \"course_abbrev\": \"DXC-AA\"\n    },\n    {\n        \"courseID\": \"940\",\n        \"course_name\": \"Dexter Course - Dearborn\",\n        \"course_abbrev\": \"DXC-DRBN\"\n    },\n    {\n        \"courseID\": \"942\",\n        \"course_name\": \"Dexter Course - Warren\",\n        \"course_abbrev\": \"DXC-WRN\"\n    },\n    {\n        \"courseID\": \"1083\",\n        \"course_name\": \"DG-Family Medicine Core Clerkship\",\n        \"course_abbrev\": \"DG FAML - 9301\"\n    },\n    {\n        \"courseID\": \"1091\",\n        \"course_name\": \"DG-Family Medicine Core Clerkship - Allina Health\",\n        \"course_abbrev\": \"DG FAML - 9301-\"\n    },\n    {\n        \"courseID\": \"1087\",\n        \"course_name\": \"DG-Family Medicine Core Clerkship - East Clinic\",\n        \"course_abbrev\": \"DG FAML - 9301-\"\n    },\n    {\n        \"courseID\": \"1090\",\n        \"course_name\": \"DG-Family Medicine Core Clerkship - Fields Clinic\",\n        \"course_abbrev\": \"DG FAML - 9301-\"\n    },\n    {\n        \"courseID\": \"1084\",\n        \"course_name\": \"DG-Family Medicine Core Clerkship - Memorial Hospital\",\n        \"course_abbrev\": \"DG FAML - 9301-\"\n    },\n    {\n        \"courseID\": \"1088\",\n        \"course_name\": \"DG-Family Medicine Core Clerkship - North Clinic\",\n        \"course_abbrev\": \"DG FAML - 9301-\"\n    },\n    {\n        \"courseID\": \"1089\",\n        \"course_name\": \"DG-Family Medicine Core Clerkship - South Clinic\",\n        \"course_abbrev\": \"DG FAML - 9301-\"\n    },\n    {\n        \"courseID\": \"1085\",\n        \"course_name\": \"DG-Family Medicine Core Clerkship - West Clinic\",\n        \"course_abbrev\": \"DG FAML - 9301-\"\n    },\n    {\n        \"courseID\": \"1086\",\n        \"course_name\": \"DG-Family Medicine Core Clerkship - West Medical Group\",\n        \"course_abbrev\": \"DG FAML - 9301-\"\n    },\n    {\n        \"courseID\": \"1092\",\n        \"course_name\": \"DG-Internal Medicine Core Clerkship\",\n        \"course_abbrev\": \"DG INMD-9301\"\n    },\n    {\n        \"courseID\": \"1095\",\n        \"course_name\": \"DG-Internal Medicine Core Clerkship - Memorial Hospital\",\n        \"course_abbrev\": \"DG INMD-9301-MH\"\n    },\n    {\n        \"courseID\": \"1093\",\n        \"course_name\": \"DG-Internal Medicine Core Clerkship - NE Clinic\",\n        \"course_abbrev\": \"DG INMD-9301-NE\"\n    },\n    {\n        \"courseID\": \"1096\",\n        \"course_name\": \"DG-Internal Medicine Core Clerkship - NW Clinic\",\n        \"course_abbrev\": \"DG INMD-9301-NW\"\n    },\n    {\n        \"courseID\": \"1094\",\n        \"course_name\": \"DG-Internal Medicine Core Clerkship - SE Clinic\",\n        \"course_abbrev\": \"DG INMD-9301-SE\"\n    },\n    {\n        \"courseID\": \"1097\",\n        \"course_name\": \"DG-Internal Medicine Core Clerkship - SW Clinic\",\n        \"course_abbrev\": \"DG INMD-9301-SW\"\n    },\n    {\n        \"courseID\": \"1098\",\n        \"course_name\": \"DG-Pediatrics Clerkship\",\n        \"course_abbrev\": \"DG PEDS 9301\"\n    },\n    {\n        \"courseID\": \"1105\",\n        \"course_name\": \"DG-Pediatrics Clerkship - Allina Health\",\n        \"course_abbrev\": \"DG PEDS-AH\"\n    },\n    {\n        \"courseID\": \"1099\",\n        \"course_name\": \"DG-Pediatrics Clerkship - East Clinic\",\n        \"course_abbrev\": \"DG PEDS-East Cl\"\n    },\n    {\n        \"courseID\": \"1106\",\n        \"course_name\": \"DG-Pediatrics Clerkship - Flint\",\n        \"course_abbrev\": \"DG PEDS-FLT\"\n    },\n    {\n        \"courseID\": \"1102\",\n        \"course_name\": \"DG-Pediatrics Clerkship - Memorial Hospital\",\n        \"course_abbrev\": \"DG PEDS-MH\"\n    },\n    {\n        \"courseID\": \"1100\",\n        \"course_name\": \"DG-Pediatrics Clerkship - North Clinic\",\n        \"course_abbrev\": \"DG PEDS-North C\"\n    },\n    {\n        \"courseID\": \"1101\",\n        \"course_name\": \"DG-Pediatrics Clerkship - South Clinic\",\n        \"course_abbrev\": \"DG PEDS-South C\"\n    },\n    {\n        \"courseID\": \"1103\",\n        \"course_name\": \"DG-Pediatrics Clerkship - Sunny Side Family Practice\",\n        \"course_abbrev\": \"DG PEDS-SSFP\"\n    },\n    {\n        \"courseID\": \"1104\",\n        \"course_name\": \"DG-Pediatrics Clerkship - West Medical Group\",\n        \"course_abbrev\": \"DG PEDS-WMG\"\n    },\n    {\n        \"courseID\": \"13\",\n        \"course_name\": \"EL Anesthesiology Advanced Clinical Elective (4WK)\",\n        \"course_abbrev\": \"ANES 301\"\n    },\n    {\n        \"courseID\": \"12\",\n        \"course_name\": \"EL Anesthesiology Clinical Research Elective (4WK)\",\n        \"course_abbrev\": \"ANES 303\"\n    },\n    {\n        \"courseID\": \"14\",\n        \"course_name\": \"EL Anesthesiology Laboratory Research Elective (4WK)\",\n        \"course_abbrev\": \"ANES 302\"\n    },\n    {\n        \"courseID\": \"16\",\n        \"course_name\": \"EL Child Study Center Clinical Research Elective (4WK)\",\n        \"course_abbrev\": \"CHST 302\"\n    },\n    {\n        \"courseID\": \"15\",\n        \"course_name\": \"EL Child Study Center Psychiatry Elective (4WK)\",\n        \"course_abbrev\": \"CHST 300\"\n    },\n    {\n        \"courseID\": \"576\",\n        \"course_name\": \"EL Clinical Dermatology Elective (2WK) AWAY UCSF\",\n        \"course_abbrev\": \"DERM\"\n    },\n    {\n        \"courseID\": \"612\",\n        \"course_name\": \"EL Clinical Dermatology Elective (4WK) AWAY Harvard\",\n        \"course_abbrev\": \"DERM\"\n    },\n    {\n        \"courseID\": \"657\",\n        \"course_name\": \"EL Clinical Experience in Radiation Oncology\",\n        \"course_abbrev\": \"THER\"\n    },\n    {\n        \"courseID\": \"722\",\n        \"course_name\": \"EL Critical Care Emergency Medicine  UNC\",\n        \"course_abbrev\": \"EMER\"\n    },\n    {\n        \"courseID\": \"723\",\n        \"course_name\": \"EL Critical Care Emergency Medicine (4WK) AWAY UNC\",\n        \"course_abbrev\": \"EMER\"\n    },\n    {\n        \"courseID\": \"622\",\n        \"course_name\": \"EL Cushing/Whitney Medical Library Information Survival Skills Elective (2WK)\",\n        \"course_abbrev\": \"SECT ED 210\"\n    },\n    {\n        \"courseID\": \"678\",\n        \"course_name\": \"EL Dermatology Consult Elective (4WK) AWAY  COLUMBIA UNI\",\n        \"course_abbrev\": \"DERM\"\n    },\n    {\n        \"courseID\": \"415\",\n        \"course_name\": \"EL Dermatology Elective (4WK) AWAY  UCSF\",\n        \"course_abbrev\": \"DERM\"\n    },\n    {\n        \"courseID\": \"702\",\n        \"course_name\": \"EL Dermatology Elective (4WK) AWAY_San Antonio Military\",\n        \"course_abbrev\": \"DERM\"\n    },\n    {\n        \"courseID\": \"703\",\n        \"course_name\": \"EL Dermatology Elective (4WK) AWAY_Walter Reed  Military\",\n        \"course_abbrev\": \"DERM\"\n    },\n    {\n        \"courseID\": \"18\",\n        \"course_name\": \"EL Dermatology Inpatient Consult Elective  (4WK)\",\n        \"course_abbrev\": \"DERM 302\"\n    },\n    {\n        \"courseID\": \"17\",\n        \"course_name\": \"EL Dermatology Outpatient Elective (4WK)\",\n        \"course_abbrev\": \"DERM 305\"\n    },\n    {\n        \"courseID\": \"717\",\n        \"course_name\": \"EL Diagnostic Radiology Clinical Elective (3WK)\",\n        \"course_abbrev\": \"DIAG\"\n    },\n    {\n        \"courseID\": \"24\",\n        \"course_name\": \"EL Diagnostic Radiology Clinical Elective (4WK)\",\n        \"course_abbrev\": \"DIAG 301\"\n    },\n    {\n        \"courseID\": \"306\",\n        \"course_name\": \"EL Diagnostic Radiology Neuroradiology Elective (2WK)\",\n        \"course_abbrev\": \"DIAG 309\"\n    },\n    {\n        \"courseID\": \"19\",\n        \"course_name\": \"EL Diagnostic Radiology Neuroradiology Elective (4WK)\",\n        \"course_abbrev\": \"DIAG 309\"\n    },\n    {\n        \"courseID\": \"20\",\n        \"course_name\": \"EL Diagnostic Radiology Pediatric Imaging Elective (2WK)\",\n        \"course_abbrev\": \"DIAG306\"\n    },\n    {\n        \"courseID\": \"21\",\n        \"course_name\": \"EL Diagnostic Radiology Pediatric Imaging Elective (4WK)\",\n        \"course_abbrev\": \"DIAG 307\"\n    },\n    {\n        \"courseID\": \"22\",\n        \"course_name\": \"EL Diagnostic Radiology Vascular and Interventional Radiology Elective (2WK)\",\n        \"course_abbrev\": \"DIAG 312\"\n    },\n    {\n        \"courseID\": \"25\",\n        \"course_name\": \"EL Emergency Medicine Point-of-Care Ultrasound Elective (2WK)\",\n        \"course_abbrev\": \"EMER 303\"\n    },\n    {\n        \"courseID\": \"26\",\n        \"course_name\": \"EL Emergency Medicine Point-of-Care Ultrasound Elective (4WK)\",\n        \"course_abbrev\": \"EMER 304\"\n    },\n    {\n        \"courseID\": \"483\",\n        \"course_name\": \"EL Family and Transgender Medicine Elective (Oneonta, NY)  (2WK)\",\n        \"course_abbrev\": \"FMED NY\"\n    },\n    {\n        \"courseID\": \"285\",\n        \"course_name\": \"EL Family and Transgender Medicine Elective (Oneonta, NY)  (4WK)\",\n        \"course_abbrev\": \"FMED NY\"\n    },\n    {\n        \"courseID\": \"29\",\n        \"course_name\": \"EL Family Medicine Elective (Middlesex Hospital)  (4WK)\",\n        \"course_abbrev\": \"FMED 100\"\n    },\n    {\n        \"courseID\": \"719\",\n        \"course_name\": \"EL Family Medicine Preceptorship Elective (AWAY) EMORY\",\n        \"course_abbrev\": \"FMED\"\n    },\n    {\n        \"courseID\": \"720\",\n        \"course_name\": \"EL Family Medicine Preceptorship Elective (AWAY) EMORY Uni.\",\n        \"course_abbrev\": \"FMED\"\n    },\n    {\n        \"courseID\": \"31\",\n        \"course_name\": \"EL Genetics Medical Genetics Elective (2WK)\",\n        \"course_abbrev\": \"GENE 300A\"\n    },\n    {\n        \"courseID\": \"32\",\n        \"course_name\": \"EL Genetics Medical Genetics Elective (4WK)\",\n        \"course_abbrev\": \"GENE 300B\"\n    },\n    {\n        \"courseID\": \"686\",\n        \"course_name\": \"EL Hematology/Oncology Clinics and Consultation Elective (AWAY) Walter Reed Mil\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"35\",\n        \"course_name\": \"EL Internal Medicine Allergy and Immunology Elective (2WK)\",\n        \"course_abbrev\": \"IMED 318\"\n    },\n    {\n        \"courseID\": \"36\",\n        \"course_name\": \"EL Internal Medicine Allergy and Immunology Elective (4WK)\",\n        \"course_abbrev\": \"IMED 306\"\n    },\n    {\n        \"courseID\": \"37\",\n        \"course_name\": \"EL Internal Medicine Analytical Clinical Cardiology Elective (2WK)\",\n        \"course_abbrev\": \"IMED 208\"\n    },\n    {\n        \"courseID\": \"38\",\n        \"course_name\": \"EL Internal Medicine Analytical Clinical Cardiology Elective (4WK)\",\n        \"course_abbrev\": \"IMED 304\"\n    },\n    {\n        \"courseID\": \"39\",\n        \"course_name\": \"EL Internal Medicine Cardiology Elective (VAMC) (2WK)\",\n        \"course_abbrev\": \"IMED 303A\"\n    },\n    {\n        \"courseID\": \"40\",\n        \"course_name\": \"EL Internal Medicine Cardiology Elective (VAMC) (4WK)\",\n        \"course_abbrev\": \"IMED 303B\"\n    },\n    {\n        \"courseID\": \"41\",\n        \"course_name\": \"EL Internal Medicine Cardiology Elective (YNHH) (4WK)\",\n        \"course_abbrev\": \"IMED 302\"\n    },\n    {\n        \"courseID\": \"67\",\n        \"course_name\": \"EL Internal Medicine Critical Care Elective (YNHH/SRC) (2WK)\",\n        \"course_abbrev\": \"IMED 330\"\n    },\n    {\n        \"courseID\": \"68\",\n        \"course_name\": \"EL Internal Medicine Critical Care Elective (YNHH/SRC) (4WK)\",\n        \"course_abbrev\": \"IMED 327\"\n    },\n    {\n        \"courseID\": \"75\",\n        \"course_name\": \"EL Internal Medicine Elective for MD/PhD Students (YNHH/SRC) (2WK)\",\n        \"course_abbrev\": \"IMED 333\"\n    },\n    {\n        \"courseID\": \"76\",\n        \"course_name\": \"EL Internal Medicine Elective for MD/PhD Students (YNHH/SRC) (4WK)\",\n        \"course_abbrev\": \"IMED 361\"\n    },\n    {\n        \"courseID\": \"47\",\n        \"course_name\": \"EL Internal Medicine Endocrinology Elective (4WK)\",\n        \"course_abbrev\": \"IMED 309\"\n    },\n    {\n        \"courseID\": \"42\",\n        \"course_name\": \"EL Internal Medicine Gastroenterology Elective (2WK)\",\n        \"course_abbrev\": \"IMED 314\"\n    },\n    {\n        \"courseID\": \"43\",\n        \"course_name\": \"EL Internal Medicine Gastroenterology Elective (4WK)\",\n        \"course_abbrev\": \"IMED 307\"\n    },\n    {\n        \"courseID\": \"48\",\n        \"course_name\": \"EL Internal Medicine General Medicine Consult Elective (2WK)\",\n        \"course_abbrev\": \"IMED 363\"\n    },\n    {\n        \"courseID\": \"49\",\n        \"course_name\": \"EL Internal Medicine General Medicine Consult Elective (4WK)\",\n        \"course_abbrev\": \"IMED 360\"\n    },\n    {\n        \"courseID\": \"72\",\n        \"course_name\": \"EL Internal Medicine Geriatric Medicine Elective (YNHH/SRC) (2WK)\",\n        \"course_abbrev\": \"IMED 332\"\n    },\n    {\n        \"courseID\": \"73\",\n        \"course_name\": \"EL Internal Medicine Geriatric Medicine Elective (YNHH/SRC) (4WK)\",\n        \"course_abbrev\": \"IMED 326\"\n    },\n    {\n        \"courseID\": \"50\",\n        \"course_name\": \"EL Internal Medicine Geriatric Medicine Elective (YNHH/YSC) (2WK)\",\n        \"course_abbrev\": \"IMED 311\"\n    },\n    {\n        \"courseID\": \"51\",\n        \"course_name\": \"EL Internal Medicine Geriatric Medicine Elective (YNHH/YSC) (4WK)\",\n        \"course_abbrev\": \"IMED 312\"\n    },\n    {\n        \"courseID\": \"52\",\n        \"course_name\": \"EL Internal Medicine Hematology Elective (2WK)\",\n        \"course_abbrev\": \"IMED 210\"\n    },\n    {\n        \"courseID\": \"590\",\n        \"course_name\": \"EL Internal Medicine Hematology Elective (4WK)\",\n        \"course_abbrev\": \"IMED 210\"\n    },\n    {\n        \"courseID\": \"44\",\n        \"course_name\": \"EL Internal Medicine Hepatology Elective (2WK)\",\n        \"course_abbrev\": \"IMED 315A\"\n    },\n    {\n        \"courseID\": \"45\",\n        \"course_name\": \"EL Internal Medicine Hepatology Elective (4WK)\",\n        \"course_abbrev\": \"IMED 315B\"\n    },\n    {\n        \"courseID\": \"433\",\n        \"course_name\": \"EL Internal Medicine Infectious Disease Elective (2WK)\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"53\",\n        \"course_name\": \"EL Internal Medicine Infectious Disease Elective (4WK)\",\n        \"course_abbrev\": \"IMED 316\"\n    },\n    {\n        \"courseID\": \"33\",\n        \"course_name\": \"EL Internal Medicine Medical Intensive Care Elective (MICU) (2WK)\",\n        \"course_abbrev\": \"IMED 300\"\n    },\n    {\n        \"courseID\": \"34\",\n        \"course_name\": \"EL Internal Medicine Medical Intensive Care Elective (MICU) (4WK)\",\n        \"course_abbrev\": \"IMED 301\"\n    },\n    {\n        \"courseID\": \"500\",\n        \"course_name\": \"EL Internal Medicine Medicine Elective (4WK) AWAY Uni of Toronto\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"370\",\n        \"course_name\": \"EL Internal Medicine Nephrology Elective (YNHH &amp; VAMC) (2WK)\",\n        \"course_abbrev\": \"IMED 319\"\n    },\n    {\n        \"courseID\": \"54\",\n        \"course_name\": \"EL Internal Medicine Nephrology Elective (YNHH &amp; VAMC) (4WK)\",\n        \"course_abbrev\": \"IMED 319\"\n    },\n    {\n        \"courseID\": \"609\",\n        \"course_name\": \"EL Internal Medicine Nephrology Elective AWAY (4WK) Cleveland Clinic\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"56\",\n        \"course_name\": \"EL Internal Medicine Occupational &amp; Environmental Medicine Elective (2WK)\",\n        \"course_abbrev\": \"IMED 324\"\n    },\n    {\n        \"courseID\": \"57\",\n        \"course_name\": \"EL Internal Medicine Occupational &amp; Environmental Medicine Elective (4WK)\",\n        \"course_abbrev\": \"IMED 320\"\n    },\n    {\n        \"courseID\": \"58\",\n        \"course_name\": \"EL Internal Medicine Oncology Elective (2WK)\",\n        \"course_abbrev\": \"IMED 299\"\n    },\n    {\n        \"courseID\": \"59\",\n        \"course_name\": \"EL Internal Medicine Oncology Elective (4WK)\",\n        \"course_abbrev\": \"IMED 322\"\n    },\n    {\n        \"courseID\": \"60\",\n        \"course_name\": \"EL Internal Medicine Palliative/Hospice Medicine Elective (Branford, CT) (2WK)\",\n        \"course_abbrev\": \"IMED 209\"\n    },\n    {\n        \"courseID\": \"61\",\n        \"course_name\": \"EL Internal Medicine Palliative/Hospice Medicine Elective (Branford, CT) (4WK)\",\n        \"course_abbrev\": \"IMED 321\"\n    },\n    {\n        \"courseID\": \"62\",\n        \"course_name\": \"EL Internal Medicine Pulmonary Elective (YNHH &amp; VAMC) (2WK)\",\n        \"course_abbrev\": \"IMED 323A\"\n    },\n    {\n        \"courseID\": \"63\",\n        \"course_name\": \"EL Internal Medicine Pulmonary Elective (YNHH &amp; VAMC) (4WK)\",\n        \"course_abbrev\": \"IMED 323B\"\n    },\n    {\n        \"courseID\": \"64\",\n        \"course_name\": \"EL Internal Medicine Rheumatology Elective (2WK)\",\n        \"course_abbrev\": \"IMED 211\"\n    },\n    {\n        \"courseID\": \"65\",\n        \"course_name\": \"EL Internal Medicine Rheumatology Elective (4WK)\",\n        \"course_abbrev\": \"IMED 325\"\n    },\n    {\n        \"courseID\": \"66\",\n        \"course_name\": \"EL Internal Medicine Spiritual Care in the Hospital Setting Elective (4WK)\",\n        \"course_abbrev\": \"IMED 349\"\n    },\n    {\n        \"courseID\": \"687\",\n        \"course_name\": \"EL Internal Medicine Wards Elective (4WK) AWAY_ARMY\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"77\",\n        \"course_name\": \"EL Laboratory Medicine Clinical Elective (2WK)\",\n        \"course_abbrev\": \"LMED 301\"\n    },\n    {\n        \"courseID\": \"78\",\n        \"course_name\": \"EL Laboratory Medicine Clinical Elective (4WK)\",\n        \"course_abbrev\": \"LMED 300\"\n    },\n    {\n        \"courseID\": \"704\",\n        \"course_name\": \"EL Musculoskeletal Radiology Elective (2wk)\",\n        \"course_abbrev\": \"DIAG\"\n    },\n    {\n        \"courseID\": \"649\",\n        \"course_name\": \"EL Musculoskeletal Radiology Elective (2WK) AWAY Mt Sinai\",\n        \"course_abbrev\": \"DIAG\"\n    },\n    {\n        \"courseID\": \"436\",\n        \"course_name\": \"EL Neurology Clinical Elective (Tailored) (2wk)\",\n        \"course_abbrev\": \"NEUR 202\"\n    },\n    {\n        \"courseID\": \"80\",\n        \"course_name\": \"EL Neurology Consult Service Elective (4WK)\",\n        \"course_abbrev\": \"NEUR 201\"\n    },\n    {\n        \"courseID\": \"79\",\n        \"course_name\": \"EL Neurology Ward Service Elective (4WK)\",\n        \"course_abbrev\": \"NEUR 200\"\n    },\n    {\n        \"courseID\": \"84\",\n        \"course_name\": \"EL Obstetrics &amp; Gynecology Elective (Gallup Indian Medical Center, NM) (4WK)\",\n        \"course_abbrev\": \"OBGY 204\"\n    },\n    {\n        \"courseID\": \"243\",\n        \"course_name\": \"EL Obstetrics &amp; Gynecology Family Planning Elective (2WK)\",\n        \"course_abbrev\": \"OBGY 261\"\n    },\n    {\n        \"courseID\": \"90\",\n        \"course_name\": \"EL Obstetrics &amp; Gynecology Family Planning Elective (4WK)\",\n        \"course_abbrev\": \"OBGY 260\"\n    },\n    {\n        \"courseID\": \"237\",\n        \"course_name\": \"EL Obstetrics &amp; Gynecology Outpatient Elective (2WK)\",\n        \"course_abbrev\": \"OBGY 111\"\n    },\n    {\n        \"courseID\": \"238\",\n        \"course_name\": \"EL Obstetrics &amp; Gynecology Outpatient Elective (4WK)\",\n        \"course_abbrev\": \"OBGYN 112\"\n    },\n    {\n        \"courseID\": \"91\",\n        \"course_name\": \"EL Ophthalmology &amp; Visual Science Clinical Elective (2WK)\",\n        \"course_abbrev\": \"OPHT 300\"\n    },\n    {\n        \"courseID\": \"92\",\n        \"course_name\": \"EL Ophthalmology &amp; Visual Science Clinical Elective (4WK)\",\n        \"course_abbrev\": \"OPHT 302\"\n    },\n    {\n        \"courseID\": \"724\",\n        \"course_name\": \"EL Ophthalmology Elective (2 WK) AWAY CORNELL\",\n        \"course_abbrev\": \"OPHT\"\n    },\n    {\n        \"courseID\": \"728\",\n        \"course_name\": \"EL Ophthalmology Elective (4 WK) AWAY NY Eye &amp; Ear\",\n        \"course_abbrev\": \"OPHT\"\n    },\n    {\n        \"courseID\": \"729\",\n        \"course_name\": \"EL Ophthalmology Elective (4 WK) AWAY U Illinois\",\n        \"course_abbrev\": \"OPHT\"\n    },\n    {\n        \"courseID\": \"727\",\n        \"course_name\": \"EL Ophthalmology Elective (4 WK) AWAY U Miami\",\n        \"course_abbrev\": \"OPHT\"\n    },\n    {\n        \"courseID\": \"613\",\n        \"course_name\": \"EL Ophthalmology Elective (4wk) AWAY Harvard\",\n        \"course_abbrev\": \"OPTH\"\n    },\n    {\n        \"courseID\": \"614\",\n        \"course_name\": \"EL Ophthalmology Elective (4wk) AWAY Willis Eye Hosp.\",\n        \"course_abbrev\": \"OPTH\"\n    },\n    {\n        \"courseID\": \"173\",\n        \"course_name\": \"EL Ophthalmology Elective AWAY (2WK) U Toronto\",\n        \"course_abbrev\": \"OPHT AW2\"\n    },\n    {\n        \"courseID\": \"451\",\n        \"course_name\": \"EL Pathology Anatomic Pathology &amp; Laboratory Medicine Combined Elective (4wk)\",\n        \"course_abbrev\": \"PATH 300\"\n    },\n    {\n        \"courseID\": \"94\",\n        \"course_name\": \"EL Pathology Anatomic Pathology Elective (2WK)\",\n        \"course_abbrev\": \"PATH 301\"\n    },\n    {\n        \"courseID\": \"95\",\n        \"course_name\": \"EL Pathology Anatomic Pathology Elective (4WK)\",\n        \"course_abbrev\": \"PATH 300\"\n    },\n    {\n        \"courseID\": \"341\",\n        \"course_name\": \"EL Pathology Neuropathology Elective (2wk)\",\n        \"course_abbrev\": \"PATH 304\"\n    },\n    {\n        \"courseID\": \"342\",\n        \"course_name\": \"EL Pathology Neuropathology Elective (4wk)\",\n        \"course_abbrev\": \"PATH 303\"\n    },\n    {\n        \"courseID\": \"99\",\n        \"course_name\": \"EL Pediatrics Cardiology Elective (4WK)\",\n        \"course_abbrev\": \"PEDS 302\"\n    },\n    {\n        \"courseID\": \"100\",\n        \"course_name\": \"EL Pediatrics Critical Care Medicine Elective (PICU) (4WK)\",\n        \"course_abbrev\": \"PEDS 314\"\n    },\n    {\n        \"courseID\": \"28\",\n        \"course_name\": \"EL Pediatrics Emergency Medicine Elective (4 wk)\",\n        \"course_abbrev\": \"PEDS 303\"\n    },\n    {\n        \"courseID\": \"736\",\n        \"course_name\": \"EL Pediatrics Emergency Medicine Elective Longitudinal\",\n        \"course_abbrev\": \"PEDS 303\"\n    },\n    {\n        \"courseID\": \"101\",\n        \"course_name\": \"EL Pediatrics Endocrinology &amp; Diabetes Elective (4WK)\",\n        \"course_abbrev\": \"PEDS 312\"\n    },\n    {\n        \"courseID\": \"102\",\n        \"course_name\": \"EL Pediatrics Hematology/Oncology Elective (2WK)\",\n        \"course_abbrev\": \"PEDS 304\"\n    },\n    {\n        \"courseID\": \"103\",\n        \"course_name\": \"EL Pediatrics Hematology/Oncology Elective (4WK)\",\n        \"course_abbrev\": \"PEDS 305\"\n    },\n    {\n        \"courseID\": \"104\",\n        \"course_name\": \"EL Pediatrics Infectious Disease Elective (4WK)\",\n        \"course_abbrev\": \"PEDS 306\"\n    },\n    {\n        \"courseID\": \"105\",\n        \"course_name\": \"EL Pediatrics Neonatal-Perinatal Medicine Elective (NNICU) (4WK)\",\n        \"course_abbrev\": \"PEDS 307\"\n    },\n    {\n        \"courseID\": \"106\",\n        \"course_name\": \"EL Pediatrics Respiratory Pulmonary Elective (2WK)\",\n        \"course_abbrev\": \"PEDS 311\"\n    },\n    {\n        \"courseID\": \"107\",\n        \"course_name\": \"EL Pediatrics Respiratory Pulmonary Elective (4WK)\",\n        \"course_abbrev\": \"PEDS 308\"\n    },\n    {\n        \"courseID\": \"108\",\n        \"course_name\": \"EL Psychiatry Adolescent Elective (4WK)\",\n        \"course_abbrev\": \"PSYC 234\"\n    },\n    {\n        \"courseID\": \"111\",\n        \"course_name\": \"EL Psychiatry Early Psychosis Elective (STEP Clinic) (4WK)\",\n        \"course_abbrev\": \"PSYC 238\"\n    },\n    {\n        \"courseID\": \"112\",\n        \"course_name\": \"EL Psychiatry Inpatient Elective (CMHC) (4WK)\",\n        \"course_abbrev\": \"PSYC 203\"\n    },\n    {\n        \"courseID\": \"113\",\n        \"course_name\": \"EL Psychiatry Inpatient Elective (YNHH/YPH) (4WK)\",\n        \"course_abbrev\": \"PSYC 210\"\n    },\n    {\n        \"courseID\": \"834\",\n        \"course_name\": \"EL Psychiatry Inpatient Elective (YNHH/YPH) (4WK) - Downtown Hospital\",\n        \"course_abbrev\": \"PSYC 210-DH\"\n    },\n    {\n        \"courseID\": \"115\",\n        \"course_name\": \"EL Psychiatry Law and Psychiatry Elective (4WK)\",\n        \"course_abbrev\": \"PSYC 206\"\n    },\n    {\n        \"courseID\": \"663\",\n        \"course_name\": \"EL Psychiatry Mood Disorders and Neuromodulation Elective (ECT and TMS)\",\n        \"course_abbrev\": \"PSYC 212\"\n    },\n    {\n        \"courseID\": \"116\",\n        \"course_name\": \"EL Psychiatry Substance Abuse Elective (4WK)\",\n        \"course_abbrev\": \"PSYC 209\"\n    },\n    {\n        \"courseID\": \"432\",\n        \"course_name\": \"EL Psychiatry Tailored Elective\",\n        \"course_abbrev\": \"PSYC Tailored\"\n    },\n    {\n        \"courseID\": \"119\",\n        \"course_name\": \"EL Surgery Burn Surgery Elective (Bridgeport Hospital) (4WK)\",\n        \"course_abbrev\": \"SURG 208\"\n    },\n    {\n        \"courseID\": \"121\",\n        \"course_name\": \"EL Surgery Cardiac Transplantation/Cardiac Assist Device Elective (4WK)\",\n        \"course_abbrev\": \"SURG 218\"\n    },\n    {\n        \"courseID\": \"122\",\n        \"course_name\": \"EL Surgery Congenital Heart Surgery Elective (4WK)\",\n        \"course_abbrev\": \"SURG 209\"\n    },\n    {\n        \"courseID\": \"393\",\n        \"course_name\": \"EL Surgery Elective ZAMBIA\",\n        \"course_abbrev\": \"SUR AW2\"\n    },\n    {\n        \"courseID\": \"71\",\n        \"course_name\": \"EL Surgery General Surgery Elective  (YNHH/SRC) (4WK)\",\n        \"course_abbrev\": \"SURG 204\"\n    },\n    {\n        \"courseID\": \"126\",\n        \"course_name\": \"EL Surgery Otolaryngology Elective (2WK)\",\n        \"course_abbrev\": \"OTOL 203\"\n    },\n    {\n        \"courseID\": \"130\",\n        \"course_name\": \"EL Surgery Surgical Critical Care Elective (YNHH)  (4WK)\",\n        \"course_abbrev\": \"SURG 205\"\n    },\n    {\n        \"courseID\": \"619\",\n        \"course_name\": \"EL Surgery Urology Elective (2WK) AWAY Stanford\",\n        \"course_abbrev\": \"SUR AW2\"\n    },\n    {\n        \"courseID\": \"250\",\n        \"course_name\": \"EL Teaching and Learning Center Medical Education Elective (2WK)\",\n        \"course_abbrev\": \"Med ED Elec\"\n    },\n    {\n        \"courseID\": \"135\",\n        \"course_name\": \"EL Therapeutic Radiology Radiation Oncology Elective (4WK)\",\n        \"course_abbrev\": \"THER 300\"\n    },\n    {\n        \"courseID\": \"1067\",\n        \"course_name\": \"Elder Care\",\n        \"course_abbrev\": \"ECM\"\n    },\n    {\n        \"courseID\": \"1068\",\n        \"course_name\": \"Elder Dementia\",\n        \"course_abbrev\": \"EDM\"\n    },\n    {\n        \"courseID\": \"1070\",\n        \"course_name\": \"Elder Dementia\",\n        \"course_abbrev\": \"EDM\"\n    },\n    {\n        \"courseID\": \"236\",\n        \"course_name\": \"Elective: Integrated Clinical Medicine\",\n        \"course_abbrev\": \"ICM\"\n    },\n    {\n        \"courseID\": \"915\",\n        \"course_name\": \"Endocrinology 500\",\n        \"course_abbrev\": \"Endo 500\"\n    },\n    {\n        \"courseID\": \"904\",\n        \"course_name\": \"Endocrinology 500\",\n        \"course_abbrev\": \"Endo 500\"\n    },\n    {\n        \"courseID\": \"212\",\n        \"course_name\": \"Enrolled in a Dual Degree Program at another institution\",\n        \"course_abbrev\": \"DUALDGAWAY\"\n    },\n    {\n        \"courseID\": \"215\",\n        \"course_name\": \"Enrolled in a Joint Degree Program at Yale\",\n        \"course_abbrev\": \"JOINTDGYALE\"\n    },\n    {\n        \"courseID\": \"1134\",\n        \"course_name\": \"Example New Course\",\n        \"course_abbrev\": \"ExampleNC\"\n    },\n    {\n        \"courseID\": \"1128\",\n        \"course_name\": \"Extra Long Course\",\n        \"course_abbrev\": \"ELC\"\n    },\n    {\n        \"courseID\": \"958\",\n        \"course_name\": \"Final Form Test\",\n        \"course_abbrev\": \"FinalTEST\"\n    },\n    {\n        \"courseID\": \"959\",\n        \"course_name\": \"Final Form Test - Ann Arbor\",\n        \"course_abbrev\": \"FinalTEST-AA\"\n    },\n    {\n        \"courseID\": \"960\",\n        \"course_name\": \"Final Form Test - Dearborn\",\n        \"course_abbrev\": \"FinalTEST-DRBN\"\n    },\n    {\n        \"courseID\": \"1065\",\n        \"course_name\": \"Geriatrics\",\n        \"course_abbrev\": \"GER\"\n    },\n    {\n        \"courseID\": \"1117\",\n        \"course_name\": \"Grade Test Course\",\n        \"course_abbrev\": \"Grade Test Course\"\n    },\n    {\n        \"courseID\": \"749\",\n        \"course_name\": \"Gross Anatomy\",\n        \"course_abbrev\": \"Anatomy\"\n    },\n    {\n        \"courseID\": \"900\",\n        \"course_name\": \"Heidi 101 - Nelson\",\n        \"course_abbrev\": \"Heidi 101-Nel\"\n    },\n    {\n        \"courseID\": \"901\",\n        \"course_name\": \"Heidi Course\",\n        \"course_abbrev\": \"HC\"\n    },\n    {\n        \"courseID\": \"902\",\n        \"course_name\": \"Heidi Course - Nelson\",\n        \"course_abbrev\": \"HC-Nel\"\n    },\n    {\n        \"courseID\": \"1076\",\n        \"course_name\": \"House 1\",\n        \"course_abbrev\": \"H01\"\n    },\n    {\n        \"courseID\": \"1071\",\n        \"course_name\": \"House 1\",\n        \"course_abbrev\": \"H1\"\n    },\n    {\n        \"courseID\": \"1077\",\n        \"course_name\": \"House 2\",\n        \"course_abbrev\": \"H02\"\n    },\n    {\n        \"courseID\": \"1072\",\n        \"course_name\": \"House 2\",\n        \"course_abbrev\": \"H2\"\n    },\n    {\n        \"courseID\": \"1073\",\n        \"course_name\": \"House 3\",\n        \"course_abbrev\": \"H3\"\n    },\n    {\n        \"courseID\": \"1078\",\n        \"course_name\": \"House 3\",\n        \"course_abbrev\": \"H03\"\n    },\n    {\n        \"courseID\": \"1079\",\n        \"course_name\": \"House 4\",\n        \"course_abbrev\": \"H04\"\n    },\n    {\n        \"courseID\": \"1074\",\n        \"course_name\": \"House 4\",\n        \"course_abbrev\": \"H4\"\n    },\n    {\n        \"courseID\": \"752\",\n        \"course_name\": \"IM-1000-Site A\",\n        \"course_abbrev\": \"IM-1000-A\"\n    },\n    {\n        \"courseID\": \"888\",\n        \"course_name\": \"IM800\",\n        \"course_abbrev\": \"IM800\"\n    },\n    {\n        \"courseID\": \"889\",\n        \"course_name\": \"IM800 - 100 Church Street So.\",\n        \"course_abbrev\": \"IM800-100 Churc\"\n    },\n    {\n        \"courseID\": \"890\",\n        \"course_name\": \"IM800 - 6 Million Dollar Man Medical Rehabilitation Center\",\n        \"course_abbrev\": \"IM800-6M\"\n    },\n    {\n        \"courseID\": \"891\",\n        \"course_name\": \"IM800 - Ann Arbor\",\n        \"course_abbrev\": \"IM800-AA\"\n    },\n    {\n        \"courseID\": \"892\",\n        \"course_name\": \"IM850\",\n        \"course_abbrev\": \"IM850\"\n    },\n    {\n        \"courseID\": \"799\",\n        \"course_name\": \"Immunology\",\n        \"course_abbrev\": \"Imm\"\n    },\n    {\n        \"courseID\": \"839\",\n        \"course_name\": \"Internal Medicine (BB)\",\n        \"course_abbrev\": \"IMBB\"\n    },\n    {\n        \"courseID\": \"828\",\n        \"course_name\": \"Internal Medicine Clerkship 3000 (CB)\",\n        \"course_abbrev\": \"IMCB\"\n    },\n    {\n        \"courseID\": \"830\",\n        \"course_name\": \"Internal Medicine Clerkship 3000 (CB) - Downtown Hospital\",\n        \"course_abbrev\": \"IMCB-DH\"\n    },\n    {\n        \"courseID\": \"829\",\n        \"course_name\": \"Internal Medicine Clerkship 3000 (CB) - Westchester General Hospital\",\n        \"course_abbrev\": \"IMCB-WEST\"\n    },\n    {\n        \"courseID\": \"747\",\n        \"course_name\": \"Internal Medicine Kay Course\",\n        \"course_abbrev\": \"IMKC\"\n    },\n    {\n        \"courseID\": \"216\",\n        \"course_name\": \"Interviewing\",\n        \"course_abbrev\": \"INTERVIEW\"\n    },\n    {\n        \"courseID\": \"710\",\n        \"course_name\": \"Interviewing (12 WK)\",\n        \"course_abbrev\": \"INT\"\n    },\n    {\n        \"courseID\": \"713\",\n        \"course_name\": \"Interviewing (2WK)\",\n        \"course_abbrev\": \"INT\"\n    },\n    {\n        \"courseID\": \"712\",\n        \"course_name\": \"Interviewing (4 WK)\",\n        \"course_abbrev\": \"INT\"\n    },\n    {\n        \"courseID\": \"228\",\n        \"course_name\": \"Interviewing (4WK)\",\n        \"course_abbrev\": \"INTERVIEW 4WK\"\n    },\n    {\n        \"courseID\": \"711\",\n        \"course_name\": \"Interviewing (6 WK)\",\n        \"course_abbrev\": \"INT\"\n    },\n    {\n        \"courseID\": \"840\",\n        \"course_name\": \"INTM 3001: INTERNAL MEDICINE CLERKSHIP\",\n        \"course_abbrev\": \"INT3001\"\n    },\n    {\n        \"courseID\": \"842\",\n        \"course_name\": \"INTM 3001: INTERNAL MEDICINE CLERKSHIP - Ann Arbor\",\n        \"course_abbrev\": \"INT3001-AA\"\n    },\n    {\n        \"courseID\": \"841\",\n        \"course_name\": \"INTM 3001: INTERNAL MEDICINE CLERKSHIP - Detroit\",\n        \"course_abbrev\": \"INT3001-DET\"\n    },\n    {\n        \"courseID\": \"844\",\n        \"course_name\": \"INTM 3001: INTERNAL MEDICINE CLERKSHIP - Flint\",\n        \"course_abbrev\": \"INT3001-FLT\"\n    },\n    {\n        \"courseID\": \"843\",\n        \"course_name\": \"INTM 3001: INTERNAL MEDICINE CLERKSHIP - Grand Rapids\",\n        \"course_abbrev\": \"INT3001-GR\"\n    },\n    {\n        \"courseID\": \"781\",\n        \"course_name\": \"IT D Course\",\n        \"course_abbrev\": \"ITD\"\n    },\n    {\n        \"courseID\": \"760\",\n        \"course_name\": \"IT:D Course\",\n        \"course_abbrev\": \"ITD\"\n    },\n    {\n        \"courseID\": \"1000\",\n        \"course_name\": \"JAJ's TEST 2018 - Ann Arbor\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"999\",\n        \"course_name\": \"JAJ's TEST 2018 - Ann Arbor (2)\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"998\",\n        \"course_name\": \"JAJ's TEST 2018 - Beard\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"997\",\n        \"course_name\": \"JAJ's TEST 2018 - Dearborn\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"996\",\n        \"course_name\": \"JAJ's TEST 2018 - Detroit\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"995\",\n        \"course_name\": \"JAJ's TEST 2018 - Downtown Hospital\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"994\",\n        \"course_name\": \"JAJ's TEST 2018 - East Campus\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"993\",\n        \"course_name\": \"JAJ's TEST 2018 - East Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"992\",\n        \"course_name\": \"JAJ's TEST 2018 - Eye Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"991\",\n        \"course_name\": \"JAJ's TEST 2018 - Family Planning Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"990\",\n        \"course_name\": \"JAJ's TEST 2018 - Flint\",\n        \"course_abbrev\": \"JAJ's TEST 2018 - Flint xxxxxxxxxxxxxxxxx\"\n    },\n    {\n        \"courseID\": \"989\",\n        \"course_name\": \"JAJ's TEST 2018 - Gerace\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"988\",\n        \"course_name\": \"JAJ's TEST 2018 - Grand Rapids\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"987\",\n        \"course_name\": \"JAJ's TEST 2018 - Main Street Hospital\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"986\",\n        \"course_name\": \"JAJ's TEST 2018 - Memorial Hospital\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"985\",\n        \"course_name\": \"JAJ's TEST 2018 - NE Campus\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"984\",\n        \"course_name\": \"JAJ's TEST 2018 - NE Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"983\",\n        \"course_name\": \"JAJ's TEST 2018 - Nelson\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"1001\",\n        \"course_name\": \"JAJ's TEST 2018 - North Campus\",\n        \"course_abbrev\": \"JAJ's TEST 201-North Campus\"\n    },\n    {\n        \"courseID\": \"982\",\n        \"course_name\": \"JAJ's TEST 2018 - North Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"981\",\n        \"course_name\": \"JAJ's TEST 2018 - NW Campus\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"980\",\n        \"course_name\": \"JAJ's TEST 2018 - NW Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"979\",\n        \"course_name\": \"JAJ's TEST 2018 - Phoenix\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"1002\",\n        \"course_name\": \"JAJ's TEST 2018 - San Diego\",\n        \"course_abbrev\": \"JAJ's TEST 201-SD\"\n    },\n    {\n        \"courseID\": \"977\",\n        \"course_name\": \"JAJ's TEST 2018 - SE Campus\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"976\",\n        \"course_name\": \"JAJ's TEST 2018 - SE Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"978\",\n        \"course_name\": \"JAJ's TEST 2018 - Selma-Donley\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"975\",\n        \"course_name\": \"JAJ's TEST 2018 - Site Test\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"1003\",\n        \"course_name\": \"JAJ's TEST 2018 - South Campus\",\n        \"course_abbrev\": \"JAJ's TEST 201-South Campus\"\n    },\n    {\n        \"courseID\": \"974\",\n        \"course_name\": \"JAJ's TEST 2018 - South Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"973\",\n        \"course_name\": \"JAJ's TEST 2018 - Strang\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"972\",\n        \"course_name\": \"JAJ's TEST 2018 - Sunny Side Family Practice\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"971\",\n        \"course_name\": \"JAJ's TEST 2018 - SW Campus\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"970\",\n        \"course_name\": \"JAJ's TEST 2018 - SW Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"969\",\n        \"course_name\": \"JAJ's TEST 2018 - Test for Site ALerts\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"968\",\n        \"course_name\": \"JAJ's TEST 2018 - test one\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"967\",\n        \"course_name\": \"JAJ's TEST 2018 - Test456\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"966\",\n        \"course_name\": \"JAJ's TEST 2018 - University 222\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"965\",\n        \"course_name\": \"JAJ's TEST 2018 - Warren\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"1004\",\n        \"course_name\": \"JAJ's TEST 2018 - West Campus\",\n        \"course_abbrev\": \"JAJ's TEST 201-West Campus\"\n    },\n    {\n        \"courseID\": \"964\",\n        \"course_name\": \"JAJ's TEST 2018 - West Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"963\",\n        \"course_name\": \"JAJ's TEST 2018 - West Medical Group\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"962\",\n        \"course_name\": \"JAJ's TEST 2018 - Westchester General Hospital\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"961\",\n        \"course_name\": \"JAJ's TEST 2018\",\n        \"course_abbrev\": \"JAJ's TEST 201\"\n    },\n    {\n        \"courseID\": \"798\",\n        \"course_name\": \"Janice Test\",\n        \"course_abbrev\": \"JDTest\"\n    },\n    {\n        \"courseID\": \"929\",\n        \"course_name\": \"Janice Test - Detroit\",\n        \"course_abbrev\": \"Janice Test-DET\"\n    },\n    {\n        \"courseID\": \"927\",\n        \"course_name\": \"Janice Test - Flint\",\n        \"course_abbrev\": \"Janice Test-FLT\"\n    },\n    {\n        \"courseID\": \"928\",\n        \"course_name\": \"Janice Test - Grand Rapids\",\n        \"course_abbrev\": \"Janice Test-GR\"\n    },\n    {\n        \"courseID\": \"762\",\n        \"course_name\": \"Janice TestX\",\n        \"course_abbrev\": \"Janice Test\"\n    },\n    {\n        \"courseID\": \"836\",\n        \"course_name\": \"Jen - ANES\",\n        \"course_abbrev\": \"Jen - ANES\"\n    },\n    {\n        \"courseID\": \"835\",\n        \"course_name\": \"Jen - IM\",\n        \"course_abbrev\": \"Jen - IM\"\n    },\n    {\n        \"courseID\": \"838\",\n        \"course_name\": \"Jen - OB/GYN\",\n        \"course_abbrev\": \"Jen - OB/GYN\"\n    },\n    {\n        \"courseID\": \"837\",\n        \"course_name\": \"Jen - PEDS\",\n        \"course_abbrev\": \"Jen - PEDS\"\n    },\n    {\n        \"courseID\": \"851\",\n        \"course_name\": \"Jen Test\",\n        \"course_abbrev\": \"Jen Test\"\n    },\n    {\n        \"courseID\": \"852\",\n        \"course_name\": \"Jen Test - Downtown Hospital\",\n        \"course_abbrev\": \"Jen Test-DH\"\n    },\n    {\n        \"courseID\": \"853\",\n        \"course_name\": \"Jen Test - Family Planning Clinic\",\n        \"course_abbrev\": \"Jen Test-FPC\"\n    },\n    {\n        \"courseID\": \"856\",\n        \"course_name\": \"Jen Test 3\",\n        \"course_abbrev\": \"Jen Test 3\"\n    },\n    {\n        \"courseID\": \"857\",\n        \"course_name\": \"Jen Test 3 - Ann Arbor\",\n        \"course_abbrev\": \"Jen Test 3-AA\"\n    },\n    {\n        \"courseID\": \"858\",\n        \"course_name\": \"Jen Test 3 - San Diego\",\n        \"course_abbrev\": \"Jen Test 3-SD\"\n    },\n    {\n        \"courseID\": \"846\",\n        \"course_name\": \"Jen's Test2\",\n        \"course_abbrev\": \"JT2\"\n    },\n    {\n        \"courseID\": \"854\",\n        \"course_name\": \"Jen's Test2 - Ann Arbor\",\n        \"course_abbrev\": \"JT2-AA\"\n    },\n    {\n        \"courseID\": \"855\",\n        \"course_name\": \"Jen's Test2 - Detroit\",\n        \"course_abbrev\": \"JT2-DET\"\n    },\n    {\n        \"courseID\": \"847\",\n        \"course_name\": \"Jen's Test3\",\n        \"course_abbrev\": \"JT3\"\n    },\n    {\n        \"courseID\": \"1122\",\n        \"course_name\": \"Jennifer Import Test1\",\n        \"course_abbrev\": \"ImportTest1\"\n    },\n    {\n        \"courseID\": \"1123\",\n        \"course_name\": \"Jennifer Import Test2\",\n        \"course_abbrev\": \"ImportTest2\"\n    },\n    {\n        \"courseID\": \"938\",\n        \"course_name\": \"Jennifer TestX\",\n        \"course_abbrev\": \"JTest\"\n    },\n    {\n        \"courseID\": \"911\",\n        \"course_name\": \"Jenny Clerkship\",\n        \"course_abbrev\": \"Jen\"\n    },\n    {\n        \"courseID\": \"912\",\n        \"course_name\": \"Jenny Clerkship - Strang\",\n        \"course_abbrev\": \"Jen-ST\"\n    },\n    {\n        \"courseID\": \"765\",\n        \"course_name\": \"Jenny's Course\",\n        \"course_abbrev\": \"JC\"\n    },\n    {\n        \"courseID\": \"932\",\n        \"course_name\": \"JJ's Test Course\",\n        \"course_abbrev\": \"JJTC\"\n    },\n    {\n        \"courseID\": \"926\",\n        \"course_name\": \"JJTEST500\",\n        \"course_abbrev\": \"JJTEST500Abbrev\"\n    },\n    {\n        \"courseID\": \"870\",\n        \"course_name\": \"JJunker's TEST COURSE\",\n        \"course_abbrev\": \"JJUNKER\"\n    },\n    {\n        \"courseID\": \"871\",\n        \"course_name\": \"JJunker's TEST COURSE - Ann Arbor\",\n        \"course_abbrev\": \"JJUNKER-AA\"\n    },\n    {\n        \"courseID\": \"872\",\n        \"course_name\": \"JJunker's TEST COURSE - Detroit\",\n        \"course_abbrev\": \"JJUNKER-DET\"\n    },\n    {\n        \"courseID\": \"365\",\n        \"course_name\": \"Joint Degree Program (2WK)\",\n        \"course_abbrev\": \"EJDP\"\n    },\n    {\n        \"courseID\": \"364\",\n        \"course_name\": \"Joint Degree Program (4WK)\",\n        \"course_abbrev\": \"EJDP\"\n    },\n    {\n        \"courseID\": \"848\",\n        \"course_name\": \"JTest - IM Course 300\",\n        \"course_abbrev\": \"JT Course 300\"\n    },\n    {\n        \"courseID\": \"849\",\n        \"course_name\": \"JTest - IM Course 300 - Ann Arbor\",\n        \"course_abbrev\": \"JT Course 300-A\"\n    },\n    {\n        \"courseID\": \"850\",\n        \"course_name\": \"JTest - IM Course 300 - Detroit\",\n        \"course_abbrev\": \"JT Course 300-D\"\n    },\n    {\n        \"courseID\": \"943\",\n        \"course_name\": \"JTestJ-IM\",\n        \"course_abbrev\": \"JTestJ-IM\"\n    },\n    {\n        \"courseID\": \"1129\",\n        \"course_name\": \"LIC\",\n        \"course_abbrev\": \"LIC\"\n    },\n    {\n        \"courseID\": \"1130\",\n        \"course_name\": \"LIC - OB/GYN\",\n        \"course_abbrev\": \"LIC-OB/GYN\"\n    },\n    {\n        \"courseID\": \"1131\",\n        \"course_name\": \"LIC - PEDS\",\n        \"course_abbrev\": \"LIC-PEDS\"\n    },\n    {\n        \"courseID\": \"1132\",\n        \"course_name\": \"LIC A\",\n        \"course_abbrev\": \"LIC A\"\n    },\n    {\n        \"courseID\": \"1133\",\n        \"course_name\": \"LIC B\",\n        \"course_abbrev\": \"LIC B\"\n    },\n    {\n        \"courseID\": \"744\",\n        \"course_name\": \"Longitudinal Course\",\n        \"course_abbrev\": \"LC\"\n    },\n    {\n        \"courseID\": \"897\",\n        \"course_name\": \"MD 300\",\n        \"course_abbrev\": \"MD 300\"\n    },\n    {\n        \"courseID\": \"903\",\n        \"course_name\": \"Med 500\",\n        \"course_abbrev\": \"Med 500\"\n    },\n    {\n        \"courseID\": \"1075\",\n        \"course_name\": \"MED456-BH Adult Cardiovascular Medicine\",\n        \"course_abbrev\": \"MED456-BH\"\n    },\n    {\n        \"courseID\": \"867\",\n        \"course_name\": \"MedSurg Block\",\n        \"course_abbrev\": \"MSB\"\n    },\n    {\n        \"courseID\": \"925\",\n        \"course_name\": \"MikeL test\",\n        \"course_abbrev\": \"ML test\"\n    },\n    {\n        \"courseID\": \"738\",\n        \"course_name\": \"MK SOM Course\",\n        \"course_abbrev\": \"MK S C\"\n    },\n    {\n        \"courseID\": \"869\",\n        \"course_name\": \"MSK\",\n        \"course_abbrev\": \"MSK\"\n    },\n    {\n        \"courseID\": \"761\",\n        \"course_name\": \"New Course\",\n        \"course_abbrev\": \"NC\"\n    },\n    {\n        \"courseID\": \"740\",\n        \"course_name\": \"Ob/Gyn Kareem\",\n        \"course_abbrev\": \"Kareem\"\n    },\n    {\n        \"courseID\": \"739\",\n        \"course_name\": \"Ob/Gyn REI\",\n        \"course_abbrev\": \"REI\"\n    },\n    {\n        \"courseID\": \"863\",\n        \"course_name\": \"OHSU TEST\",\n        \"course_abbrev\": \"OHSU\"\n    },\n    {\n        \"courseID\": \"620\",\n        \"course_name\": \"OIMSE Anesthesiology Elective Away (4WK) China\",\n        \"course_abbrev\": \"ANES Away\"\n    },\n    {\n        \"courseID\": \"468\",\n        \"course_name\": \"OIMSE Cardiology Elective AWAY (4WK) Changsha, China\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"443\",\n        \"course_name\": \"OIMSE Cardiology Elective AWAY (4WK), Changsha, China\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"456\",\n        \"course_name\": \"OIMSE Dermatology Elective Away (4WK) UBA\",\n        \"course_abbrev\": \"SURG AW4\"\n    },\n    {\n        \"courseID\": \"627\",\n        \"course_name\": \"OIMSE Emergency Medicine Elective AWAY (4WK) Argentina\",\n        \"course_abbrev\": \"EMER\"\n    },\n    {\n        \"courseID\": \"343\",\n        \"course_name\": \"OIMSE Emergency Medicine Elective AWAY (4WK) AUSTRIA\",\n        \"course_abbrev\": \"EMER 4WA\"\n    },\n    {\n        \"courseID\": \"628\",\n        \"course_name\": \"OIMSE Emergency Medicine Elective AWAY (4WK) Chile\",\n        \"course_abbrev\": \"EMER\"\n    },\n    {\n        \"courseID\": \"151\",\n        \"course_name\": \"OIMSE Emergency Medicine Elective AWAY (4WK) Peru\",\n        \"course_abbrev\": \"EMER AW4\"\n    },\n    {\n        \"courseID\": \"637\",\n        \"course_name\": \"OIMSE Family Medicine Elective AWAY (4WK) Indonesia\",\n        \"course_abbrev\": \"FMED\"\n    },\n    {\n        \"courseID\": \"670\",\n        \"course_name\": \"OIMSE General Medicine Elective Away (4WK) Argentina\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"669\",\n        \"course_name\": \"OIMSE General Medicine Elective Away (4WK) China\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"479\",\n        \"course_name\": \"OIMSE General Surgery Elective Away (2WK) Jamacia\",\n        \"course_abbrev\": \"SUR AW2\"\n    },\n    {\n        \"courseID\": \"457\",\n        \"course_name\": \"OIMSE General Surgery Elective Away (4WK) Changsha, China\",\n        \"course_abbrev\": \"SURG AW4\"\n    },\n    {\n        \"courseID\": \"459\",\n        \"course_name\": \"OIMSE General Surgery Elective Away (4WK) Changsha, China\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"458\",\n        \"course_name\": \"OIMSE General Surgery Elective Away (4WK) Changsha, China\",\n        \"course_abbrev\": \"SURG AW4\"\n    },\n    {\n        \"courseID\": \"440\",\n        \"course_name\": \"OIMSE General Surgery Elective Away (4WK) Jamacia\",\n        \"course_abbrev\": \"SURG AW4\"\n    },\n    {\n        \"courseID\": \"465\",\n        \"course_name\": \"OIMSE Hematology/Oncology Elective AWAY (AW4)Changsha, China\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"431\",\n        \"course_name\": \"OIMSE Infectious Disease Elective (6WK)\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"461\",\n        \"course_name\": \"OIMSE Infectious Disease Elective (6WK) Tugela Ferry\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"605\",\n        \"course_name\": \"OIMSE Infectious Disease Elective (6WK) Tugela Ferry\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"604\",\n        \"course_name\": \"OIMSE Infectious Disease Elective (6WK) Tugela Ferry\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"447\",\n        \"course_name\": \"OIMSE Infectious Disease Elective (6WK) Uganda\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"308\",\n        \"course_name\": \"OIMSE Infectious Disease Elective AWAY (6WK) CORDOBA\",\n        \"course_abbrev\": \"IMED AW6\"\n    },\n    {\n        \"courseID\": \"452\",\n        \"course_name\": \"OIMSE Internal Medicine Elective Away (4WK)\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"268\",\n        \"course_name\": \"OIMSE Internal Medicine Elective Away (4WK) Buenos Aires\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"478\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (4WK) CHINA\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"636\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (4WK) China\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"439\",\n        \"course_name\": \"OIMSE Internal Medicine Elective Away (4WK) CHINA\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"470\",\n        \"course_name\": \"OIMSE Internal Medicine Elective Away (4WK) Cordoba\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"469\",\n        \"course_name\": \"OIMSE Internal Medicine Elective Away (4WK) Cordoba\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"647\",\n        \"course_name\": \"OIMSE Internal Medicine Elective Away (4WK) Dominican Republic\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"460\",\n        \"course_name\": \"OIMSE Internal Medicine Elective Away (4WK) UBA\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"291\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (4WK) UGANDA\",\n        \"course_abbrev\": \"IMED AW6\"\n    },\n    {\n        \"courseID\": \"474\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (6WK) UGANDA\",\n        \"course_abbrev\": \"IMED AW6\"\n    },\n    {\n        \"courseID\": \"316\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4) CHINA\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"632\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4) Columbia\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"607\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4) Mexico\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"608\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4) Mexico\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"317\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4)BOGOTA\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"462\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4)BOGOTA\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"463\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4)BOGOTA\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"464\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4)BOGOTA\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"471\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4)BOGOTA\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"487\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4)Lima\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"445\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW6) BOGOTA\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"448\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW6) Indonesia\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"319\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW6) Tegula Ferry\",\n        \"course_abbrev\": \"IMED AW6\"\n    },\n    {\n        \"courseID\": \"482\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW6) Tegula Ferry\",\n        \"course_abbrev\": \"IMED AW6\"\n    },\n    {\n        \"courseID\": \"466\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW6)Borneo\",\n        \"course_abbrev\": \"IMED AW6\"\n    },\n    {\n        \"courseID\": \"662\",\n        \"course_name\": \"OIMSE Medicine Elective Away (4WK) Dominican Republic\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"648\",\n        \"course_name\": \"OIMSE Medicine Elective Away (6WK) Indonesia\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"309\",\n        \"course_name\": \"OIMSE Nephrology Elective AWAY (4WK) CORDOBA\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"676\",\n        \"course_name\": \"OIMSE Nephrology Elective Away (4WK) Cordoba, Argentina\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"615\",\n        \"course_name\": \"OIMSE Neurosurgery (4WK) CHINA\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"492\",\n        \"course_name\": \"OIMSE Neurosurgery Elective Away (4WK)Peru\",\n        \"course_abbrev\": \"NEUS\"\n    },\n    {\n        \"courseID\": \"441\",\n        \"course_name\": \"OIMSE Obstetrics and Gynecology Elective AWAY (6WK) UGANDA\",\n        \"course_abbrev\": \"OBGY\"\n    },\n    {\n        \"courseID\": \"477\",\n        \"course_name\": \"OIMSE Ophthalmology Elective AWAY (4WK) Peru\",\n        \"course_abbrev\": \"OPHT AW4\"\n    },\n    {\n        \"courseID\": \"314\",\n        \"course_name\": \"OIMSE Ophthalmology Elective AWAY (4WK)CHINA\",\n        \"course_abbrev\": \"OPHT AW4\"\n    },\n    {\n        \"courseID\": \"603\",\n        \"course_name\": \"OIMSE Ophthalmology Elective AWAY (6WK) Mettapracharak Thailand\",\n        \"course_abbrev\": \"OPHT AW6\"\n    },\n    {\n        \"courseID\": \"310\",\n        \"course_name\": \"OIMSE Ophthalmology Elective AWAY (6WK) Thailand\",\n        \"course_abbrev\": \"OPHT AW6\"\n    },\n    {\n        \"courseID\": \"472\",\n        \"course_name\": \"OIMSE Ophthalmology Elective AWAY (6WK) Thailand\",\n        \"course_abbrev\": \"OPHT AW6\"\n    },\n    {\n        \"courseID\": \"473\",\n        \"course_name\": \"OIMSE Ophthalmology Elective AWAY (6WK) Thailand\",\n        \"course_abbrev\": \"OPHT AW6\"\n    },\n    {\n        \"courseID\": \"671\",\n        \"course_name\": \"OIMSE Otolaryngology Elective Away (4WK) Barbados\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"633\",\n        \"course_name\": \"OIMSE Pediatric Elective (4WK) Away Argentina\",\n        \"course_abbrev\": \"Peds\"\n    },\n    {\n        \"courseID\": \"429\",\n        \"course_name\": \"OIMSE Pediatric Neurology Elective Away (4WK)\",\n        \"course_abbrev\": \"NEUS AW4\"\n    },\n    {\n        \"courseID\": \"442\",\n        \"course_name\": \"OIMSE Psychiatry Elective Away (4WK) Barbados\",\n        \"course_abbrev\": \"OTOL AW4\"\n    },\n    {\n        \"courseID\": \"621\",\n        \"course_name\": \"OIMSE Psychiatry Elective Away (4WK) Brazil\",\n        \"course_abbrev\": \"PSYC AW4\"\n    },\n    {\n        \"courseID\": \"634\",\n        \"course_name\": \"OIMSE Psychiatry Elective Away (4WK) Chile\",\n        \"course_abbrev\": \"PSYC AW4\"\n    },\n    {\n        \"courseID\": \"434\",\n        \"course_name\": \"OIMSE Psychiatry Elective Away (4WK) Columbia\",\n        \"course_abbrev\": \"psYC AW4\"\n    },\n    {\n        \"courseID\": \"685\",\n        \"course_name\": \"OIMSE Psychiatry Elective Away (4WK) Peru\",\n        \"course_abbrev\": \"PSYC AW4\"\n    },\n    {\n        \"courseID\": \"480\",\n        \"course_name\": \"OIMSE Psychiatry Elective Away (4WK) UBA\",\n        \"course_abbrev\": \"PSYC AW4\"\n    },\n    {\n        \"courseID\": \"481\",\n        \"course_name\": \"OIMSE Psychiatry Elective Away (4WK) UBA\",\n        \"course_abbrev\": \"PSYC AW4\"\n    },\n    {\n        \"courseID\": \"625\",\n        \"course_name\": \"OIMSE Psychiatry Elective Away (6WK) PERU\",\n        \"course_abbrev\": \"PSYC AW6\"\n    },\n    {\n        \"courseID\": \"337\",\n        \"course_name\": \"OIMSE Psychiatry Elective AWAY (AW4) CHINA\",\n        \"course_abbrev\": \"PSYC AW4\"\n    },\n    {\n        \"courseID\": \"320\",\n        \"course_name\": \"OIMSE Psychiatry Elective AWAY (AW4) LIMA\",\n        \"course_abbrev\": \"PSYC AW6\"\n    },\n    {\n        \"courseID\": \"635\",\n        \"course_name\": \"OIMSE Radiology Elective Away (4WK) Chile\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"318\",\n        \"course_name\": \"OIMSE/BORNEO General Medicine Elective AWAY (AW6)\",\n        \"course_abbrev\": \"IMED AW6\"\n    },\n    {\n        \"courseID\": \"263\",\n        \"course_name\": \"OIMSE/CORDOBA Infectious Desease Elective AWAY (4WK)\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"916\",\n        \"course_name\": \"Pain Medicine Clerkship\",\n        \"course_abbrev\": \"PM\"\n    },\n    {\n        \"courseID\": \"917\",\n        \"course_name\": \"Pain Medicine Clerkship - Ann Arbor\",\n        \"course_abbrev\": \"PM-AA\"\n    },\n    {\n        \"courseID\": \"918\",\n        \"course_name\": \"Pain Medicine Clerkship - Dearborn\",\n        \"course_abbrev\": \"PM-DRBN\"\n    },\n    {\n        \"courseID\": \"919\",\n        \"course_name\": \"Pain Medicine Clerkship - Detroit\",\n        \"course_abbrev\": \"PM-DET\"\n    },\n    {\n        \"courseID\": \"920\",\n        \"course_name\": \"Pain Medicine Clerkship - Flint\",\n        \"course_abbrev\": \"PM-FLT\"\n    },\n    {\n        \"courseID\": \"1124\",\n        \"course_name\": \"Paskell Course\",\n        \"course_abbrev\": \"Paskell\"\n    },\n    {\n        \"courseID\": \"877\",\n        \"course_name\": \"PED 3001 - Pediatrics\",\n        \"course_abbrev\": \"PED3001\"\n    },\n    {\n        \"courseID\": \"878\",\n        \"course_name\": \"PED 3001 - Pediatrics - Ann Arbor\",\n        \"course_abbrev\": \"PED3001-AA\"\n    },\n    {\n        \"courseID\": \"879\",\n        \"course_name\": \"PED 3001 - Pediatrics - Dearborn\",\n        \"course_abbrev\": \"PED3001-DRBN\"\n    },\n    {\n        \"courseID\": \"880\",\n        \"course_name\": \"PED 3001 - Pediatrics - Detroit\",\n        \"course_abbrev\": \"PED3001-DET\"\n    },\n    {\n        \"courseID\": \"881\",\n        \"course_name\": \"PED 3001 - Pediatrics - Flint\",\n        \"course_abbrev\": \"PED3001-FLT\"\n    },\n    {\n        \"courseID\": \"1114\",\n        \"course_name\": \"Pediatrics 504\",\n        \"course_abbrev\": \"Peds 504\"\n    },\n    {\n        \"courseID\": \"1116\",\n        \"course_name\": \"Pediatrics 504 - Main Street Hospital\",\n        \"course_abbrev\": \"Peds 504-MSH\"\n    },\n    {\n        \"courseID\": \"1115\",\n        \"course_name\": \"Pediatrics 504 - Memorial Hospital\",\n        \"course_abbrev\": \"Peds 504-MH\"\n    },\n    {\n        \"courseID\": \"772\",\n        \"course_name\": \"Purposely Overlapped\",\n        \"course_abbrev\": \"PURP\"\n    },\n    {\n        \"courseID\": \"1126\",\n        \"course_name\": \"Radiation Oncology\",\n        \"course_abbrev\": \"RO\"\n    },\n    {\n        \"courseID\": \"859\",\n        \"course_name\": \"Radiology RAD 1101\",\n        \"course_abbrev\": \"RAD 1101\"\n    },\n    {\n        \"courseID\": \"860\",\n        \"course_name\": \"Radiology RAD 1101 - Ann Arbor\",\n        \"course_abbrev\": \"RAD 1101-AA\"\n    },\n    {\n        \"courseID\": \"861\",\n        \"course_name\": \"Radiology RAD 1101 - Dearborn\",\n        \"course_abbrev\": \"RAD 1101-DRBN\"\n    },\n    {\n        \"courseID\": \"862\",\n        \"course_name\": \"Radiology RAD 1101 - Flint\",\n        \"course_abbrev\": \"RAD 1101-FLT\"\n    },\n    {\n        \"courseID\": \"868\",\n        \"course_name\": \"Reading Course\",\n        \"course_abbrev\": \"RC\"\n    },\n    {\n        \"courseID\": \"732\",\n        \"course_name\": \"Research (12 WK)\",\n        \"course_abbrev\": \"**RESEARCH TIME\"\n    },\n    {\n        \"courseID\": \"259\",\n        \"course_name\": \"Research (2 WK)\",\n        \"course_abbrev\": \"RESEARCH TIME\"\n    },\n    {\n        \"courseID\": \"220\",\n        \"course_name\": \"Research Time\",\n        \"course_abbrev\": \"RES (4WK)\"\n    },\n    {\n        \"courseID\": \"213\",\n        \"course_name\": \"Research Time (2WK)\",\n        \"course_abbrev\": \"RES (2WK)\"\n    },\n    {\n        \"courseID\": \"705\",\n        \"course_name\": \"Research Time (4 WK)\",\n        \"course_abbrev\": \"**RESEARCH TIME\"\n    },\n    {\n        \"courseID\": \"706\",\n        \"course_name\": \"Research Time 6 wk\",\n        \"course_abbrev\": \"RESEARCH TIME\"\n    },\n    {\n        \"courseID\": \"882\",\n        \"course_name\": \"Sam's Test Course\",\n        \"course_abbrev\": \"42\"\n    },\n    {\n        \"courseID\": \"1063\",\n        \"course_name\": \"Sample Clerkship 2019\",\n        \"course_abbrev\": \"SC2019\"\n    },\n    {\n        \"courseID\": \"1107\",\n        \"course_name\": \"Sample Clerkship_2019\",\n        \"course_abbrev\": \"SPC2019\"\n    },\n    {\n        \"courseID\": \"1062\",\n        \"course_name\": \"Sample Course 2019\",\n        \"course_abbrev\": \"SMP2019\"\n    },\n    {\n        \"courseID\": \"751\",\n        \"course_name\": \"Sample Course 999\",\n        \"course_abbrev\": \"course999\"\n    },\n    {\n        \"courseID\": \"810\",\n        \"course_name\": \"Sams Test Course\",\n        \"course_abbrev\": \"STC\"\n    },\n    {\n        \"courseID\": \"811\",\n        \"course_name\": \"Sams Test Course - Family Planning Clinic\",\n        \"course_abbrev\": \"STC-FPC\"\n    },\n    {\n        \"courseID\": \"813\",\n        \"course_name\": \"Sams Test Course - San Diego\",\n        \"course_abbrev\": \"STC-SD\"\n    },\n    {\n        \"courseID\": \"812\",\n        \"course_name\": \"Sams Test Course - West Clinic\",\n        \"course_abbrev\": \"STC-WC\"\n    },\n    {\n        \"courseID\": \"1060\",\n        \"course_name\": \"Sams Test Course 42\",\n        \"course_abbrev\": \"STC 42\"\n    },\n    {\n        \"courseID\": \"327\",\n        \"course_name\": \"SI  Neurosurgery Subinternship (Off Block)\",\n        \"course_abbrev\": \"NUES 200\"\n    },\n    {\n        \"courseID\": \"660\",\n        \"course_name\": \"SI Advanced Inpatient Psychiatry Subinternship (4WK) AWAY UCSF\",\n        \"course_abbrev\": \"PSYC AW4\"\n    },\n    {\n        \"courseID\": \"587\",\n        \"course_name\": \"SI Clinical Neurosurgery Subinternship AWAY (4WK)Cornell\",\n        \"course_abbrev\": \"NEUR\"\n    },\n    {\n        \"courseID\": \"583\",\n        \"course_name\": \"SI Clinical Neurosurgery Subinternship AWAY (4WK)Harvard\",\n        \"course_abbrev\": \"NEUS\"\n    },\n    {\n        \"courseID\": \"725\",\n        \"course_name\": \"SI Clinical Otolaryngology Subinternship (4WK) AWAY MT SINAI\",\n        \"course_abbrev\": \"OTOL\"\n    },\n    {\n        \"courseID\": \"258\",\n        \"course_name\": \"SI Emergency Medicine 4 wk (off block)\",\n        \"course_abbrev\": \"EMER 300\"\n    },\n    {\n        \"courseID\": \"688\",\n        \"course_name\": \"SI Emergency Medicine Combined Emergency Medicine/Ultrasound Subinternship\",\n        \"course_abbrev\": \"EMER 305\"\n    },\n    {\n        \"courseID\": \"27\",\n        \"course_name\": \"SI Emergency Medicine Subinternship (4WK)\",\n        \"course_abbrev\": \"EMER 300\"\n    },\n    {\n        \"courseID\": \"593\",\n        \"course_name\": \"SI Emergency Medicine Subinternship AWAY (4WK) Alpert SOM\",\n        \"course_abbrev\": \"EMER 300\"\n    },\n    {\n        \"courseID\": \"591\",\n        \"course_name\": \"SI Emergency Medicine Subinternship AWAY (4WK) Boston U\",\n        \"course_abbrev\": \"EMER 300\"\n    },\n    {\n        \"courseID\": \"592\",\n        \"course_name\": \"SI Emergency Medicine Subinternship AWAY (4WK) Brown\",\n        \"course_abbrev\": \"EMER 300\"\n    },\n    {\n        \"courseID\": \"626\",\n        \"course_name\": \"SI Emergency Medicine Subinternship AWAY (4WK) Harvard\",\n        \"course_abbrev\": \"EMER\"\n    },\n    {\n        \"courseID\": \"30\",\n        \"course_name\": \"SI Family Medicine Subinternship (Middlesex Hospital) (4WK)\",\n        \"course_abbrev\": \"FMED 101\"\n    },\n    {\n        \"courseID\": \"55\",\n        \"course_name\": \"SI Internal Medicine Subinternship (4WK)\",\n        \"course_abbrev\": \"IMED 200\"\n    },\n    {\n        \"courseID\": \"698\",\n        \"course_name\": \"SI Internal Medicine Subinternship AY15-16 (4WK)\",\n        \"course_abbrev\": \"IMED 200a\"\n    },\n    {\n        \"courseID\": \"721\",\n        \"course_name\": \"SI Medicine Subinternship AWAY (4 WK) Madigan Army Medical Center\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"406\",\n        \"course_name\": \"SI Neurological Surgery Subinternship AWAY (4WK) Barrow\",\n        \"course_abbrev\": \"NEUR\"\n    },\n    {\n        \"courseID\": \"599\",\n        \"course_name\": \"SI Neurology Advanced Inpatient Subinternship AWAY (4WK) UCSF\",\n        \"course_abbrev\": \"NEUR\"\n    },\n    {\n        \"courseID\": \"484\",\n        \"course_name\": \"SI Neurology Subinternship (4WK)\",\n        \"course_abbrev\": \"NEUR 400\"\n    },\n    {\n        \"courseID\": \"83\",\n        \"course_name\": \"SI Neurosurgery Subinternship (4WK)\",\n        \"course_abbrev\": \"NUES 200\"\n    },\n    {\n        \"courseID\": \"641\",\n        \"course_name\": \"SI Neurosurgery Subinternship (4WK) OFF BLOCK\",\n        \"course_abbrev\": \"NUES 200\"\n    },\n    {\n        \"courseID\": \"501\",\n        \"course_name\": \"SI Neurosurgery Subinternship AWAY (4WK) JohnsHopkins\",\n        \"course_abbrev\": \"NEUS\"\n    },\n    {\n        \"courseID\": \"645\",\n        \"course_name\": \"SI Neurosurgery Subinternship AWAY (4WK) Mayo Clinic, FL\",\n        \"course_abbrev\": \"NEUS\"\n    },\n    {\n        \"courseID\": \"405\",\n        \"course_name\": \"SI Neurosurgery Subinternship AWAY (4WK)Stanford\",\n        \"course_abbrev\": \"NEUS\"\n    },\n    {\n        \"courseID\": \"86\",\n        \"course_name\": \"SI Obstetrics &amp; Gynecology Gynecologic Oncology Subinternship (4WK)\",\n        \"course_abbrev\": \"OBGY 202\"\n    },\n    {\n        \"courseID\": \"87\",\n        \"course_name\": \"SI Obstetrics &amp; Gynecology Maternal Fetal Medicine Subinternship (4WK)\",\n        \"course_abbrev\": \"OBGY 200\"\n    },\n    {\n        \"courseID\": \"88\",\n        \"course_name\": \"SI Obstetrics &amp; Gynecology Reproductive Endocrinology &amp; Infertility Subinternship (4WK)\",\n        \"course_abbrev\": \"OBGY 201\"\n    },\n    {\n        \"courseID\": \"85\",\n        \"course_name\": \"SI Obstetrics &amp; Gynecology Subinternship (Bridgeport Hospital) (4WK)\",\n        \"course_abbrev\": \"OBGY 270\"\n    },\n    {\n        \"courseID\": \"282\",\n        \"course_name\": \"SI Obstetrics &amp; Gynecology Urogynecology &amp; Reconstructive Pelvic Surgery Service Subinternship (4wk)\",\n        \"course_abbrev\": \"OB/GYN\"\n    },\n    {\n        \"courseID\": \"611\",\n        \"course_name\": \"SI Orthopaedic Oncology Subinternship (4WK) AWAY UCLA\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"502\",\n        \"course_name\": \"SI Orthopaedic Subinternship (4WK) AWAY Hosp Spec Surgery\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"658\",\n        \"course_name\": \"SI Orthopaedic Subinternship (4WK) AWAY San Francisco\",\n        \"course_abbrev\": \"OPTH\"\n    },\n    {\n        \"courseID\": \"585\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY Columbia\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"589\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY Greenville Health Sys\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"617\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY Harvard\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"594\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY HSS\",\n        \"course_abbrev\": \"ORTH 200\"\n    },\n    {\n        \"courseID\": \"598\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY Jefferson Med College\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"597\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY Jefferson Med College\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"595\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY NYU\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"640\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY NYU\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"643\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY Rush Uni\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"600\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY Stanford\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"601\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY UCLA\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"596\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY UT Houston\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"618\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY Washington U, St Louis\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"498\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship 4WK (AWAY) STANFORD\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"93\",\n        \"course_name\": \"SI Orthopaedics &amp; Rehabilitation-Subinternship (4WK)\",\n        \"course_abbrev\": \"ORTH 200\"\n    },\n    {\n        \"courseID\": \"287\",\n        \"course_name\": \"SI Orthopaedics &amp; Rehabilitation-Subinternship (4WK) Off Block\",\n        \"course_abbrev\": \"Ortho off\"\n    },\n    {\n        \"courseID\": \"734\",\n        \"course_name\": \"SI Orthopedic Surgery Subinternship (4 WK) AWAY UCSF\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"726\",\n        \"course_name\": \"SI Otorhinolaryngology Subinternship (4WK) AWAY UPENN\",\n        \"course_abbrev\": \"OTOL\"\n    },\n    {\n        \"courseID\": \"96\",\n        \"course_name\": \"SI Pediatrics Subinternship (4WK)\",\n        \"course_abbrev\": \"PEDS 315\"\n    },\n    {\n        \"courseID\": \"192\",\n        \"course_name\": \"SI Plastic Surgery Subinternship AWAY (4WK) U So FL\",\n        \"course_abbrev\": \"PLAS AW4\"\n    },\n    {\n        \"courseID\": \"731\",\n        \"course_name\": \"SI Plastic Surgery Subinternship AWAY (4WK) UCLA\",\n        \"course_abbrev\": \"PSYC AW4\"\n    },\n    {\n        \"courseID\": \"610\",\n        \"course_name\": \"SI Psychiatry Advanced Inpatient Psychiatry Subinternship (AWAY) 4WK UCSF\",\n        \"course_abbrev\": \"PSYC AW4\"\n    },\n    {\n        \"courseID\": \"577\",\n        \"course_name\": \"SI Psychiatry Inpatient Subinternship (CMHC, 4th Flr)\",\n        \"course_abbrev\": \"PSYC 301\"\n    },\n    {\n        \"courseID\": \"578\",\n        \"course_name\": \"SI Psychiatry Inpatient Subinternship (YNHH, WS-2)\",\n        \"course_abbrev\": \"PSYC 302\"\n    },\n    {\n        \"courseID\": \"718\",\n        \"course_name\": \"SI Subinternship in Orthopedic Surgery\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"190\",\n        \"course_name\": \"SI Subinternship in Otolaryngology AWAY (4WK) Harvard\",\n        \"course_abbrev\": \"OTOL\"\n    },\n    {\n        \"courseID\": \"120\",\n        \"course_name\": \"SI Surgery Cardiac Surgery Subinternship (4WK)\",\n        \"course_abbrev\": \"SURG 219\"\n    },\n    {\n        \"courseID\": \"630\",\n        \"course_name\": \"SI Surgery Clinical Otolaryngology Subinternship (4WK) AWAY Mount Sinai\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"123\",\n        \"course_name\": \"SI Surgery Endocrine Surgery Subinternship (4WK)\",\n        \"course_abbrev\": \"SURG 217\"\n    },\n    {\n        \"courseID\": \"117\",\n        \"course_name\": \"SI Surgery Gastrointestinal Surgery Subinternship (4WK)\",\n        \"course_abbrev\": \"SURG 203\"\n    },\n    {\n        \"courseID\": \"588\",\n        \"course_name\": \"SI Surgery Neurosurgery Subinternship AWAY (4WK)Cornell\",\n        \"course_abbrev\": \"NEUS\"\n    },\n    {\n        \"courseID\": \"499\",\n        \"course_name\": \"SI Surgery Orthopaedic Surgery Subinternship 4WK (AWAY) WASH U\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"574\",\n        \"course_name\": \"SI Surgery Otolaryngology Head &amp; Neck Surgery (4WK)AWAY Stanford\",\n        \"course_abbrev\": \"OTOL AW4\"\n    },\n    {\n        \"courseID\": \"125\",\n        \"course_name\": \"SI Surgery Otolaryngology Subinternship (4WK)\",\n        \"course_abbrev\": \"OTOL 200\"\n    },\n    {\n        \"courseID\": \"575\",\n        \"course_name\": \"SI Surgery Otolaryngology Subinternship (4WK) AWAY Columbia\",\n        \"course_abbrev\": \"OTOL AW4\"\n    },\n    {\n        \"courseID\": \"735\",\n        \"course_name\": \"SI Surgery Otolaryngology Subinternship (4wk) AWAY Stanford\",\n        \"course_abbrev\": \"OTOL\"\n    },\n    {\n        \"courseID\": \"623\",\n        \"course_name\": \"SI Surgery Otolaryngology Subinternship (4WK) AWAY Thomas Jefferson U\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"642\",\n        \"course_name\": \"SI Surgery Otolaryngology Subinternship (4WK) AWAY UPENN\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"629\",\n        \"course_name\": \"SI Surgery Otolaryngology Subinternship AWAY (4WK) Cornell\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"646\",\n        \"course_name\": \"SI Surgery Pediatric Orthopaedic Surgery Subinternship (4WK) AWAY UCLA\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"586\",\n        \"course_name\": \"SI Surgery Pediatric Orthopaedic Surgery Subinternship (4WK) AWAY Vanderbilt\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"504\",\n        \"course_name\": \"SI Surgery Pediatric Plastic Surgery Subinternship (4WK) AWAY UPENN\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"97\",\n        \"course_name\": \"SI Surgery Pediatric Surgery Subinternship (4WK)\",\n        \"course_abbrev\": \"SURG 207\"\n    },\n    {\n        \"courseID\": \"129\",\n        \"course_name\": \"SI Surgery Plastic and Reconstructive Surgery Subinternship (4WK)\",\n        \"course_abbrev\": \"PLAS 200\"\n    },\n    {\n        \"courseID\": \"733\",\n        \"course_name\": \"SI Surgery Plastic and Reconstructive Surgery Subinternship OFF BLOCK\",\n        \"course_abbrev\": \"PLAS\"\n    },\n    {\n        \"courseID\": \"503\",\n        \"course_name\": \"SI Surgery Plastic Surgery Subinternship (4WK) AWAY Stanford U\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"118\",\n        \"course_name\": \"SI Surgery Surgical Critical Care Subinternship (VAMC/SICU) (4WK)\",\n        \"course_abbrev\": \"SURG 211\"\n    },\n    {\n        \"courseID\": \"131\",\n        \"course_name\": \"SI Surgery Surgical Oncology Subinternship (4WK)\",\n        \"course_abbrev\": \"SURG 200\"\n    },\n    {\n        \"courseID\": \"124\",\n        \"course_name\": \"SI Surgery Thoracic Surgery Subinternship (4WK)\",\n        \"course_abbrev\": \"SURG 221\"\n    },\n    {\n        \"courseID\": \"132\",\n        \"course_name\": \"SI Surgery Transplantation Surgery Subinternship (4WK)\",\n        \"course_abbrev\": \"SURG 256\"\n    },\n    {\n        \"courseID\": \"133\",\n        \"course_name\": \"SI Surgery Trauma and Emergency General Surgery Subinternship (4WK)\",\n        \"course_abbrev\": \"SURG 202\"\n    },\n    {\n        \"courseID\": \"134\",\n        \"course_name\": \"SI Surgery Urology Subinternship (4WK)\",\n        \"course_abbrev\": \"UROL 200\"\n    },\n    {\n        \"courseID\": \"377\",\n        \"course_name\": \"SI Surgery Vascular Surgery Subinternship (4wk)\",\n        \"course_abbrev\": \"SURG 206\"\n    },\n    {\n        \"courseID\": \"866\",\n        \"course_name\": \"SSC\",\n        \"course_abbrev\": \"SSC\"\n    },\n    {\n        \"courseID\": \"219\",\n        \"course_name\": \"Study for USMLE\",\n        \"course_abbrev\": \"USMLE\"\n    },\n    {\n        \"courseID\": \"234\",\n        \"course_name\": \"Sub-Internship Block (4WK)\",\n        \"course_abbrev\": \"SUBI AWAY PLC4\"\n    },\n    {\n        \"courseID\": \"681\",\n        \"course_name\": \"Surgical Approach to the Patient Clerkship - Emergency Medicine)\",\n        \"course_abbrev\": \"CL SAP-SU\"\n    },\n    {\n        \"courseID\": \"746\",\n        \"course_name\": \"test\",\n        \"course_abbrev\": \"tt\"\n    },\n    {\n        \"courseID\": \"934\",\n        \"course_name\": \"test\",\n        \"course_abbrev\": \"test\"\n    },\n    {\n        \"courseID\": \"935\",\n        \"course_name\": \"Test\",\n        \"course_abbrev\": \"Test\"\n    },\n    {\n        \"courseID\": \"936\",\n        \"course_name\": \"test 1\",\n        \"course_abbrev\": \"Test12\"\n    },\n    {\n        \"courseID\": \"1024\",\n        \"course_name\": \"test 1\",\n        \"course_abbrev\": \"Test12\"\n    },\n    {\n        \"courseID\": \"899\",\n        \"course_name\": \"Test 101\",\n        \"course_abbrev\": \"Test 101\"\n    },\n    {\n        \"courseID\": \"794\",\n        \"course_name\": \"Test Course - Tina 2\",\n        \"course_abbrev\": \"TCT2\"\n    },\n    {\n        \"courseID\": \"742\",\n        \"course_name\": \"Test Course 2000\",\n        \"course_abbrev\": \"TC2000\"\n    },\n    {\n        \"courseID\": \"743\",\n        \"course_name\": \"Test Course 22\",\n        \"course_abbrev\": \"TC22\"\n    },\n    {\n        \"courseID\": \"864\",\n        \"course_name\": \"TEST COURSE 5\",\n        \"course_abbrev\": \"Test Course 5\"\n    },\n    {\n        \"courseID\": \"865\",\n        \"course_name\": \"TEST COURSE 5 - Dearborn\",\n        \"course_abbrev\": \"Test Course 5-DRBN\"\n    },\n    {\n        \"courseID\": \"766\",\n        \"course_name\": \"test course block date\",\n        \"course_abbrev\": \"tcbd\"\n    },\n    {\n        \"courseID\": \"885\",\n        \"course_name\": \"test longitudinal\",\n        \"course_abbrev\": \"test\"\n    },\n    {\n        \"courseID\": \"886\",\n        \"course_name\": \"test longitudinal 2\",\n        \"course_abbrev\": \"test 2\"\n    },\n    {\n        \"courseID\": \"771\",\n        \"course_name\": \"Test2\",\n        \"course_abbrev\": \"22Test\"\n    },\n    {\n        \"courseID\": \"930\",\n        \"course_name\": \"TEST6789\",\n        \"course_abbrev\": \"Test6789abbrev\"\n    },\n    {\n        \"courseID\": \"1125\",\n        \"course_name\": \"testtest\",\n        \"course_abbrev\": \"testtest\"\n    },\n    {\n        \"courseID\": \"831\",\n        \"course_name\": \"TestVacation2\",\n        \"course_abbrev\": \"TestVacation2\"\n    },\n    {\n        \"courseID\": \"759\",\n        \"course_name\": \"TR - Internal Medicine\",\n        \"course_abbrev\": \"TR-IM\"\n    },\n    {\n        \"courseID\": \"816\",\n        \"course_name\": \"TR - Internal Medicine - Downtown Hospital\",\n        \"course_abbrev\": \"TR-IM-DH\"\n    },\n    {\n        \"courseID\": \"815\",\n        \"course_name\": \"TR - Internal Medicine - Westchester General Hospital\",\n        \"course_abbrev\": \"TR-IM-WEST\"\n    },\n    {\n        \"courseID\": \"758\",\n        \"course_name\": \"TR - Pediatrics\",\n        \"course_abbrev\": \"TR-PD\"\n    },\n    {\n        \"courseID\": \"921\",\n        \"course_name\": \"Transfiguration\",\n        \"course_abbrev\": \"T\"\n    },\n    {\n        \"courseID\": \"922\",\n        \"course_name\": \"Transfiguration - Ann Arbor\",\n        \"course_abbrev\": \"T-AA\"\n    },\n    {\n        \"courseID\": \"923\",\n        \"course_name\": \"Transfiguration - Detroit\",\n        \"course_abbrev\": \"T-DET\"\n    },\n    {\n        \"courseID\": \"924\",\n        \"course_name\": \"Transfiguration - San Diego\",\n        \"course_abbrev\": \"T-SD\"\n    },\n    {\n        \"courseID\": \"745\",\n        \"course_name\": \"UC - FMED - Junior Clerkship: Family Medicine - 30300/1\",\n        \"course_abbrev\": \"FMED 30300/1\"\n    },\n    {\n        \"courseID\": \"748\",\n        \"course_name\": \"UC Course\",\n        \"course_abbrev\": \"UC\"\n    },\n    {\n        \"courseID\": \"224\",\n        \"course_name\": \"Unscheduled\",\n        \"course_abbrev\": \"UNSCHED\"\n    },\n    {\n        \"courseID\": \"1081\",\n        \"course_name\": \"Vacation - Dave G\",\n        \"course_abbrev\": \"Vac - DG\"\n    },\n    {\n        \"courseID\": \"231\",\n        \"course_name\": \"Winter Break\",\n        \"course_abbrev\": \"WINTER\"\n    },\n    {\n        \"courseID\": \"530\",\n        \"course_name\": \"YPA -  Infectious Diesease Boulder Community Hospital\",\n        \"course_abbrev\": \"YPA BCH Inf Dz\"\n    },\n    {\n        \"courseID\": \"528\",\n        \"course_name\": \"YPA - Boston Children's Hospital Pediatric Orthopedic\",\n        \"course_abbrev\": \"YPA BCH Pedi Or\"\n    },\n    {\n        \"courseID\": \"531\",\n        \"course_name\": \"YPA - Brideport Hospital Occupational Medicine\",\n        \"course_abbrev\": \"YPA Occ Med\"\n    },\n    {\n        \"courseID\": \"654\",\n        \"course_name\": \"YPA - Cardiology (BPT)\",\n        \"course_abbrev\": \"YPA Cards BPT\"\n    },\n    {\n        \"courseID\": \"563\",\n        \"course_name\": \"YPA - Cardiology (YNHH)\",\n        \"course_abbrev\": \"YPA Cards\"\n    },\n    {\n        \"courseID\": \"547\",\n        \"course_name\": \"YPA - Cardiology Hospitalist\",\n        \"course_abbrev\": \"YPA Cards Hosp\"\n    },\n    {\n        \"courseID\": \"562\",\n        \"course_name\": \"YPA - Cardiothoracic Surgery\",\n        \"course_abbrev\": \"YPA CT Surgery\"\n    },\n    {\n        \"courseID\": \"564\",\n        \"course_name\": \"YPA - Dermatology\",\n        \"course_abbrev\": \"YPA Derm\"\n    },\n    {\n        \"courseID\": \"571\",\n        \"course_name\": \"YPA - Emergency Medicine (BPT)\",\n        \"course_abbrev\": \"YPA EM BPT\"\n    },\n    {\n        \"courseID\": \"572\",\n        \"course_name\": \"YPA - Emergency Medicine (SRC)\",\n        \"course_abbrev\": \"YPA EM HSR\"\n    },\n    {\n        \"courseID\": \"510\",\n        \"course_name\": \"YPA - Emergency Medicine (YNHH)\",\n        \"course_abbrev\": \"YPA EM\"\n    },\n    {\n        \"courseID\": \"535\",\n        \"course_name\": \"YPA - Endocrinology (Ynhh)\",\n        \"course_abbrev\": \"YPA Endo\"\n    },\n    {\n        \"courseID\": \"533\",\n        \"course_name\": \"YPA - Gastroenterology\",\n        \"course_abbrev\": \"YPA Gastro\"\n    },\n    {\n        \"courseID\": \"507\",\n        \"course_name\": \"YPA - General Surgery (BPT)\",\n        \"course_abbrev\": \"YPA GS BPT\"\n    },\n    {\n        \"courseID\": \"506\",\n        \"course_name\": \"YPA - General Surgery (Bristol Hospital)\",\n        \"course_abbrev\": \"YPA GS Bristol\"\n    },\n    {\n        \"courseID\": \"508\",\n        \"course_name\": \"YPA - General Surgery (Norwalk)\",\n        \"course_abbrev\": \"YPA GS (Norwalk\"\n    },\n    {\n        \"courseID\": \"493\",\n        \"course_name\": \"YPA - General Surgery (YNHH)\",\n        \"course_abbrev\": \"YPA - GS\"\n    },\n    {\n        \"courseID\": \"569\",\n        \"course_name\": \"YPA - Geriatrics (BPT)\",\n        \"course_abbrev\": \"YPA Geri\"\n    },\n    {\n        \"courseID\": \"570\",\n        \"course_name\": \"YPA - Geriatrics (SRC)\",\n        \"course_abbrev\": \"YPA GERI HSR\"\n    },\n    {\n        \"courseID\": \"494\",\n        \"course_name\": \"YPA - Geriatrics (VA)\",\n        \"course_abbrev\": \"YPA Geri\"\n    },\n    {\n        \"courseID\": \"554\",\n        \"course_name\": \"YPA - Gynocologic Oncology Elective\",\n        \"course_abbrev\": \"YPA Gyn Onc\"\n    },\n    {\n        \"courseID\": \"527\",\n        \"course_name\": \"YPA - Hematology\",\n        \"course_abbrev\": \"YPA Heme\"\n    },\n    {\n        \"courseID\": \"534\",\n        \"course_name\": \"YPA - Infectious Diseases\",\n        \"course_abbrev\": \"YPA Inf Dz\"\n    },\n    {\n        \"courseID\": \"495\",\n        \"course_name\": \"YPA - Internal Medicine I\",\n        \"course_abbrev\": \"YPA IMED I\"\n    },\n    {\n        \"courseID\": \"505\",\n        \"course_name\": \"YPA - Internal Medicine II\",\n        \"course_abbrev\": \"YPA IMED II\"\n    },\n    {\n        \"courseID\": \"540\",\n        \"course_name\": \"YPA - Interventional Pulmonology\",\n        \"course_abbrev\": \"YPA Inter Pulm\"\n    },\n    {\n        \"courseID\": \"539\",\n        \"course_name\": \"YPA - Interventional Radiology\",\n        \"course_abbrev\": \"YPA Inter Radio\"\n    },\n    {\n        \"courseID\": \"557\",\n        \"course_name\": \"YPA - Medical ICU\",\n        \"course_abbrev\": \"YPA MICU\"\n    },\n    {\n        \"courseID\": \"700\",\n        \"course_name\": \"YPA - Metabolism Associates\",\n        \"course_abbrev\": \"YPA Metab Assoc\"\n    },\n    {\n        \"courseID\": \"558\",\n        \"course_name\": \"YPA - Neonatology\",\n        \"course_abbrev\": \"YPA Neonatology\"\n    },\n    {\n        \"courseID\": \"532\",\n        \"course_name\": \"YPA - Nephrology\",\n        \"course_abbrev\": \"YPA Nephrology\"\n    },\n    {\n        \"courseID\": \"538\",\n        \"course_name\": \"YPA - Neuroscience\",\n        \"course_abbrev\": \"YPA Neuroscienc\"\n    },\n    {\n        \"courseID\": \"549\",\n        \"course_name\": \"YPA - NSUHS Illinois  Neurosurgery\",\n        \"course_abbrev\": \"YPA NSUHS Neuro\"\n    },\n    {\n        \"courseID\": \"548\",\n        \"course_name\": \"YPA - NSUHS Illinois Cardiothoracic Surgery\",\n        \"course_abbrev\": \"YPA NSUHS CS\"\n    },\n    {\n        \"courseID\": \"550\",\n        \"course_name\": \"YPA - NSUHS Illinois Orthopedics\",\n        \"course_abbrev\": \"YPA NSUHS Ortho\"\n    },\n    {\n        \"courseID\": \"552\",\n        \"course_name\": \"YPA - NSUHS Illinois Urology\",\n        \"course_abbrev\": \"YPA NSUHS Urolo\"\n    },\n    {\n        \"courseID\": \"551\",\n        \"course_name\": \"YPA - NSUHS Illinois Vascular Surgery\",\n        \"course_abbrev\": \"YPA NSUHS Vasc\"\n    },\n    {\n        \"courseID\": \"511\",\n        \"course_name\": \"YPA - OB GYN (Bridgpeport)\",\n        \"course_abbrev\": \"YPA OB GYN\"\n    },\n    {\n        \"courseID\": \"701\",\n        \"course_name\": \"YPA - OB GYN (Dr. Erica Dun)\",\n        \"course_abbrev\": \"YPA ObGyn E Dun\"\n    },\n    {\n        \"courseID\": \"573\",\n        \"course_name\": \"YPA - OB GYN (Gallup)\",\n        \"course_abbrev\": \"YPA Ob Gyn Gall\"\n    },\n    {\n        \"courseID\": \"677\",\n        \"course_name\": \"YPA - OB GYN (Greater New Haven)\",\n        \"course_abbrev\": \"YPA Ob Gyn GNH\"\n    },\n    {\n        \"courseID\": \"653\",\n        \"course_name\": \"YPA - OB GYN (Greenwich Hospital)\",\n        \"course_abbrev\": \"YPA OB GYN GH\"\n    },\n    {\n        \"courseID\": \"650\",\n        \"course_name\": \"YPA - OB GYN (Lawrence &amp; Memorial)\",\n        \"course_abbrev\": \"YPA  Ob Gyn LM\"\n    },\n    {\n        \"courseID\": \"695\",\n        \"course_name\": \"YPA - OB GYN (McKnight)\",\n        \"course_abbrev\": \"YPA ObGyn Mckn\"\n    },\n    {\n        \"courseID\": \"567\",\n        \"course_name\": \"YPA - OB GYN (SRC)\",\n        \"course_abbrev\": \"YPA Ob Gyn HSR\"\n    },\n    {\n        \"courseID\": \"568\",\n        \"course_name\": \"YPA - OB GYN (Women's Health Care)\",\n        \"course_abbrev\": \"YPA Ob Gyn WHC\"\n    },\n    {\n        \"courseID\": \"675\",\n        \"course_name\": \"YPA - OB GYN (YNHH)\",\n        \"course_abbrev\": \"YPA OB GYN YNHH\"\n    },\n    {\n        \"courseID\": \"655\",\n        \"course_name\": \"YPA - Ob Gyn Sue Richman\",\n        \"course_abbrev\": \"YPA Ob Gyn Rich\"\n    },\n    {\n        \"courseID\": \"526\",\n        \"course_name\": \"YPA - Oncology\",\n        \"course_abbrev\": \"YPA Onc\"\n    },\n    {\n        \"courseID\": \"536\",\n        \"course_name\": \"YPA - Oncology MD Anderson Houston, TX\",\n        \"course_abbrev\": \"YPA MD Anderson\"\n    },\n    {\n        \"courseID\": \"537\",\n        \"course_name\": \"YPA - Oncology Memorial Sloan-Kettering Cancer Center\",\n        \"course_abbrev\": \"YPA MSKCC\"\n    },\n    {\n        \"courseID\": \"546\",\n        \"course_name\": \"YPA - Ophthalmology\",\n        \"course_abbrev\": \"YPA Optho\"\n    },\n    {\n        \"courseID\": \"525\",\n        \"course_name\": \"YPA - Orthopaedics\",\n        \"course_abbrev\": \"YPA Ortho\"\n    },\n    {\n        \"courseID\": \"555\",\n        \"course_name\": \"YPA - Orthopedic NOW Ambulatory\",\n        \"course_abbrev\": \"YPA Ortho NOW\"\n    },\n    {\n        \"courseID\": \"708\",\n        \"course_name\": \"YPA - PA Student Evaluations\",\n        \"course_abbrev\": \"YPA Stu Eval\"\n    },\n    {\n        \"courseID\": \"543\",\n        \"course_name\": \"YPA - Pediatric Cardiology\",\n        \"course_abbrev\": \"YPA Pedi Cards\"\n    },\n    {\n        \"courseID\": \"545\",\n        \"course_name\": \"YPA - Pediatric Endocrinology\",\n        \"course_abbrev\": \"YPA Pedi Endo\"\n    },\n    {\n        \"courseID\": \"544\",\n        \"course_name\": \"YPA - Pediatric GI\",\n        \"course_abbrev\": \"YPA Pedi GI\"\n    },\n    {\n        \"courseID\": \"542\",\n        \"course_name\": \"YPA - Pediatric Oncology\",\n        \"course_abbrev\": \"YPA Pedi Onc\"\n    },\n    {\n        \"courseID\": \"524\",\n        \"course_name\": \"YPA - Pediatrics\",\n        \"course_abbrev\": \"YPA Peds\"\n    },\n    {\n        \"courseID\": \"556\",\n        \"course_name\": \"YPA - Penobscot Valley Hosptial, Lincoln ME Rural Hospitalist\",\n        \"course_abbrev\": \"YPA Pen Valley\"\n    },\n    {\n        \"courseID\": \"553\",\n        \"course_name\": \"YPA - Plastic Surgery\",\n        \"course_abbrev\": \"YPA Plastics\"\n    },\n    {\n        \"courseID\": \"652\",\n        \"course_name\": \"YPA - Plastic Surgery (SRC)\",\n        \"course_abbrev\": \"YPA Plastics SR\"\n    },\n    {\n        \"courseID\": \"519\",\n        \"course_name\": \"YPA - Primary Care (VA)\",\n        \"course_abbrev\": \"YPA VA PC\"\n    },\n    {\n        \"courseID\": \"516\",\n        \"course_name\": \"YPA - Primary Care Bridgeport PCC\",\n        \"course_abbrev\": \"YPA BPCC\"\n    },\n    {\n        \"courseID\": \"522\",\n        \"course_name\": \"YPA - Primary Care Central Care Community Health Center, TX\",\n        \"course_abbrev\": \"YPA CCCHC\"\n    },\n    {\n        \"courseID\": \"514\",\n        \"course_name\": \"YPA - Primary Care Cloverfork, KY\",\n        \"course_abbrev\": \"YPA Cloverfork\"\n    },\n    {\n        \"courseID\": \"523\",\n        \"course_name\": \"YPA - Primary Care Family Practice Associates, Guilford\",\n        \"course_abbrev\": \"YPA Family Prac\"\n    },\n    {\n        \"courseID\": \"517\",\n        \"course_name\": \"YPA - Primary Care Hartford Family Medicine\",\n        \"course_abbrev\": \"YPA HFM\"\n    },\n    {\n        \"courseID\": \"520\",\n        \"course_name\": \"YPA - Primary Care Health Plan Urgent Care Center\",\n        \"course_abbrev\": \"YPA YHP UCC\"\n    },\n    {\n        \"courseID\": \"515\",\n        \"course_name\": \"YPA - Primary Care Nathan Smith Clinic\",\n        \"course_abbrev\": \"YPA Nathan Smit\"\n    },\n    {\n        \"courseID\": \"672\",\n        \"course_name\": \"YPA - Primary Care NEMG\",\n        \"course_abbrev\": \"YPA - UCWH\"\n    },\n    {\n        \"courseID\": \"512\",\n        \"course_name\": \"YPA - Primary Care Optimus Healthcare\",\n        \"course_abbrev\": \"YPA - Optimus\"\n    },\n    {\n        \"courseID\": \"513\",\n        \"course_name\": \"YPA - Primary Care Park West Family Medicine\",\n        \"course_abbrev\": \"YPA Park West\"\n    },\n    {\n        \"courseID\": \"696\",\n        \"course_name\": \"YPA - Primary Care Shirley Wong, MD\",\n        \"course_abbrev\": \"YPA PC Wong\"\n    },\n    {\n        \"courseID\": \"518\",\n        \"course_name\": \"YPA - Primary Care St. Mary's Children &amp; Family Health Center 1\",\n        \"course_abbrev\": \"YPA St. Mary's\"\n    },\n    {\n        \"courseID\": \"566\",\n        \"course_name\": \"YPA - Primary Care St. Mary's Children &amp; Family Health Center 2\",\n        \"course_abbrev\": \"YPA St. Mary's\"\n    },\n    {\n        \"courseID\": \"521\",\n        \"course_name\": \"YPA - Primary Care Whitman Walker\",\n        \"course_abbrev\": \"YPA WW\"\n    },\n    {\n        \"courseID\": \"509\",\n        \"course_name\": \"YPA - Psychiatry\",\n        \"course_abbrev\": \"YPA Psych\"\n    },\n    {\n        \"courseID\": \"541\",\n        \"course_name\": \"YPA - Radiation Oncology\",\n        \"course_abbrev\": \"YPA Rad Onc\"\n    },\n    {\n        \"courseID\": \"561\",\n        \"course_name\": \"YPA - Radiology\",\n        \"course_abbrev\": \"YPA Radiology\"\n    },\n    {\n        \"courseID\": \"559\",\n        \"course_name\": \"YPA - Rheumatology\",\n        \"course_abbrev\": \"YPA Rheum\"\n    },\n    {\n        \"courseID\": \"560\",\n        \"course_name\": \"YPA - Surgical ICU\",\n        \"course_abbrev\": \"YPA SICU\"\n    },\n    {\n        \"courseID\": \"565\",\n        \"course_name\": \"YPA - Thesis\",\n        \"course_abbrev\": \"YPA thesis\"\n    },\n    {\n        \"courseID\": \"797\",\n        \"course_name\": \"Z-Emergency Medicine-JJ\",\n        \"course_abbrev\": \"Z-EM-JJ\"\n    },\n    {\n        \"courseID\": \"795\",\n        \"course_name\": \"Z-Internal Medicine-JJ\",\n        \"course_abbrev\": \"Z-IM-JJ\"\n    },\n    {\n        \"courseID\": \"796\",\n        \"course_name\": \"Z-Pediatrics-JJ\",\n        \"course_abbrev\": \"Z-PEDS-JJ\"\n    }\n]"}],"_postman_id":"ff1c6f81-f586-430b-8192-2a317c11d128"},{"name":"courses/access","id":"e4ded78a-2ba2-44d7-80ee-d2d4ac03113e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>no input required</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/courses/access","description":"<p>Lists all courses accessible by this API client as granted by the UME Office Student Administrator(s).</p>\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>unique course identifier</td>\n        <td>integer</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>course_name</td>\n        <td>course name</td>\n        <td>string</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>course_abbrev</td>\n        <td>course abbreviation</td>\n        <td>string</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["courses","access"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"85ced40f-66ba-4aa8-8c46-baaef6998b13","name":"courses/access","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"","description":"no input required","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/courses/access"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Mar 2020 18:43:38 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"courseID\": \"1066\",\n        \"course_name\": \"100 Emergency Med\",\n        \"course_abbrev\": \"EM\"\n    },\n    {\n        \"courseID\": \"616\",\n        \"course_name\": \"1st Internal Medicine Core Clerkship\",\n        \"course_abbrev\": \"MED1\"\n    },\n    {\n        \"courseID\": \"894\",\n        \"course_name\": \"1st Internal Medicine Core Clerkship - Ann Arbor\",\n        \"course_abbrev\": \"MED1-AA\"\n    },\n    {\n        \"courseID\": \"1113\",\n        \"course_name\": \"1st Internal Medicine Core Clerkship - Beard\",\n        \"course_abbrev\": \"MED1-Beard\"\n    },\n    {\n        \"courseID\": \"895\",\n        \"course_name\": \"1st Internal Medicine Core Clerkship - Dearborn\",\n        \"course_abbrev\": \"MED1-DRBN\"\n    },\n    {\n        \"courseID\": \"896\",\n        \"course_name\": \"1st Internal Medicine Core Clerkship - Flint\",\n        \"course_abbrev\": \"MED1-FLT\"\n    },\n    {\n        \"courseID\": \"893\",\n        \"course_name\": \"1st Internal Medicine Core Clerkship - Grand Rapids\",\n        \"course_abbrev\": \"MED1-GR\"\n    },\n    {\n        \"courseID\": \"944\",\n        \"course_name\": \"1st Internal Medicine Core Clerkship - Memorial Hospital\",\n        \"course_abbrev\": \"MED1-MH\"\n    },\n    {\n        \"courseID\": \"1121\",\n        \"course_name\": \"1st Internal Medicine Core Clerkship - Sunny Campus\",\n        \"course_abbrev\": \"MED1-Sun\"\n    },\n    {\n        \"courseID\": \"898\",\n        \"course_name\": \"1st Internal Medicine Core Clerkship - Test for Site ALerts\",\n        \"course_abbrev\": \"MED1-Test for S\"\n    },\n    {\n        \"courseID\": \"832\",\n        \"course_name\": \"1st Year Courses* - San Diego\",\n        \"course_abbrev\": \"IM CC San Diego\"\n    },\n    {\n        \"courseID\": \"109\",\n        \"course_name\": \"2nd Year Courses\",\n        \"course_abbrev\": \"MED2\"\n    },\n    {\n        \"courseID\": \"1112\",\n        \"course_name\": \"2nd Year Courses - Ann Arbor\",\n        \"course_abbrev\": \"MED2-AA\"\n    },\n    {\n        \"courseID\": \"805\",\n        \"course_name\": \"2nd Year Courses - Downtown Hospital\",\n        \"course_abbrev\": \"MED2-DH\"\n    },\n    {\n        \"courseID\": \"804\",\n        \"course_name\": \"2nd Year Courses - Family Planning Clinic\",\n        \"course_abbrev\": \"MED2-FPC\"\n    },\n    {\n        \"courseID\": \"931\",\n        \"course_name\": \"2nd Year Courses - Site Test\",\n        \"course_abbrev\": \"MED2-Site Test\"\n    },\n    {\n        \"courseID\": \"757\",\n        \"course_name\": \"6 Month Course\",\n        \"course_abbrev\": \"6 Month\"\n    },\n    {\n        \"courseID\": \"754\",\n        \"course_name\": \"A Test\",\n        \"course_abbrev\": \"A Test\"\n    },\n    {\n        \"courseID\": \"755\",\n        \"course_name\": \"AA Test\",\n        \"course_abbrev\": \"AA Test\"\n    },\n    {\n        \"courseID\": \"756\",\n        \"course_name\": \"AAA - Biochemistry Course\",\n        \"course_abbrev\": \"Biochem\"\n    },\n    {\n        \"courseID\": \"767\",\n        \"course_name\": \"AAA Multiple Sites\",\n        \"course_abbrev\": \"AAA MS\"\n    },\n    {\n        \"courseID\": \"819\",\n        \"course_name\": \"AAA Multiple Sites - Downtown Hospital\",\n        \"course_abbrev\": \"AAA MS-DH\"\n    },\n    {\n        \"courseID\": \"910\",\n        \"course_name\": \"AAA Multiple Sites - Main Street Hospital\",\n        \"course_abbrev\": \"AAA MS-MSH\"\n    },\n    {\n        \"courseID\": \"905\",\n        \"course_name\": \"AAA Multiple Sites - Memorial Hospital\",\n        \"course_abbrev\": \"AAA MS-MH\"\n    },\n    {\n        \"courseID\": \"817\",\n        \"course_name\": \"AAA Multiple Sites - San Diego\",\n        \"course_abbrev\": \"AAA MS-SD\"\n    },\n    {\n        \"courseID\": \"827\",\n        \"course_name\": \"AAA Multiple Sites - Test for Site ALerts\",\n        \"course_abbrev\": \"AAA MS-Test for\"\n    },\n    {\n        \"courseID\": \"818\",\n        \"course_name\": \"AAA Multiple Sites - West Clinic\",\n        \"course_abbrev\": \"AAA MS-WC\"\n    },\n    {\n        \"courseID\": \"1018\",\n        \"course_name\": \"Adolescent Psychiatry AI\",\n        \"course_abbrev\": \"PSCH\"\n    },\n    {\n        \"courseID\": \"1109\",\n        \"course_name\": \"Advance Family Planning\",\n        \"course_abbrev\": \"FAMP\"\n    },\n    {\n        \"courseID\": \"1111\",\n        \"course_name\": \"Advance Gynecology\",\n        \"course_abbrev\": \"AGYN\"\n    },\n    {\n        \"courseID\": \"1108\",\n        \"course_name\": \"Advance Medial Toxicology\",\n        \"course_abbrev\": \"MEDTX\"\n    },\n    {\n        \"courseID\": \"793\",\n        \"course_name\": \"Advanced Gen Surg\",\n        \"course_abbrev\": \"AGS\"\n    },\n    {\n        \"courseID\": \"1110\",\n        \"course_name\": \"Advanced Pain Medicine\",\n        \"course_abbrev\": \"PM\"\n    },\n    {\n        \"courseID\": \"1064\",\n        \"course_name\": \"Alpha Course\",\n        \"course_abbrev\": \"AAC\"\n    },\n    {\n        \"courseID\": \"392\",\n        \"course_name\": \"Anatomic Pathology Elective (4WK) Off Block\",\n        \"course_abbrev\": \"PATH 300\"\n    },\n    {\n        \"courseID\": \"792\",\n        \"course_name\": \"Anatomy &amp; Physiology\",\n        \"course_abbrev\": \"AP\"\n    },\n    {\n        \"courseID\": \"1082\",\n        \"course_name\": \"Anatomy 101\",\n        \"course_abbrev\": \"ANAT 101\"\n    },\n    {\n        \"courseID\": \"1119\",\n        \"course_name\": \"Anatomy 101 - Ann Arbor\",\n        \"course_abbrev\": \"ANAT 101-AA\"\n    },\n    {\n        \"courseID\": \"1118\",\n        \"course_name\": \"Anatomy 101 - South Campus\",\n        \"course_abbrev\": \"ANAT 101-South\"\n    },\n    {\n        \"courseID\": \"1026\",\n        \"course_name\": \"Anesthesiology\",\n        \"course_abbrev\": \"ANES\"\n    },\n    {\n        \"courseID\": \"1036\",\n        \"course_name\": \"Anesthesiology - East Rivendell Campus\",\n        \"course_abbrev\": \"ANES-ERivC\"\n    },\n    {\n        \"courseID\": \"1040\",\n        \"course_name\": \"Anesthesiology - Lothlorien Campus\",\n        \"course_abbrev\": \"ANES-LothC\"\n    },\n    {\n        \"courseID\": \"1038\",\n        \"course_name\": \"Anesthesiology - North Rivendell Campus\",\n        \"course_abbrev\": \"ANES-NRivC\"\n    },\n    {\n        \"courseID\": \"1039\",\n        \"course_name\": \"Anesthesiology - South Rivendell Campus\",\n        \"course_abbrev\": \"ANES-SRivC\"\n    },\n    {\n        \"courseID\": \"1037\",\n        \"course_name\": \"Anesthesiology - West Rivendell Campus\",\n        \"course_abbrev\": \"ANES-WrivC\"\n    },\n    {\n        \"courseID\": \"768\",\n        \"course_name\": \"AO Longitudinal Course for Testing\",\n        \"course_abbrev\": \"AOLCT\"\n    },\n    {\n        \"courseID\": \"769\",\n        \"course_name\": \"AO Longitudinal Course for Testing 2\",\n        \"course_abbrev\": \"AOLCT2\"\n    },\n    {\n        \"courseID\": \"883\",\n        \"course_name\": \"API Test Course\",\n        \"course_abbrev\": \"API-TEST\"\n    },\n    {\n        \"courseID\": \"884\",\n        \"course_name\": \"API Test Course 4\",\n        \"course_abbrev\": \"APITEST4\"\n    },\n    {\n        \"courseID\": \"229\",\n        \"course_name\": \"AWAY - Electives\",\n        \"course_abbrev\": \"AWAY ELECTIVE\"\n    },\n    {\n        \"courseID\": \"230\",\n        \"course_name\": \"AWAY - Subinternships\",\n        \"course_abbrev\": \"AWAY SUB-I\"\n    },\n    {\n        \"courseID\": \"833\",\n        \"course_name\": \"Away Elective 1\",\n        \"course_abbrev\": \"AWY EL 1\"\n    },\n    {\n        \"courseID\": \"764\",\n        \"course_name\": \"Basket weaving\",\n        \"course_abbrev\": \"BW\"\n    },\n    {\n        \"courseID\": \"750\",\n        \"course_name\": \"BB Test\",\n        \"course_abbrev\": \"BBT\"\n    },\n    {\n        \"courseID\": \"820\",\n        \"course_name\": \"BB Test - Downtown Hospital\",\n        \"course_abbrev\": \"BBT-DH\"\n    },\n    {\n        \"courseID\": \"821\",\n        \"course_name\": \"BB Test - Sunny Side Family Practice\",\n        \"course_abbrev\": \"BBT-SSFP\"\n    },\n    {\n        \"courseID\": \"822\",\n        \"course_name\": \"BB Test - West Medical Group\",\n        \"course_abbrev\": \"BBT-WMG\"\n    },\n    {\n        \"courseID\": \"906\",\n        \"course_name\": \"Becky's Course\",\n        \"course_abbrev\": \"BGC\"\n    },\n    {\n        \"courseID\": \"909\",\n        \"course_name\": \"Becky's Course - Dearborn\",\n        \"course_abbrev\": \"BGC-DRBN\"\n    },\n    {\n        \"courseID\": \"907\",\n        \"course_name\": \"Becky's Course - Gerace\",\n        \"course_abbrev\": \"BGC-GER\"\n    },\n    {\n        \"courseID\": \"908\",\n        \"course_name\": \"Becky's Course - Grand Rapids\",\n        \"course_abbrev\": \"BGC-GR\"\n    },\n    {\n        \"courseID\": \"1027\",\n        \"course_name\": \"Cardiovascular Diseases\",\n        \"course_abbrev\": \"CV\"\n    },\n    {\n        \"courseID\": \"1041\",\n        \"course_name\": \"Cardiovascular Diseases - East Rivendell Campus\",\n        \"course_abbrev\": \"CV-ERivC\"\n    },\n    {\n        \"courseID\": \"1043\",\n        \"course_name\": \"Cardiovascular Diseases - Lothlorien Campus\",\n        \"course_abbrev\": \"CV-LothC\"\n    },\n    {\n        \"courseID\": \"1042\",\n        \"course_name\": \"Cardiovascular Diseases - South Rivendell Campus\",\n        \"course_abbrev\": \"CV-SRivC\"\n    },\n    {\n        \"courseID\": \"845\",\n        \"course_name\": \"CEK Overlap Terms - Cohort Lottery Test\",\n        \"course_abbrev\": \"CEK Overlap Tes\"\n    },\n    {\n        \"courseID\": \"1069\",\n        \"course_name\": \"Christina's Test Course\",\n        \"course_abbrev\": \"CTC\"\n    },\n    {\n        \"courseID\": \"1\",\n        \"course_name\": \"Clerkship: Ambulatory Medicine (4WK)\",\n        \"course_abbrev\": \"IMED CLK100\"\n    },\n    {\n        \"courseID\": \"803\",\n        \"course_name\": \"Clerkship: Ambulatory Medicine (4WK) - Phoenix\",\n        \"course_abbrev\": \"IMED CLK100-PHX\"\n    },\n    {\n        \"courseID\": \"802\",\n        \"course_name\": \"Clerkship: Ambulatory Medicine (4WK) - San Diego\",\n        \"course_abbrev\": \"IMED CLK100-SD\"\n    },\n    {\n        \"courseID\": \"245\",\n        \"course_name\": \"Clerkship: Anesthesiology (2WK)\",\n        \"course_abbrev\": \"ANES CLK1\"\n    },\n    {\n        \"courseID\": \"7\",\n        \"course_name\": \"Clerkship: Clinical Neuroscience (4WK)\",\n        \"course_abbrev\": \"NEUR CLK100\"\n    },\n    {\n        \"courseID\": \"244\",\n        \"course_name\": \"Clerkship: Emergency Medicine (2WK)\",\n        \"course_abbrev\": \"EMED CLK1\"\n    },\n    {\n        \"courseID\": \"823\",\n        \"course_name\": \"Clerkship: Emergency Medicine (2WK) - Downtown Hospital\",\n        \"course_abbrev\": \"EMED CLK1-DH\"\n    },\n    {\n        \"courseID\": \"824\",\n        \"course_name\": \"Clerkship: Emergency Medicine (2WK) - Main Street Hospital\",\n        \"course_abbrev\": \"EMED CLK1-MSH\"\n    },\n    {\n        \"courseID\": \"825\",\n        \"course_name\": \"Clerkship: Emergency Medicine (2WK) - Phoenix\",\n        \"course_abbrev\": \"EMED CLK1-PHX\"\n    },\n    {\n        \"courseID\": \"232\",\n        \"course_name\": \"Clerkship: Internal Medicine\",\n        \"course_abbrev\": \"IM\"\n    },\n    {\n        \"courseID\": \"741\",\n        \"course_name\": \"Clerkship: Internal Medicine (12 WK)\",\n        \"course_abbrev\": \"IMLC\"\n    },\n    {\n        \"courseID\": \"579\",\n        \"course_name\": \"Clerkship: Internal Medicine (8WK)\",\n        \"course_abbrev\": \"IMED CLK102\"\n    },\n    {\n        \"courseID\": \"933\",\n        \"course_name\": \"Clerkship: Internal Medicine - Detroit\",\n        \"course_abbrev\": \"IM-DET\"\n    },\n    {\n        \"courseID\": \"808\",\n        \"course_name\": \"Clerkship: Internal Medicine - Downtown Hospital\",\n        \"course_abbrev\": \"IM-DH\"\n    },\n    {\n        \"courseID\": \"809\",\n        \"course_name\": \"Clerkship: Internal Medicine - Family Planning Clinic\",\n        \"course_abbrev\": \"IM-FPC\"\n    },\n    {\n        \"courseID\": \"814\",\n        \"course_name\": \"Clerkship: Internal Medicine - Main Street Hospital\",\n        \"course_abbrev\": \"IM-MSH\"\n    },\n    {\n        \"courseID\": \"807\",\n        \"course_name\": \"Clerkship: Internal Medicine - Memorial Hospital\",\n        \"course_abbrev\": \"IM-MH\"\n    },\n    {\n        \"courseID\": \"806\",\n        \"course_name\": \"Clerkship: Internal Medicine - Phoenix\",\n        \"course_abbrev\": \"IM-PHX\"\n    },\n    {\n        \"courseID\": \"2\",\n        \"course_name\": \"Clerkship: Internal Medicine I (4WK)\",\n        \"course_abbrev\": \"IMED CLK102\"\n    },\n    {\n        \"courseID\": \"679\",\n        \"course_name\": \"Clerkship: Internal Medicine, Medical Approach to the Patient\",\n        \"course_abbrev\": \"CL MAP-IM\"\n    },\n    {\n        \"courseID\": \"680\",\n        \"course_name\": \"Clerkship: Neurology, Medical Approach to the Patient\",\n        \"course_abbrev\": \"CL MAP-NE\"\n    },\n    {\n        \"courseID\": \"356\",\n        \"course_name\": \"Clerkship: Ob/Gyn\",\n        \"course_abbrev\": \"Ob/Gyn\"\n    },\n    {\n        \"courseID\": \"8\",\n        \"course_name\": \"Clerkship: Obstetrics and Gynecology (6WK)\",\n        \"course_abbrev\": \"OBGY CLK100\"\n    },\n    {\n        \"courseID\": \"5\",\n        \"course_name\": \"Clerkship: Pediatrics I (4WK)\",\n        \"course_abbrev\": \"PEDS CLK100\"\n    },\n    {\n        \"courseID\": \"873\",\n        \"course_name\": \"Clerkship: Pediatrics I (4WK) - Ann Arbor\",\n        \"course_abbrev\": \"PEDS CLK100-AA\"\n    },\n    {\n        \"courseID\": \"874\",\n        \"course_name\": \"Clerkship: Pediatrics I (4WK) - Dearborn\",\n        \"course_abbrev\": \"PEDS CLK100-DRBN\"\n    },\n    {\n        \"courseID\": \"875\",\n        \"course_name\": \"Clerkship: Pediatrics I (4WK) - Detroit\",\n        \"course_abbrev\": \"PEDS CLK100-DET\"\n    },\n    {\n        \"courseID\": \"876\",\n        \"course_name\": \"Clerkship: Pediatrics I (4WK) - Flint\",\n        \"course_abbrev\": \"PEDS CLK100-FLT\"\n    },\n    {\n        \"courseID\": \"6\",\n        \"course_name\": \"Clerkship: Pediatrics II (4WK)\",\n        \"course_abbrev\": \"PEDS CLK102\"\n    },\n    {\n        \"courseID\": \"714\",\n        \"course_name\": \"Clerkship: Pediatrics Inpatient (3 WK)\",\n        \"course_abbrev\": \"PEDS CLK1\"\n    },\n    {\n        \"courseID\": \"330\",\n        \"course_name\": \"Clerkship: Pediatrics Longitudinal\",\n        \"course_abbrev\": \"PEDS CLK102\"\n    },\n    {\n        \"courseID\": \"715\",\n        \"course_name\": \"Clerkship: Pediatrics Outpatient (3 WK)\",\n        \"course_abbrev\": \"PEDS CLK2\"\n    },\n    {\n        \"courseID\": \"689\",\n        \"course_name\": \"Clerkship: Primary Care &amp; Psychiatry\",\n        \"course_abbrev\": \"CL PCP-PC\"\n    },\n    {\n        \"courseID\": \"335\",\n        \"course_name\": \"Clerkship: Primary Care (12WK)\",\n        \"course_abbrev\": \"PCC Long\"\n    },\n    {\n        \"courseID\": \"800\",\n        \"course_name\": \"Clerkship: Primary Care (12WK) - Phoenix\",\n        \"course_abbrev\": \"PCC Long-PHX\"\n    },\n    {\n        \"courseID\": \"801\",\n        \"course_name\": \"Clerkship: Primary Care (12WK) - San Diego\",\n        \"course_abbrev\": \"PCC Long-SD\"\n    },\n    {\n        \"courseID\": \"4\",\n        \"course_name\": \"Clerkship: Primary Care (4WK)\",\n        \"course_abbrev\": \"IMED CLK104\"\n    },\n    {\n        \"courseID\": \"223\",\n        \"course_name\": \"Clerkship: Primary Care Evening Clinic\",\n        \"course_abbrev\": \"WEC\"\n    },\n    {\n        \"courseID\": \"475\",\n        \"course_name\": \"Clerkship: Psychiatry (12WK)\",\n        \"course_abbrev\": \"PSYC Long\"\n    },\n    {\n        \"courseID\": \"9\",\n        \"course_name\": \"Clerkship: Psychiatry (6WK)\",\n        \"course_abbrev\": \"PSYC CLK100\"\n    },\n    {\n        \"courseID\": \"233\",\n        \"course_name\": \"Clerkship: Surgery\",\n        \"course_abbrev\": \"Surgery\"\n    },\n    {\n        \"courseID\": \"10\",\n        \"course_name\": \"Clerkship: Surgery / ER / Anesthesiology (12WK)\",\n        \"course_abbrev\": \"SURG CLK100\"\n    },\n    {\n        \"courseID\": \"783\",\n        \"course_name\": \"Clinical Medicine\",\n        \"course_abbrev\": \"MED 1000\"\n    },\n    {\n        \"courseID\": \"913\",\n        \"course_name\": \"Cody\",\n        \"course_abbrev\": \"CB\"\n    },\n    {\n        \"courseID\": \"914\",\n        \"course_name\": \"Cody - Beard\",\n        \"course_abbrev\": \"CB-Beard\"\n    },\n    {\n        \"courseID\": \"887\",\n        \"course_name\": \"Cody's test course\",\n        \"course_abbrev\": \"CTC\"\n    },\n    {\n        \"courseID\": \"1028\",\n        \"course_name\": \"Colon and Rectal Surgery\",\n        \"course_abbrev\": \"CRS\"\n    },\n    {\n        \"courseID\": \"1044\",\n        \"course_name\": \"Colon and Rectal Surgery - East Rivendell Campus\",\n        \"course_abbrev\": \"CRS-ERivC\"\n    },\n    {\n        \"courseID\": \"1045\",\n        \"course_name\": \"Colon and Rectal Surgery - North Rivendell Campus\",\n        \"course_abbrev\": \"CRS-NRivC\"\n    },\n    {\n        \"courseID\": \"1046\",\n        \"course_name\": \"Colon and Rectal Surgery - South Rivendell Campus\",\n        \"course_abbrev\": \"CRS-SRivC\"\n    },\n    {\n        \"courseID\": \"1047\",\n        \"course_name\": \"Colon and Rectal Surgery - West Rivendell Campus\",\n        \"course_abbrev\": \"CRS-WrivC\"\n    },\n    {\n        \"courseID\": \"225\",\n        \"course_name\": \"Commencement\",\n        \"course_abbrev\": \"COMMENCEMENT\"\n    },\n    {\n        \"courseID\": \"770\",\n        \"course_name\": \"Course Name\",\n        \"course_abbrev\": \"CN\"\n    },\n    {\n        \"courseID\": \"1029\",\n        \"course_name\": \"Critical Care\",\n        \"course_abbrev\": \"CC\"\n    },\n    {\n        \"courseID\": \"1053\",\n        \"course_name\": \"Critical Care - East Rivendell Campus\",\n        \"course_abbrev\": \"CC-ERivC\"\n    },\n    {\n        \"courseID\": \"1056\",\n        \"course_name\": \"Critical Care - Lothlorien Campus\",\n        \"course_abbrev\": \"CC-LothC\"\n    },\n    {\n        \"courseID\": \"1055\",\n        \"course_name\": \"Critical Care - South Rivendell Campus\",\n        \"course_abbrev\": \"CC-SRivC\"\n    },\n    {\n        \"courseID\": \"1054\",\n        \"course_name\": \"Critical Care - West Rivendell Campus\",\n        \"course_abbrev\": \"CC-WrivC\"\n    },\n    {\n        \"courseID\": \"1120\",\n        \"course_name\": \"Crump Clinic\",\n        \"course_abbrev\": \"CC\"\n    },\n    {\n        \"courseID\": \"490\",\n        \"course_name\": \"CS Ambulatory Medicine Dermatology Selective\",\n        \"course_abbrev\": \"SELECT\"\n    },\n    {\n        \"courseID\": \"730\",\n        \"course_name\": \"CS Primary Care Dermatology Selective\",\n        \"course_abbrev\": \"SELECT\"\n    },\n    {\n        \"courseID\": \"489\",\n        \"course_name\": \"CS Surgery Ophthalmology Selective\",\n        \"course_abbrev\": \"SELECT\"\n    },\n    {\n        \"courseID\": \"491\",\n        \"course_name\": \"CS Surgery Orthopaedic Selective\",\n        \"course_abbrev\": \"SELECT\"\n    },\n    {\n        \"courseID\": \"584\",\n        \"course_name\": \"CS Surgery Urology Selective\",\n        \"course_abbrev\": \"SELECT\"\n    },\n    {\n        \"courseID\": \"1034\",\n        \"course_name\": \"Dermatology\",\n        \"course_abbrev\": \"DERM\"\n    },\n    {\n        \"courseID\": \"941\",\n        \"course_name\": \"Dexter Course - Ann Arbor\",\n        \"course_abbrev\": \"DXC-AA\"\n    },\n    {\n        \"courseID\": \"940\",\n        \"course_name\": \"Dexter Course - Dearborn\",\n        \"course_abbrev\": \"DXC-DRBN\"\n    },\n    {\n        \"courseID\": \"942\",\n        \"course_name\": \"Dexter Course - Warren\",\n        \"course_abbrev\": \"DXC-WRN\"\n    },\n    {\n        \"courseID\": \"1083\",\n        \"course_name\": \"DG-Family Medicine Core Clerkship\",\n        \"course_abbrev\": \"DG FAML - 9301\"\n    },\n    {\n        \"courseID\": \"1091\",\n        \"course_name\": \"DG-Family Medicine Core Clerkship - Allina Health\",\n        \"course_abbrev\": \"DG FAML - 9301-\"\n    },\n    {\n        \"courseID\": \"1087\",\n        \"course_name\": \"DG-Family Medicine Core Clerkship - East Clinic\",\n        \"course_abbrev\": \"DG FAML - 9301-\"\n    },\n    {\n        \"courseID\": \"1090\",\n        \"course_name\": \"DG-Family Medicine Core Clerkship - Fields Clinic\",\n        \"course_abbrev\": \"DG FAML - 9301-\"\n    },\n    {\n        \"courseID\": \"1084\",\n        \"course_name\": \"DG-Family Medicine Core Clerkship - Memorial Hospital\",\n        \"course_abbrev\": \"DG FAML - 9301-\"\n    },\n    {\n        \"courseID\": \"1088\",\n        \"course_name\": \"DG-Family Medicine Core Clerkship - North Clinic\",\n        \"course_abbrev\": \"DG FAML - 9301-\"\n    },\n    {\n        \"courseID\": \"1089\",\n        \"course_name\": \"DG-Family Medicine Core Clerkship - South Clinic\",\n        \"course_abbrev\": \"DG FAML - 9301-\"\n    },\n    {\n        \"courseID\": \"1085\",\n        \"course_name\": \"DG-Family Medicine Core Clerkship - West Clinic\",\n        \"course_abbrev\": \"DG FAML - 9301-\"\n    },\n    {\n        \"courseID\": \"1086\",\n        \"course_name\": \"DG-Family Medicine Core Clerkship - West Medical Group\",\n        \"course_abbrev\": \"DG FAML - 9301-\"\n    },\n    {\n        \"courseID\": \"1092\",\n        \"course_name\": \"DG-Internal Medicine Core Clerkship\",\n        \"course_abbrev\": \"DG INMD-9301\"\n    },\n    {\n        \"courseID\": \"1095\",\n        \"course_name\": \"DG-Internal Medicine Core Clerkship - Memorial Hospital\",\n        \"course_abbrev\": \"DG INMD-9301-MH\"\n    },\n    {\n        \"courseID\": \"1093\",\n        \"course_name\": \"DG-Internal Medicine Core Clerkship - NE Clinic\",\n        \"course_abbrev\": \"DG INMD-9301-NE\"\n    },\n    {\n        \"courseID\": \"1096\",\n        \"course_name\": \"DG-Internal Medicine Core Clerkship - NW Clinic\",\n        \"course_abbrev\": \"DG INMD-9301-NW\"\n    },\n    {\n        \"courseID\": \"1094\",\n        \"course_name\": \"DG-Internal Medicine Core Clerkship - SE Clinic\",\n        \"course_abbrev\": \"DG INMD-9301-SE\"\n    },\n    {\n        \"courseID\": \"1097\",\n        \"course_name\": \"DG-Internal Medicine Core Clerkship - SW Clinic\",\n        \"course_abbrev\": \"DG INMD-9301-SW\"\n    },\n    {\n        \"courseID\": \"1098\",\n        \"course_name\": \"DG-Pediatrics Clerkship\",\n        \"course_abbrev\": \"DG PEDS 9301\"\n    },\n    {\n        \"courseID\": \"1105\",\n        \"course_name\": \"DG-Pediatrics Clerkship - Allina Health\",\n        \"course_abbrev\": \"DG PEDS-AH\"\n    },\n    {\n        \"courseID\": \"1099\",\n        \"course_name\": \"DG-Pediatrics Clerkship - East Clinic\",\n        \"course_abbrev\": \"DG PEDS-East Cl\"\n    },\n    {\n        \"courseID\": \"1106\",\n        \"course_name\": \"DG-Pediatrics Clerkship - Flint\",\n        \"course_abbrev\": \"DG PEDS-FLT\"\n    },\n    {\n        \"courseID\": \"1102\",\n        \"course_name\": \"DG-Pediatrics Clerkship - Memorial Hospital\",\n        \"course_abbrev\": \"DG PEDS-MH\"\n    },\n    {\n        \"courseID\": \"1100\",\n        \"course_name\": \"DG-Pediatrics Clerkship - North Clinic\",\n        \"course_abbrev\": \"DG PEDS-North C\"\n    },\n    {\n        \"courseID\": \"1101\",\n        \"course_name\": \"DG-Pediatrics Clerkship - South Clinic\",\n        \"course_abbrev\": \"DG PEDS-South C\"\n    },\n    {\n        \"courseID\": \"1103\",\n        \"course_name\": \"DG-Pediatrics Clerkship - Sunny Side Family Practice\",\n        \"course_abbrev\": \"DG PEDS-SSFP\"\n    },\n    {\n        \"courseID\": \"1104\",\n        \"course_name\": \"DG-Pediatrics Clerkship - West Medical Group\",\n        \"course_abbrev\": \"DG PEDS-WMG\"\n    },\n    {\n        \"courseID\": \"1030\",\n        \"course_name\": \"Diagnostic Radiology\",\n        \"course_abbrev\": \"RAD\"\n    },\n    {\n        \"courseID\": \"1009\",\n        \"course_name\": \"Doctoring I\",\n        \"course_abbrev\": \"DOCT\"\n    },\n    {\n        \"courseID\": \"1010\",\n        \"course_name\": \"Doctoring II\",\n        \"course_abbrev\": \"DOCT\"\n    },\n    {\n        \"courseID\": \"13\",\n        \"course_name\": \"EL Anesthesiology Advanced Clinical Elective (4WK)\",\n        \"course_abbrev\": \"ANES 301\"\n    },\n    {\n        \"courseID\": \"12\",\n        \"course_name\": \"EL Anesthesiology Clinical Research Elective (4WK)\",\n        \"course_abbrev\": \"ANES 303\"\n    },\n    {\n        \"courseID\": \"14\",\n        \"course_name\": \"EL Anesthesiology Laboratory Research Elective (4WK)\",\n        \"course_abbrev\": \"ANES 302\"\n    },\n    {\n        \"courseID\": \"16\",\n        \"course_name\": \"EL Child Study Center Clinical Research Elective (4WK)\",\n        \"course_abbrev\": \"CHST 302\"\n    },\n    {\n        \"courseID\": \"15\",\n        \"course_name\": \"EL Child Study Center Psychiatry Elective (4WK)\",\n        \"course_abbrev\": \"CHST 300\"\n    },\n    {\n        \"courseID\": \"576\",\n        \"course_name\": \"EL Clinical Dermatology Elective (2WK) AWAY UCSF\",\n        \"course_abbrev\": \"DERM\"\n    },\n    {\n        \"courseID\": \"612\",\n        \"course_name\": \"EL Clinical Dermatology Elective (4WK) AWAY Harvard\",\n        \"course_abbrev\": \"DERM\"\n    },\n    {\n        \"courseID\": \"657\",\n        \"course_name\": \"EL Clinical Experience in Radiation Oncology\",\n        \"course_abbrev\": \"THER\"\n    },\n    {\n        \"courseID\": \"722\",\n        \"course_name\": \"EL Critical Care Emergency Medicine  UNC\",\n        \"course_abbrev\": \"EMER\"\n    },\n    {\n        \"courseID\": \"723\",\n        \"course_name\": \"EL Critical Care Emergency Medicine (4WK) AWAY UNC\",\n        \"course_abbrev\": \"EMER\"\n    },\n    {\n        \"courseID\": \"622\",\n        \"course_name\": \"EL Cushing/Whitney Medical Library Information Survival Skills Elective (2WK)\",\n        \"course_abbrev\": \"SECT ED 210\"\n    },\n    {\n        \"courseID\": \"678\",\n        \"course_name\": \"EL Dermatology Consult Elective (4WK) AWAY  COLUMBIA UNI\",\n        \"course_abbrev\": \"DERM\"\n    },\n    {\n        \"courseID\": \"415\",\n        \"course_name\": \"EL Dermatology Elective (4WK) AWAY  UCSF\",\n        \"course_abbrev\": \"DERM\"\n    },\n    {\n        \"courseID\": \"702\",\n        \"course_name\": \"EL Dermatology Elective (4WK) AWAY_San Antonio Military\",\n        \"course_abbrev\": \"DERM\"\n    },\n    {\n        \"courseID\": \"703\",\n        \"course_name\": \"EL Dermatology Elective (4WK) AWAY_Walter Reed  Military\",\n        \"course_abbrev\": \"DERM\"\n    },\n    {\n        \"courseID\": \"18\",\n        \"course_name\": \"EL Dermatology Inpatient Consult Elective  (4WK)\",\n        \"course_abbrev\": \"DERM 302\"\n    },\n    {\n        \"courseID\": \"17\",\n        \"course_name\": \"EL Dermatology Outpatient Elective (4WK)\",\n        \"course_abbrev\": \"DERM 305\"\n    },\n    {\n        \"courseID\": \"717\",\n        \"course_name\": \"EL Diagnostic Radiology Clinical Elective (3WK)\",\n        \"course_abbrev\": \"DIAG\"\n    },\n    {\n        \"courseID\": \"24\",\n        \"course_name\": \"EL Diagnostic Radiology Clinical Elective (4WK)\",\n        \"course_abbrev\": \"DIAG 301\"\n    },\n    {\n        \"courseID\": \"306\",\n        \"course_name\": \"EL Diagnostic Radiology Neuroradiology Elective (2WK)\",\n        \"course_abbrev\": \"DIAG 309\"\n    },\n    {\n        \"courseID\": \"19\",\n        \"course_name\": \"EL Diagnostic Radiology Neuroradiology Elective (4WK)\",\n        \"course_abbrev\": \"DIAG 309\"\n    },\n    {\n        \"courseID\": \"20\",\n        \"course_name\": \"EL Diagnostic Radiology Pediatric Imaging Elective (2WK)\",\n        \"course_abbrev\": \"DIAG306\"\n    },\n    {\n        \"courseID\": \"21\",\n        \"course_name\": \"EL Diagnostic Radiology Pediatric Imaging Elective (4WK)\",\n        \"course_abbrev\": \"DIAG 307\"\n    },\n    {\n        \"courseID\": \"22\",\n        \"course_name\": \"EL Diagnostic Radiology Vascular and Interventional Radiology Elective (2WK)\",\n        \"course_abbrev\": \"DIAG 312\"\n    },\n    {\n        \"courseID\": \"25\",\n        \"course_name\": \"EL Emergency Medicine Point-of-Care Ultrasound Elective (2WK)\",\n        \"course_abbrev\": \"EMER 303\"\n    },\n    {\n        \"courseID\": \"26\",\n        \"course_name\": \"EL Emergency Medicine Point-of-Care Ultrasound Elective (4WK)\",\n        \"course_abbrev\": \"EMER 304\"\n    },\n    {\n        \"courseID\": \"483\",\n        \"course_name\": \"EL Family and Transgender Medicine Elective (Oneonta, NY)  (2WK)\",\n        \"course_abbrev\": \"FMED NY\"\n    },\n    {\n        \"courseID\": \"285\",\n        \"course_name\": \"EL Family and Transgender Medicine Elective (Oneonta, NY)  (4WK)\",\n        \"course_abbrev\": \"FMED NY\"\n    },\n    {\n        \"courseID\": \"29\",\n        \"course_name\": \"EL Family Medicine Elective (Middlesex Hospital)  (4WK)\",\n        \"course_abbrev\": \"FMED 100\"\n    },\n    {\n        \"courseID\": \"719\",\n        \"course_name\": \"EL Family Medicine Preceptorship Elective (AWAY) EMORY\",\n        \"course_abbrev\": \"FMED\"\n    },\n    {\n        \"courseID\": \"720\",\n        \"course_name\": \"EL Family Medicine Preceptorship Elective (AWAY) EMORY Uni.\",\n        \"course_abbrev\": \"FMED\"\n    },\n    {\n        \"courseID\": \"31\",\n        \"course_name\": \"EL Genetics Medical Genetics Elective (2WK)\",\n        \"course_abbrev\": \"GENE 300A\"\n    },\n    {\n        \"courseID\": \"32\",\n        \"course_name\": \"EL Genetics Medical Genetics Elective (4WK)\",\n        \"course_abbrev\": \"GENE 300B\"\n    },\n    {\n        \"courseID\": \"686\",\n        \"course_name\": \"EL Hematology/Oncology Clinics and Consultation Elective (AWAY) Walter Reed Mil\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"35\",\n        \"course_name\": \"EL Internal Medicine Allergy and Immunology Elective (2WK)\",\n        \"course_abbrev\": \"IMED 318\"\n    },\n    {\n        \"courseID\": \"36\",\n        \"course_name\": \"EL Internal Medicine Allergy and Immunology Elective (4WK)\",\n        \"course_abbrev\": \"IMED 306\"\n    },\n    {\n        \"courseID\": \"37\",\n        \"course_name\": \"EL Internal Medicine Analytical Clinical Cardiology Elective (2WK)\",\n        \"course_abbrev\": \"IMED 208\"\n    },\n    {\n        \"courseID\": \"38\",\n        \"course_name\": \"EL Internal Medicine Analytical Clinical Cardiology Elective (4WK)\",\n        \"course_abbrev\": \"IMED 304\"\n    },\n    {\n        \"courseID\": \"39\",\n        \"course_name\": \"EL Internal Medicine Cardiology Elective (VAMC) (2WK)\",\n        \"course_abbrev\": \"IMED 303A\"\n    },\n    {\n        \"courseID\": \"40\",\n        \"course_name\": \"EL Internal Medicine Cardiology Elective (VAMC) (4WK)\",\n        \"course_abbrev\": \"IMED 303B\"\n    },\n    {\n        \"courseID\": \"41\",\n        \"course_name\": \"EL Internal Medicine Cardiology Elective (YNHH) (4WK)\",\n        \"course_abbrev\": \"IMED 302\"\n    },\n    {\n        \"courseID\": \"67\",\n        \"course_name\": \"EL Internal Medicine Critical Care Elective (YNHH/SRC) (2WK)\",\n        \"course_abbrev\": \"IMED 330\"\n    },\n    {\n        \"courseID\": \"68\",\n        \"course_name\": \"EL Internal Medicine Critical Care Elective (YNHH/SRC) (4WK)\",\n        \"course_abbrev\": \"IMED 327\"\n    },\n    {\n        \"courseID\": \"75\",\n        \"course_name\": \"EL Internal Medicine Elective for MD/PhD Students (YNHH/SRC) (2WK)\",\n        \"course_abbrev\": \"IMED 333\"\n    },\n    {\n        \"courseID\": \"76\",\n        \"course_name\": \"EL Internal Medicine Elective for MD/PhD Students (YNHH/SRC) (4WK)\",\n        \"course_abbrev\": \"IMED 361\"\n    },\n    {\n        \"courseID\": \"47\",\n        \"course_name\": \"EL Internal Medicine Endocrinology Elective (4WK)\",\n        \"course_abbrev\": \"IMED 309\"\n    },\n    {\n        \"courseID\": \"42\",\n        \"course_name\": \"EL Internal Medicine Gastroenterology Elective (2WK)\",\n        \"course_abbrev\": \"IMED 314\"\n    },\n    {\n        \"courseID\": \"43\",\n        \"course_name\": \"EL Internal Medicine Gastroenterology Elective (4WK)\",\n        \"course_abbrev\": \"IMED 307\"\n    },\n    {\n        \"courseID\": \"48\",\n        \"course_name\": \"EL Internal Medicine General Medicine Consult Elective (2WK)\",\n        \"course_abbrev\": \"IMED 363\"\n    },\n    {\n        \"courseID\": \"49\",\n        \"course_name\": \"EL Internal Medicine General Medicine Consult Elective (4WK)\",\n        \"course_abbrev\": \"IMED 360\"\n    },\n    {\n        \"courseID\": \"72\",\n        \"course_name\": \"EL Internal Medicine Geriatric Medicine Elective (YNHH/SRC) (2WK)\",\n        \"course_abbrev\": \"IMED 332\"\n    },\n    {\n        \"courseID\": \"73\",\n        \"course_name\": \"EL Internal Medicine Geriatric Medicine Elective (YNHH/SRC) (4WK)\",\n        \"course_abbrev\": \"IMED 326\"\n    },\n    {\n        \"courseID\": \"50\",\n        \"course_name\": \"EL Internal Medicine Geriatric Medicine Elective (YNHH/YSC) (2WK)\",\n        \"course_abbrev\": \"IMED 311\"\n    },\n    {\n        \"courseID\": \"51\",\n        \"course_name\": \"EL Internal Medicine Geriatric Medicine Elective (YNHH/YSC) (4WK)\",\n        \"course_abbrev\": \"IMED 312\"\n    },\n    {\n        \"courseID\": \"52\",\n        \"course_name\": \"EL Internal Medicine Hematology Elective (2WK)\",\n        \"course_abbrev\": \"IMED 210\"\n    },\n    {\n        \"courseID\": \"590\",\n        \"course_name\": \"EL Internal Medicine Hematology Elective (4WK)\",\n        \"course_abbrev\": \"IMED 210\"\n    },\n    {\n        \"courseID\": \"44\",\n        \"course_name\": \"EL Internal Medicine Hepatology Elective (2WK)\",\n        \"course_abbrev\": \"IMED 315A\"\n    },\n    {\n        \"courseID\": \"45\",\n        \"course_name\": \"EL Internal Medicine Hepatology Elective (4WK)\",\n        \"course_abbrev\": \"IMED 315B\"\n    },\n    {\n        \"courseID\": \"433\",\n        \"course_name\": \"EL Internal Medicine Infectious Disease Elective (2WK)\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"53\",\n        \"course_name\": \"EL Internal Medicine Infectious Disease Elective (4WK)\",\n        \"course_abbrev\": \"IMED 316\"\n    },\n    {\n        \"courseID\": \"33\",\n        \"course_name\": \"EL Internal Medicine Medical Intensive Care Elective (MICU) (2WK)\",\n        \"course_abbrev\": \"IMED 300\"\n    },\n    {\n        \"courseID\": \"34\",\n        \"course_name\": \"EL Internal Medicine Medical Intensive Care Elective (MICU) (4WK)\",\n        \"course_abbrev\": \"IMED 301\"\n    },\n    {\n        \"courseID\": \"500\",\n        \"course_name\": \"EL Internal Medicine Medicine Elective (4WK) AWAY Uni of Toronto\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"370\",\n        \"course_name\": \"EL Internal Medicine Nephrology Elective (YNHH &amp; VAMC) (2WK)\",\n        \"course_abbrev\": \"IMED 319\"\n    },\n    {\n        \"courseID\": \"54\",\n        \"course_name\": \"EL Internal Medicine Nephrology Elective (YNHH &amp; VAMC) (4WK)\",\n        \"course_abbrev\": \"IMED 319\"\n    },\n    {\n        \"courseID\": \"609\",\n        \"course_name\": \"EL Internal Medicine Nephrology Elective AWAY (4WK) Cleveland Clinic\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"56\",\n        \"course_name\": \"EL Internal Medicine Occupational &amp; Environmental Medicine Elective (2WK)\",\n        \"course_abbrev\": \"IMED 324\"\n    },\n    {\n        \"courseID\": \"57\",\n        \"course_name\": \"EL Internal Medicine Occupational &amp; Environmental Medicine Elective (4WK)\",\n        \"course_abbrev\": \"IMED 320\"\n    },\n    {\n        \"courseID\": \"58\",\n        \"course_name\": \"EL Internal Medicine Oncology Elective (2WK)\",\n        \"course_abbrev\": \"IMED 299\"\n    },\n    {\n        \"courseID\": \"59\",\n        \"course_name\": \"EL Internal Medicine Oncology Elective (4WK)\",\n        \"course_abbrev\": \"IMED 322\"\n    },\n    {\n        \"courseID\": \"60\",\n        \"course_name\": \"EL Internal Medicine Palliative/Hospice Medicine Elective (Branford, CT) (2WK)\",\n        \"course_abbrev\": \"IMED 209\"\n    },\n    {\n        \"courseID\": \"61\",\n        \"course_name\": \"EL Internal Medicine Palliative/Hospice Medicine Elective (Branford, CT) (4WK)\",\n        \"course_abbrev\": \"IMED 321\"\n    },\n    {\n        \"courseID\": \"62\",\n        \"course_name\": \"EL Internal Medicine Pulmonary Elective (YNHH &amp; VAMC) (2WK)\",\n        \"course_abbrev\": \"IMED 323A\"\n    },\n    {\n        \"courseID\": \"63\",\n        \"course_name\": \"EL Internal Medicine Pulmonary Elective (YNHH &amp; VAMC) (4WK)\",\n        \"course_abbrev\": \"IMED 323B\"\n    },\n    {\n        \"courseID\": \"64\",\n        \"course_name\": \"EL Internal Medicine Rheumatology Elective (2WK)\",\n        \"course_abbrev\": \"IMED 211\"\n    },\n    {\n        \"courseID\": \"65\",\n        \"course_name\": \"EL Internal Medicine Rheumatology Elective (4WK)\",\n        \"course_abbrev\": \"IMED 325\"\n    },\n    {\n        \"courseID\": \"66\",\n        \"course_name\": \"EL Internal Medicine Spiritual Care in the Hospital Setting Elective (4WK)\",\n        \"course_abbrev\": \"IMED 349\"\n    },\n    {\n        \"courseID\": \"687\",\n        \"course_name\": \"EL Internal Medicine Wards Elective (4WK) AWAY_ARMY\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"77\",\n        \"course_name\": \"EL Laboratory Medicine Clinical Elective (2WK)\",\n        \"course_abbrev\": \"LMED 301\"\n    },\n    {\n        \"courseID\": \"78\",\n        \"course_name\": \"EL Laboratory Medicine Clinical Elective (4WK)\",\n        \"course_abbrev\": \"LMED 300\"\n    },\n    {\n        \"courseID\": \"704\",\n        \"course_name\": \"EL Musculoskeletal Radiology Elective (2wk)\",\n        \"course_abbrev\": \"DIAG\"\n    },\n    {\n        \"courseID\": \"649\",\n        \"course_name\": \"EL Musculoskeletal Radiology Elective (2WK) AWAY Mt Sinai\",\n        \"course_abbrev\": \"DIAG\"\n    },\n    {\n        \"courseID\": \"436\",\n        \"course_name\": \"EL Neurology Clinical Elective (Tailored) (2wk)\",\n        \"course_abbrev\": \"NEUR 202\"\n    },\n    {\n        \"courseID\": \"80\",\n        \"course_name\": \"EL Neurology Consult Service Elective (4WK)\",\n        \"course_abbrev\": \"NEUR 201\"\n    },\n    {\n        \"courseID\": \"79\",\n        \"course_name\": \"EL Neurology Ward Service Elective (4WK)\",\n        \"course_abbrev\": \"NEUR 200\"\n    },\n    {\n        \"courseID\": \"84\",\n        \"course_name\": \"EL Obstetrics &amp; Gynecology Elective (Gallup Indian Medical Center, NM) (4WK)\",\n        \"course_abbrev\": \"OBGY 204\"\n    },\n    {\n        \"courseID\": \"243\",\n        \"course_name\": \"EL Obstetrics &amp; Gynecology Family Planning Elective (2WK)\",\n        \"course_abbrev\": \"OBGY 261\"\n    },\n    {\n        \"courseID\": \"90\",\n        \"course_name\": \"EL Obstetrics &amp; Gynecology Family Planning Elective (4WK)\",\n        \"course_abbrev\": \"OBGY 260\"\n    },\n    {\n        \"courseID\": \"237\",\n        \"course_name\": \"EL Obstetrics &amp; Gynecology Outpatient Elective (2WK)\",\n        \"course_abbrev\": \"OBGY 111\"\n    },\n    {\n        \"courseID\": \"238\",\n        \"course_name\": \"EL Obstetrics &amp; Gynecology Outpatient Elective (4WK)\",\n        \"course_abbrev\": \"OBGYN 112\"\n    },\n    {\n        \"courseID\": \"91\",\n        \"course_name\": \"EL Ophthalmology &amp; Visual Science Clinical Elective (2WK)\",\n        \"course_abbrev\": \"OPHT 300\"\n    },\n    {\n        \"courseID\": \"92\",\n        \"course_name\": \"EL Ophthalmology &amp; Visual Science Clinical Elective (4WK)\",\n        \"course_abbrev\": \"OPHT 302\"\n    },\n    {\n        \"courseID\": \"724\",\n        \"course_name\": \"EL Ophthalmology Elective (2 WK) AWAY CORNELL\",\n        \"course_abbrev\": \"OPHT\"\n    },\n    {\n        \"courseID\": \"728\",\n        \"course_name\": \"EL Ophthalmology Elective (4 WK) AWAY NY Eye &amp; Ear\",\n        \"course_abbrev\": \"OPHT\"\n    },\n    {\n        \"courseID\": \"729\",\n        \"course_name\": \"EL Ophthalmology Elective (4 WK) AWAY U Illinois\",\n        \"course_abbrev\": \"OPHT\"\n    },\n    {\n        \"courseID\": \"727\",\n        \"course_name\": \"EL Ophthalmology Elective (4 WK) AWAY U Miami\",\n        \"course_abbrev\": \"OPHT\"\n    },\n    {\n        \"courseID\": \"613\",\n        \"course_name\": \"EL Ophthalmology Elective (4wk) AWAY Harvard\",\n        \"course_abbrev\": \"OPTH\"\n    },\n    {\n        \"courseID\": \"614\",\n        \"course_name\": \"EL Ophthalmology Elective (4wk) AWAY Willis Eye Hosp.\",\n        \"course_abbrev\": \"OPTH\"\n    },\n    {\n        \"courseID\": \"173\",\n        \"course_name\": \"EL Ophthalmology Elective AWAY (2WK) U Toronto\",\n        \"course_abbrev\": \"OPHT AW2\"\n    },\n    {\n        \"courseID\": \"451\",\n        \"course_name\": \"EL Pathology Anatomic Pathology &amp; Laboratory Medicine Combined Elective (4wk)\",\n        \"course_abbrev\": \"PATH 300\"\n    },\n    {\n        \"courseID\": \"94\",\n        \"course_name\": \"EL Pathology Anatomic Pathology Elective (2WK)\",\n        \"course_abbrev\": \"PATH 301\"\n    },\n    {\n        \"courseID\": \"95\",\n        \"course_name\": \"EL Pathology Anatomic Pathology Elective (4WK)\",\n        \"course_abbrev\": \"PATH 300\"\n    },\n    {\n        \"courseID\": \"341\",\n        \"course_name\": \"EL Pathology Neuropathology Elective (2wk)\",\n        \"course_abbrev\": \"PATH 304\"\n    },\n    {\n        \"courseID\": \"342\",\n        \"course_name\": \"EL Pathology Neuropathology Elective (4wk)\",\n        \"course_abbrev\": \"PATH 303\"\n    },\n    {\n        \"courseID\": \"99\",\n        \"course_name\": \"EL Pediatrics Cardiology Elective (4WK)\",\n        \"course_abbrev\": \"PEDS 302\"\n    },\n    {\n        \"courseID\": \"100\",\n        \"course_name\": \"EL Pediatrics Critical Care Medicine Elective (PICU) (4WK)\",\n        \"course_abbrev\": \"PEDS 314\"\n    },\n    {\n        \"courseID\": \"28\",\n        \"course_name\": \"EL Pediatrics Emergency Medicine Elective (4 wk)\",\n        \"course_abbrev\": \"PEDS 303\"\n    },\n    {\n        \"courseID\": \"736\",\n        \"course_name\": \"EL Pediatrics Emergency Medicine Elective Longitudinal\",\n        \"course_abbrev\": \"PEDS 303\"\n    },\n    {\n        \"courseID\": \"101\",\n        \"course_name\": \"EL Pediatrics Endocrinology &amp; Diabetes Elective (4WK)\",\n        \"course_abbrev\": \"PEDS 312\"\n    },\n    {\n        \"courseID\": \"102\",\n        \"course_name\": \"EL Pediatrics Hematology/Oncology Elective (2WK)\",\n        \"course_abbrev\": \"PEDS 304\"\n    },\n    {\n        \"courseID\": \"103\",\n        \"course_name\": \"EL Pediatrics Hematology/Oncology Elective (4WK)\",\n        \"course_abbrev\": \"PEDS 305\"\n    },\n    {\n        \"courseID\": \"104\",\n        \"course_name\": \"EL Pediatrics Infectious Disease Elective (4WK)\",\n        \"course_abbrev\": \"PEDS 306\"\n    },\n    {\n        \"courseID\": \"105\",\n        \"course_name\": \"EL Pediatrics Neonatal-Perinatal Medicine Elective (NNICU) (4WK)\",\n        \"course_abbrev\": \"PEDS 307\"\n    },\n    {\n        \"courseID\": \"106\",\n        \"course_name\": \"EL Pediatrics Respiratory Pulmonary Elective (2WK)\",\n        \"course_abbrev\": \"PEDS 311\"\n    },\n    {\n        \"courseID\": \"107\",\n        \"course_name\": \"EL Pediatrics Respiratory Pulmonary Elective (4WK)\",\n        \"course_abbrev\": \"PEDS 308\"\n    },\n    {\n        \"courseID\": \"108\",\n        \"course_name\": \"EL Psychiatry Adolescent Elective (4WK)\",\n        \"course_abbrev\": \"PSYC 234\"\n    },\n    {\n        \"courseID\": \"111\",\n        \"course_name\": \"EL Psychiatry Early Psychosis Elective (STEP Clinic) (4WK)\",\n        \"course_abbrev\": \"PSYC 238\"\n    },\n    {\n        \"courseID\": \"112\",\n        \"course_name\": \"EL Psychiatry Inpatient Elective (CMHC) (4WK)\",\n        \"course_abbrev\": \"PSYC 203\"\n    },\n    {\n        \"courseID\": \"113\",\n        \"course_name\": \"EL Psychiatry Inpatient Elective (YNHH/YPH) (4WK)\",\n        \"course_abbrev\": \"PSYC 210\"\n    },\n    {\n        \"courseID\": \"834\",\n        \"course_name\": \"EL Psychiatry Inpatient Elective (YNHH/YPH) (4WK) - Downtown Hospital\",\n        \"course_abbrev\": \"PSYC 210-DH\"\n    },\n    {\n        \"courseID\": \"115\",\n        \"course_name\": \"EL Psychiatry Law and Psychiatry Elective (4WK)\",\n        \"course_abbrev\": \"PSYC 206\"\n    },\n    {\n        \"courseID\": \"663\",\n        \"course_name\": \"EL Psychiatry Mood Disorders and Neuromodulation Elective (ECT and TMS)\",\n        \"course_abbrev\": \"PSYC 212\"\n    },\n    {\n        \"courseID\": \"116\",\n        \"course_name\": \"EL Psychiatry Substance Abuse Elective (4WK)\",\n        \"course_abbrev\": \"PSYC 209\"\n    },\n    {\n        \"courseID\": \"432\",\n        \"course_name\": \"EL Psychiatry Tailored Elective\",\n        \"course_abbrev\": \"PSYC Tailored\"\n    },\n    {\n        \"courseID\": \"119\",\n        \"course_name\": \"EL Surgery Burn Surgery Elective (Bridgeport Hospital) (4WK)\",\n        \"course_abbrev\": \"SURG 208\"\n    },\n    {\n        \"courseID\": \"121\",\n        \"course_name\": \"EL Surgery Cardiac Transplantation/Cardiac Assist Device Elective (4WK)\",\n        \"course_abbrev\": \"SURG 218\"\n    },\n    {\n        \"courseID\": \"122\",\n        \"course_name\": \"EL Surgery Congenital Heart Surgery Elective (4WK)\",\n        \"course_abbrev\": \"SURG 209\"\n    },\n    {\n        \"courseID\": \"393\",\n        \"course_name\": \"EL Surgery Elective ZAMBIA\",\n        \"course_abbrev\": \"SUR AW2\"\n    },\n    {\n        \"courseID\": \"71\",\n        \"course_name\": \"EL Surgery General Surgery Elective  (YNHH/SRC) (4WK)\",\n        \"course_abbrev\": \"SURG 204\"\n    },\n    {\n        \"courseID\": \"126\",\n        \"course_name\": \"EL Surgery Otolaryngology Elective (2WK)\",\n        \"course_abbrev\": \"OTOL 203\"\n    },\n    {\n        \"courseID\": \"130\",\n        \"course_name\": \"EL Surgery Surgical Critical Care Elective (YNHH)  (4WK)\",\n        \"course_abbrev\": \"SURG 205\"\n    },\n    {\n        \"courseID\": \"619\",\n        \"course_name\": \"EL Surgery Urology Elective (2WK) AWAY Stanford\",\n        \"course_abbrev\": \"SUR AW2\"\n    },\n    {\n        \"courseID\": \"250\",\n        \"course_name\": \"EL Teaching and Learning Center Medical Education Elective (2WK)\",\n        \"course_abbrev\": \"Med ED Elec\"\n    },\n    {\n        \"courseID\": \"135\",\n        \"course_name\": \"EL Therapeutic Radiology Radiation Oncology Elective (4WK)\",\n        \"course_abbrev\": \"THER 300\"\n    },\n    {\n        \"courseID\": \"1067\",\n        \"course_name\": \"Elder Care\",\n        \"course_abbrev\": \"ECM\"\n    },\n    {\n        \"courseID\": \"1070\",\n        \"course_name\": \"Elder Dementia\",\n        \"course_abbrev\": \"EDM\"\n    },\n    {\n        \"courseID\": \"1068\",\n        \"course_name\": \"Elder Dementia\",\n        \"course_abbrev\": \"EDM\"\n    },\n    {\n        \"courseID\": \"778\",\n        \"course_name\": \"Elective A\",\n        \"course_abbrev\": \"A\"\n    },\n    {\n        \"courseID\": \"779\",\n        \"course_name\": \"Elective B\",\n        \"course_abbrev\": \"B\"\n    },\n    {\n        \"courseID\": \"780\",\n        \"course_name\": \"Elective C\",\n        \"course_abbrev\": \"C\"\n    },\n    {\n        \"courseID\": \"236\",\n        \"course_name\": \"Elective: Integrated Clinical Medicine\",\n        \"course_abbrev\": \"ICM\"\n    },\n    {\n        \"courseID\": \"1031\",\n        \"course_name\": \"Emergency Medicine\",\n        \"course_abbrev\": \"EM\"\n    },\n    {\n        \"courseID\": \"956\",\n        \"course_name\": \"Emergency Medicine Clerkship\",\n        \"course_abbrev\": \"EMRG\"\n    },\n    {\n        \"courseID\": \"915\",\n        \"course_name\": \"Endocrinology 500\",\n        \"course_abbrev\": \"Endo 500\"\n    },\n    {\n        \"courseID\": \"904\",\n        \"course_name\": \"Endocrinology 500\",\n        \"course_abbrev\": \"Endo 500\"\n    },\n    {\n        \"courseID\": \"212\",\n        \"course_name\": \"Enrolled in a Dual Degree Program at another institution\",\n        \"course_abbrev\": \"DUALDGAWAY\"\n    },\n    {\n        \"courseID\": \"215\",\n        \"course_name\": \"Enrolled in a Joint Degree Program at Yale\",\n        \"course_abbrev\": \"JOINTDGYALE\"\n    },\n    {\n        \"courseID\": \"1134\",\n        \"course_name\": \"Example New Course\",\n        \"course_abbrev\": \"ExampleNC\"\n    },\n    {\n        \"courseID\": \"1128\",\n        \"course_name\": \"Extra Long Course\",\n        \"course_abbrev\": \"ELC\"\n    },\n    {\n        \"courseID\": \"1033\",\n        \"course_name\": \"Family Medicine\",\n        \"course_abbrev\": \"FM\"\n    },\n    {\n        \"courseID\": \"1023\",\n        \"course_name\": \"Family Medicine AI\",\n        \"course_abbrev\": \"FMLY\"\n    },\n    {\n        \"courseID\": \"950\",\n        \"course_name\": \"Family Medicine Clerkship\",\n        \"course_abbrev\": \"FMLY\"\n    },\n    {\n        \"courseID\": \"773\",\n        \"course_name\": \"Family Medicine Clerkship\",\n        \"course_abbrev\": \"FM\"\n    },\n    {\n        \"courseID\": \"789\",\n        \"course_name\": \"Family Medicine Clerkship\",\n        \"course_abbrev\": \"FAM3000\"\n    },\n    {\n        \"courseID\": \"958\",\n        \"course_name\": \"Final Form Test\",\n        \"course_abbrev\": \"FinalTEST\"\n    },\n    {\n        \"courseID\": \"959\",\n        \"course_name\": \"Final Form Test - Ann Arbor\",\n        \"course_abbrev\": \"FinalTEST-AA\"\n    },\n    {\n        \"courseID\": \"960\",\n        \"course_name\": \"Final Form Test - Dearborn\",\n        \"course_abbrev\": \"FinalTEST-DRBN\"\n    },\n    {\n        \"courseID\": \"1011\",\n        \"course_name\": \"Foundations of Medicine I\",\n        \"course_abbrev\": \"EDMD\"\n    },\n    {\n        \"courseID\": \"1012\",\n        \"course_name\": \"Foundations of Medicine II\",\n        \"course_abbrev\": \"EDMD\"\n    },\n    {\n        \"courseID\": \"1032\",\n        \"course_name\": \"General Surgery\",\n        \"course_abbrev\": \"GS\"\n    },\n    {\n        \"courseID\": \"791\",\n        \"course_name\": \"General Surgery Clerkship\",\n        \"course_abbrev\": \"GS\"\n    },\n    {\n        \"courseID\": \"1065\",\n        \"course_name\": \"Geriatrics\",\n        \"course_abbrev\": \"GER\"\n    },\n    {\n        \"courseID\": \"1117\",\n        \"course_name\": \"Grade Test Course\",\n        \"course_abbrev\": \"Grade Test Course\"\n    },\n    {\n        \"courseID\": \"749\",\n        \"course_name\": \"Gross Anatomy\",\n        \"course_abbrev\": \"Anatomy\"\n    },\n    {\n        \"courseID\": \"900\",\n        \"course_name\": \"Heidi 101 - Nelson\",\n        \"course_abbrev\": \"Heidi 101-Nel\"\n    },\n    {\n        \"courseID\": \"901\",\n        \"course_name\": \"Heidi Course\",\n        \"course_abbrev\": \"HC\"\n    },\n    {\n        \"courseID\": \"902\",\n        \"course_name\": \"Heidi Course - Nelson\",\n        \"course_abbrev\": \"HC-Nel\"\n    },\n    {\n        \"courseID\": \"1061\",\n        \"course_name\": \"Hematology &amp; Oncology\",\n        \"course_abbrev\": \"HemOc\"\n    },\n    {\n        \"courseID\": \"1076\",\n        \"course_name\": \"House 1\",\n        \"course_abbrev\": \"H01\"\n    },\n    {\n        \"courseID\": \"1071\",\n        \"course_name\": \"House 1\",\n        \"course_abbrev\": \"H1\"\n    },\n    {\n        \"courseID\": \"1077\",\n        \"course_name\": \"House 2\",\n        \"course_abbrev\": \"H02\"\n    },\n    {\n        \"courseID\": \"1072\",\n        \"course_name\": \"House 2\",\n        \"course_abbrev\": \"H2\"\n    },\n    {\n        \"courseID\": \"1073\",\n        \"course_name\": \"House 3\",\n        \"course_abbrev\": \"H3\"\n    },\n    {\n        \"courseID\": \"1078\",\n        \"course_name\": \"House 3\",\n        \"course_abbrev\": \"H03\"\n    },\n    {\n        \"courseID\": \"1079\",\n        \"course_name\": \"House 4\",\n        \"course_abbrev\": \"H04\"\n    },\n    {\n        \"courseID\": \"1074\",\n        \"course_name\": \"House 4\",\n        \"course_abbrev\": \"H4\"\n    },\n    {\n        \"courseID\": \"752\",\n        \"course_name\": \"IM-1000-Site A\",\n        \"course_abbrev\": \"IM-1000-A\"\n    },\n    {\n        \"courseID\": \"888\",\n        \"course_name\": \"IM800\",\n        \"course_abbrev\": \"IM800\"\n    },\n    {\n        \"courseID\": \"889\",\n        \"course_name\": \"IM800 - 100 Church Street So.\",\n        \"course_abbrev\": \"IM800-100 Churc\"\n    },\n    {\n        \"courseID\": \"890\",\n        \"course_name\": \"IM800 - 6 Million Dollar Man Medical Rehabilitation Center\",\n        \"course_abbrev\": \"IM800-6M\"\n    },\n    {\n        \"courseID\": \"891\",\n        \"course_name\": \"IM800 - Ann Arbor\",\n        \"course_abbrev\": \"IM800-AA\"\n    },\n    {\n        \"courseID\": \"892\",\n        \"course_name\": \"IM850\",\n        \"course_abbrev\": \"IM850\"\n    },\n    {\n        \"courseID\": \"799\",\n        \"course_name\": \"Immunology\",\n        \"course_abbrev\": \"Imm\"\n    },\n    {\n        \"courseID\": \"1035\",\n        \"course_name\": \"Internal Medicine\",\n        \"course_abbrev\": \"IM\"\n    },\n    {\n        \"courseID\": \"839\",\n        \"course_name\": \"Internal Medicine (BB)\",\n        \"course_abbrev\": \"IMBB\"\n    },\n    {\n        \"courseID\": \"1048\",\n        \"course_name\": \"Internal Medicine - East Rivendell Campus\",\n        \"course_abbrev\": \"IM-ERivC\"\n    },\n    {\n        \"courseID\": \"1052\",\n        \"course_name\": \"Internal Medicine - Lothlorien Campus\",\n        \"course_abbrev\": \"IM-LothC\"\n    },\n    {\n        \"courseID\": \"1049\",\n        \"course_name\": \"Internal Medicine - North Rivendell Campus\",\n        \"course_abbrev\": \"IM-NRivC\"\n    },\n    {\n        \"courseID\": \"1051\",\n        \"course_name\": \"Internal Medicine - South Rivendell Campus\",\n        \"course_abbrev\": \"IM-SRivC\"\n    },\n    {\n        \"courseID\": \"1050\",\n        \"course_name\": \"Internal Medicine - West Rivendell Campus\",\n        \"course_abbrev\": \"IM-WrivC\"\n    },\n    {\n        \"courseID\": \"1022\",\n        \"course_name\": \"Internal Medicine AI\",\n        \"course_abbrev\": \"INMD\"\n    },\n    {\n        \"courseID\": \"782\",\n        \"course_name\": \"Internal Medicine Clerkship\",\n        \"course_abbrev\": \"IM 3000\"\n    },\n    {\n        \"courseID\": \"774\",\n        \"course_name\": \"Internal Medicine Clerkship\",\n        \"course_abbrev\": \"IM\"\n    },\n    {\n        \"courseID\": \"951\",\n        \"course_name\": \"Internal Medicine Clerkship\",\n        \"course_abbrev\": \"INMD\"\n    },\n    {\n        \"courseID\": \"828\",\n        \"course_name\": \"Internal Medicine Clerkship 3000 (CB)\",\n        \"course_abbrev\": \"IMCB\"\n    },\n    {\n        \"courseID\": \"830\",\n        \"course_name\": \"Internal Medicine Clerkship 3000 (CB) - Downtown Hospital\",\n        \"course_abbrev\": \"IMCB-DH\"\n    },\n    {\n        \"courseID\": \"829\",\n        \"course_name\": \"Internal Medicine Clerkship 3000 (CB) - Westchester General Hospital\",\n        \"course_abbrev\": \"IMCB-WEST\"\n    },\n    {\n        \"courseID\": \"747\",\n        \"course_name\": \"Internal Medicine Kay Course\",\n        \"course_abbrev\": \"IMKC\"\n    },\n    {\n        \"courseID\": \"216\",\n        \"course_name\": \"Interviewing\",\n        \"course_abbrev\": \"INTERVIEW\"\n    },\n    {\n        \"courseID\": \"710\",\n        \"course_name\": \"Interviewing (12 WK)\",\n        \"course_abbrev\": \"INT\"\n    },\n    {\n        \"courseID\": \"713\",\n        \"course_name\": \"Interviewing (2WK)\",\n        \"course_abbrev\": \"INT\"\n    },\n    {\n        \"courseID\": \"712\",\n        \"course_name\": \"Interviewing (4 WK)\",\n        \"course_abbrev\": \"INT\"\n    },\n    {\n        \"courseID\": \"228\",\n        \"course_name\": \"Interviewing (4WK)\",\n        \"course_abbrev\": \"INTERVIEW 4WK\"\n    },\n    {\n        \"courseID\": \"711\",\n        \"course_name\": \"Interviewing (6 WK)\",\n        \"course_abbrev\": \"INT\"\n    },\n    {\n        \"courseID\": \"840\",\n        \"course_name\": \"INTM 3001: INTERNAL MEDICINE CLERKSHIP\",\n        \"course_abbrev\": \"INT3001\"\n    },\n    {\n        \"courseID\": \"842\",\n        \"course_name\": \"INTM 3001: INTERNAL MEDICINE CLERKSHIP - Ann Arbor\",\n        \"course_abbrev\": \"INT3001-AA\"\n    },\n    {\n        \"courseID\": \"841\",\n        \"course_name\": \"INTM 3001: INTERNAL MEDICINE CLERKSHIP - Detroit\",\n        \"course_abbrev\": \"INT3001-DET\"\n    },\n    {\n        \"courseID\": \"844\",\n        \"course_name\": \"INTM 3001: INTERNAL MEDICINE CLERKSHIP - Flint\",\n        \"course_abbrev\": \"INT3001-FLT\"\n    },\n    {\n        \"courseID\": \"843\",\n        \"course_name\": \"INTM 3001: INTERNAL MEDICINE CLERKSHIP - Grand Rapids\",\n        \"course_abbrev\": \"INT3001-GR\"\n    },\n    {\n        \"courseID\": \"1008\",\n        \"course_name\": \"Introduction to Medicine\",\n        \"course_abbrev\": \"INMD\"\n    },\n    {\n        \"courseID\": \"781\",\n        \"course_name\": \"IT D Course\",\n        \"course_abbrev\": \"ITD\"\n    },\n    {\n        \"courseID\": \"760\",\n        \"course_name\": \"IT:D Course\",\n        \"course_abbrev\": \"ITD\"\n    },\n    {\n        \"courseID\": \"1000\",\n        \"course_name\": \"JAJ's TEST 2018 - Ann Arbor\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"999\",\n        \"course_name\": \"JAJ's TEST 2018 - Ann Arbor (2)\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"998\",\n        \"course_name\": \"JAJ's TEST 2018 - Beard\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"997\",\n        \"course_name\": \"JAJ's TEST 2018 - Dearborn\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"996\",\n        \"course_name\": \"JAJ's TEST 2018 - Detroit\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"995\",\n        \"course_name\": \"JAJ's TEST 2018 - Downtown Hospital\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"994\",\n        \"course_name\": \"JAJ's TEST 2018 - East Campus\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"993\",\n        \"course_name\": \"JAJ's TEST 2018 - East Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"992\",\n        \"course_name\": \"JAJ's TEST 2018 - Eye Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"991\",\n        \"course_name\": \"JAJ's TEST 2018 - Family Planning Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"990\",\n        \"course_name\": \"JAJ's TEST 2018 - Flint\",\n        \"course_abbrev\": \"JAJ's TEST 2018 - Flint xxxxxxxxxxxxxxxxx\"\n    },\n    {\n        \"courseID\": \"989\",\n        \"course_name\": \"JAJ's TEST 2018 - Gerace\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"988\",\n        \"course_name\": \"JAJ's TEST 2018 - Grand Rapids\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"987\",\n        \"course_name\": \"JAJ's TEST 2018 - Main Street Hospital\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"986\",\n        \"course_name\": \"JAJ's TEST 2018 - Memorial Hospital\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"985\",\n        \"course_name\": \"JAJ's TEST 2018 - NE Campus\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"984\",\n        \"course_name\": \"JAJ's TEST 2018 - NE Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"983\",\n        \"course_name\": \"JAJ's TEST 2018 - Nelson\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"1001\",\n        \"course_name\": \"JAJ's TEST 2018 - North Campus\",\n        \"course_abbrev\": \"JAJ's TEST 201-North Campus\"\n    },\n    {\n        \"courseID\": \"982\",\n        \"course_name\": \"JAJ's TEST 2018 - North Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"981\",\n        \"course_name\": \"JAJ's TEST 2018 - NW Campus\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"980\",\n        \"course_name\": \"JAJ's TEST 2018 - NW Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"979\",\n        \"course_name\": \"JAJ's TEST 2018 - Phoenix\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"1002\",\n        \"course_name\": \"JAJ's TEST 2018 - San Diego\",\n        \"course_abbrev\": \"JAJ's TEST 201-SD\"\n    },\n    {\n        \"courseID\": \"977\",\n        \"course_name\": \"JAJ's TEST 2018 - SE Campus\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"976\",\n        \"course_name\": \"JAJ's TEST 2018 - SE Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"978\",\n        \"course_name\": \"JAJ's TEST 2018 - Selma-Donley\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"975\",\n        \"course_name\": \"JAJ's TEST 2018 - Site Test\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"1003\",\n        \"course_name\": \"JAJ's TEST 2018 - South Campus\",\n        \"course_abbrev\": \"JAJ's TEST 201-South Campus\"\n    },\n    {\n        \"courseID\": \"974\",\n        \"course_name\": \"JAJ's TEST 2018 - South Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"973\",\n        \"course_name\": \"JAJ's TEST 2018 - Strang\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"972\",\n        \"course_name\": \"JAJ's TEST 2018 - Sunny Side Family Practice\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"971\",\n        \"course_name\": \"JAJ's TEST 2018 - SW Campus\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"970\",\n        \"course_name\": \"JAJ's TEST 2018 - SW Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"969\",\n        \"course_name\": \"JAJ's TEST 2018 - Test for Site ALerts\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"968\",\n        \"course_name\": \"JAJ's TEST 2018 - test one\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"967\",\n        \"course_name\": \"JAJ's TEST 2018 - Test456\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"966\",\n        \"course_name\": \"JAJ's TEST 2018 - University 222\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"965\",\n        \"course_name\": \"JAJ's TEST 2018 - Warren\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"1004\",\n        \"course_name\": \"JAJ's TEST 2018 - West Campus\",\n        \"course_abbrev\": \"JAJ's TEST 201-West Campus\"\n    },\n    {\n        \"courseID\": \"964\",\n        \"course_name\": \"JAJ's TEST 2018 - West Clinic\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"963\",\n        \"course_name\": \"JAJ's TEST 2018 - West Medical Group\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"962\",\n        \"course_name\": \"JAJ's TEST 2018 - Westchester General Hospital\",\n        \"course_abbrev\": \"JAJ's TEST 201-\"\n    },\n    {\n        \"courseID\": \"961\",\n        \"course_name\": \"JAJ's TEST 2018\",\n        \"course_abbrev\": \"JAJ's TEST 201\"\n    },\n    {\n        \"courseID\": \"798\",\n        \"course_name\": \"Janice Test\",\n        \"course_abbrev\": \"JDTest\"\n    },\n    {\n        \"courseID\": \"929\",\n        \"course_name\": \"Janice Test - Detroit\",\n        \"course_abbrev\": \"Janice Test-DET\"\n    },\n    {\n        \"courseID\": \"927\",\n        \"course_name\": \"Janice Test - Flint\",\n        \"course_abbrev\": \"Janice Test-FLT\"\n    },\n    {\n        \"courseID\": \"928\",\n        \"course_name\": \"Janice Test - Grand Rapids\",\n        \"course_abbrev\": \"Janice Test-GR\"\n    },\n    {\n        \"courseID\": \"762\",\n        \"course_name\": \"Janice TestX\",\n        \"course_abbrev\": \"Janice Test\"\n    },\n    {\n        \"courseID\": \"836\",\n        \"course_name\": \"Jen - ANES\",\n        \"course_abbrev\": \"Jen - ANES\"\n    },\n    {\n        \"courseID\": \"835\",\n        \"course_name\": \"Jen - IM\",\n        \"course_abbrev\": \"Jen - IM\"\n    },\n    {\n        \"courseID\": \"838\",\n        \"course_name\": \"Jen - OB/GYN\",\n        \"course_abbrev\": \"Jen - OB/GYN\"\n    },\n    {\n        \"courseID\": \"837\",\n        \"course_name\": \"Jen - PEDS\",\n        \"course_abbrev\": \"Jen - PEDS\"\n    },\n    {\n        \"courseID\": \"851\",\n        \"course_name\": \"Jen Test\",\n        \"course_abbrev\": \"Jen Test\"\n    },\n    {\n        \"courseID\": \"852\",\n        \"course_name\": \"Jen Test - Downtown Hospital\",\n        \"course_abbrev\": \"Jen Test-DH\"\n    },\n    {\n        \"courseID\": \"853\",\n        \"course_name\": \"Jen Test - Family Planning Clinic\",\n        \"course_abbrev\": \"Jen Test-FPC\"\n    },\n    {\n        \"courseID\": \"856\",\n        \"course_name\": \"Jen Test 3\",\n        \"course_abbrev\": \"Jen Test 3\"\n    },\n    {\n        \"courseID\": \"857\",\n        \"course_name\": \"Jen Test 3 - Ann Arbor\",\n        \"course_abbrev\": \"Jen Test 3-AA\"\n    },\n    {\n        \"courseID\": \"858\",\n        \"course_name\": \"Jen Test 3 - San Diego\",\n        \"course_abbrev\": \"Jen Test 3-SD\"\n    },\n    {\n        \"courseID\": \"846\",\n        \"course_name\": \"Jen's Test2\",\n        \"course_abbrev\": \"JT2\"\n    },\n    {\n        \"courseID\": \"854\",\n        \"course_name\": \"Jen's Test2 - Ann Arbor\",\n        \"course_abbrev\": \"JT2-AA\"\n    },\n    {\n        \"courseID\": \"855\",\n        \"course_name\": \"Jen's Test2 - Detroit\",\n        \"course_abbrev\": \"JT2-DET\"\n    },\n    {\n        \"courseID\": \"847\",\n        \"course_name\": \"Jen's Test3\",\n        \"course_abbrev\": \"JT3\"\n    },\n    {\n        \"courseID\": \"1122\",\n        \"course_name\": \"Jennifer Import Test1\",\n        \"course_abbrev\": \"ImportTest1\"\n    },\n    {\n        \"courseID\": \"1123\",\n        \"course_name\": \"Jennifer Import Test2\",\n        \"course_abbrev\": \"ImportTest2\"\n    },\n    {\n        \"courseID\": \"938\",\n        \"course_name\": \"Jennifer TestX\",\n        \"course_abbrev\": \"JTest\"\n    },\n    {\n        \"courseID\": \"911\",\n        \"course_name\": \"Jenny Clerkship\",\n        \"course_abbrev\": \"Jen\"\n    },\n    {\n        \"courseID\": \"912\",\n        \"course_name\": \"Jenny Clerkship - Strang\",\n        \"course_abbrev\": \"Jen-ST\"\n    },\n    {\n        \"courseID\": \"765\",\n        \"course_name\": \"Jenny's Course\",\n        \"course_abbrev\": \"JC\"\n    },\n    {\n        \"courseID\": \"932\",\n        \"course_name\": \"JJ's Test Course\",\n        \"course_abbrev\": \"JJTC\"\n    },\n    {\n        \"courseID\": \"926\",\n        \"course_name\": \"JJTEST500\",\n        \"course_abbrev\": \"JJTEST500Abbrev\"\n    },\n    {\n        \"courseID\": \"870\",\n        \"course_name\": \"JJunker's TEST COURSE\",\n        \"course_abbrev\": \"JJUNKER\"\n    },\n    {\n        \"courseID\": \"871\",\n        \"course_name\": \"JJunker's TEST COURSE - Ann Arbor\",\n        \"course_abbrev\": \"JJUNKER-AA\"\n    },\n    {\n        \"courseID\": \"872\",\n        \"course_name\": \"JJunker's TEST COURSE - Detroit\",\n        \"course_abbrev\": \"JJUNKER-DET\"\n    },\n    {\n        \"courseID\": \"365\",\n        \"course_name\": \"Joint Degree Program (2WK)\",\n        \"course_abbrev\": \"EJDP\"\n    },\n    {\n        \"courseID\": \"364\",\n        \"course_name\": \"Joint Degree Program (4WK)\",\n        \"course_abbrev\": \"EJDP\"\n    },\n    {\n        \"courseID\": \"848\",\n        \"course_name\": \"JTest - IM Course 300\",\n        \"course_abbrev\": \"JT Course 300\"\n    },\n    {\n        \"courseID\": \"849\",\n        \"course_name\": \"JTest - IM Course 300 - Ann Arbor\",\n        \"course_abbrev\": \"JT Course 300-A\"\n    },\n    {\n        \"courseID\": \"850\",\n        \"course_name\": \"JTest - IM Course 300 - Detroit\",\n        \"course_abbrev\": \"JT Course 300-D\"\n    },\n    {\n        \"courseID\": \"943\",\n        \"course_name\": \"JTestJ-IM\",\n        \"course_abbrev\": \"JTestJ-IM\"\n    },\n    {\n        \"courseID\": \"1129\",\n        \"course_name\": \"LIC\",\n        \"course_abbrev\": \"LIC\"\n    },\n    {\n        \"courseID\": \"1130\",\n        \"course_name\": \"LIC - OB/GYN\",\n        \"course_abbrev\": \"LIC-OB/GYN\"\n    },\n    {\n        \"courseID\": \"1131\",\n        \"course_name\": \"LIC - PEDS\",\n        \"course_abbrev\": \"LIC-PEDS\"\n    },\n    {\n        \"courseID\": \"1132\",\n        \"course_name\": \"LIC A\",\n        \"course_abbrev\": \"LIC A\"\n    },\n    {\n        \"courseID\": \"1133\",\n        \"course_name\": \"LIC B\",\n        \"course_abbrev\": \"LIC B\"\n    },\n    {\n        \"courseID\": \"744\",\n        \"course_name\": \"Longitudinal Course\",\n        \"course_abbrev\": \"LC\"\n    },\n    {\n        \"courseID\": \"1013\",\n        \"course_name\": \"M3 2 week Elective OB\",\n        \"course_abbrev\": \"EDMD\"\n    },\n    {\n        \"courseID\": \"1014\",\n        \"course_name\": \"M3 2 week Elective PS\",\n        \"course_abbrev\": \"EDMD\"\n    },\n    {\n        \"courseID\": \"897\",\n        \"course_name\": \"MD 300\",\n        \"course_abbrev\": \"MD 300\"\n    },\n    {\n        \"courseID\": \"903\",\n        \"course_name\": \"Med 500\",\n        \"course_abbrev\": \"Med 500\"\n    },\n    {\n        \"courseID\": \"1075\",\n        \"course_name\": \"MED456-BH Adult Cardiovascular Medicine\",\n        \"course_abbrev\": \"MED456-BH\"\n    },\n    {\n        \"courseID\": \"946\",\n        \"course_name\": \"Medical Anatomy\",\n        \"course_abbrev\": \"ANAT\"\n    },\n    {\n        \"courseID\": \"945\",\n        \"course_name\": \"Medical Biochemistry\",\n        \"course_abbrev\": \"BIOC\"\n    },\n    {\n        \"courseID\": \"949\",\n        \"course_name\": \"Medical Biochemistry\",\n        \"course_abbrev\": \"BIOC 7300\"\n    },\n    {\n        \"courseID\": \"948\",\n        \"course_name\": \"Medical Ethics\",\n        \"course_abbrev\": \"HUMS\"\n    },\n    {\n        \"courseID\": \"1007\",\n        \"course_name\": \"Medical Ethics II\",\n        \"course_abbrev\": \"HUMS\"\n    },\n    {\n        \"courseID\": \"947\",\n        \"course_name\": \"Medical Histology\",\n        \"course_abbrev\": \"ANAT\"\n    },\n    {\n        \"courseID\": \"1005\",\n        \"course_name\": \"Medical Pathology\",\n        \"course_abbrev\": \"PATH\"\n    },\n    {\n        \"courseID\": \"1006\",\n        \"course_name\": \"Medical Pharmacology\",\n        \"course_abbrev\": \"PHAR\"\n    },\n    {\n        \"courseID\": \"867\",\n        \"course_name\": \"MedSurg Block\",\n        \"course_abbrev\": \"MSB\"\n    },\n    {\n        \"courseID\": \"785\",\n        \"course_name\": \"Metabolism &amp; Nutrition\",\n        \"course_abbrev\": \"METN 1000\"\n    },\n    {\n        \"courseID\": \"925\",\n        \"course_name\": \"MikeL test\",\n        \"course_abbrev\": \"ML test\"\n    },\n    {\n        \"courseID\": \"738\",\n        \"course_name\": \"MK SOM Course\",\n        \"course_abbrev\": \"MK S C\"\n    },\n    {\n        \"courseID\": \"787\",\n        \"course_name\": \"Molecular and Cellular Systems\",\n        \"course_abbrev\": \"MCS1000\"\n    },\n    {\n        \"courseID\": \"869\",\n        \"course_name\": \"MSK\",\n        \"course_abbrev\": \"MSK\"\n    },\n    {\n        \"courseID\": \"1020\",\n        \"course_name\": \"Neurology AI\",\n        \"course_abbrev\": \"NEUR\"\n    },\n    {\n        \"courseID\": \"788\",\n        \"course_name\": \"Neurology Clerkship\",\n        \"course_abbrev\": \"NEUR 3000\"\n    },\n    {\n        \"courseID\": \"775\",\n        \"course_name\": \"Neurology Clerkship\",\n        \"course_abbrev\": \"N\"\n    },\n    {\n        \"courseID\": \"786\",\n        \"course_name\": \"Neurosciences\",\n        \"course_abbrev\": \"NEUR 1000\"\n    },\n    {\n        \"courseID\": \"761\",\n        \"course_name\": \"New Course\",\n        \"course_abbrev\": \"NC\"\n    },\n    {\n        \"courseID\": \"957\",\n        \"course_name\": \"Nuerology/Physical Medicine and Rehabilitation\",\n        \"course_abbrev\": \"NEUR\"\n    },\n    {\n        \"courseID\": \"1019\",\n        \"course_name\": \"OB/GYN AI\",\n        \"course_abbrev\": \"OBGY\"\n    },\n    {\n        \"courseID\": \"952\",\n        \"course_name\": \"OB/GYN Clerkship\",\n        \"course_abbrev\": \"OBGY\"\n    },\n    {\n        \"courseID\": \"740\",\n        \"course_name\": \"Ob/Gyn Kareem\",\n        \"course_abbrev\": \"Kareem\"\n    },\n    {\n        \"courseID\": \"739\",\n        \"course_name\": \"Ob/Gyn REI\",\n        \"course_abbrev\": \"REI\"\n    },\n    {\n        \"courseID\": \"863\",\n        \"course_name\": \"OHSU TEST\",\n        \"course_abbrev\": \"OHSU\"\n    },\n    {\n        \"courseID\": \"620\",\n        \"course_name\": \"OIMSE Anesthesiology Elective Away (4WK) China\",\n        \"course_abbrev\": \"ANES Away\"\n    },\n    {\n        \"courseID\": \"468\",\n        \"course_name\": \"OIMSE Cardiology Elective AWAY (4WK) Changsha, China\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"443\",\n        \"course_name\": \"OIMSE Cardiology Elective AWAY (4WK), Changsha, China\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"456\",\n        \"course_name\": \"OIMSE Dermatology Elective Away (4WK) UBA\",\n        \"course_abbrev\": \"SURG AW4\"\n    },\n    {\n        \"courseID\": \"627\",\n        \"course_name\": \"OIMSE Emergency Medicine Elective AWAY (4WK) Argentina\",\n        \"course_abbrev\": \"EMER\"\n    },\n    {\n        \"courseID\": \"343\",\n        \"course_name\": \"OIMSE Emergency Medicine Elective AWAY (4WK) AUSTRIA\",\n        \"course_abbrev\": \"EMER 4WA\"\n    },\n    {\n        \"courseID\": \"628\",\n        \"course_name\": \"OIMSE Emergency Medicine Elective AWAY (4WK) Chile\",\n        \"course_abbrev\": \"EMER\"\n    },\n    {\n        \"courseID\": \"151\",\n        \"course_name\": \"OIMSE Emergency Medicine Elective AWAY (4WK) Peru\",\n        \"course_abbrev\": \"EMER AW4\"\n    },\n    {\n        \"courseID\": \"637\",\n        \"course_name\": \"OIMSE Family Medicine Elective AWAY (4WK) Indonesia\",\n        \"course_abbrev\": \"FMED\"\n    },\n    {\n        \"courseID\": \"670\",\n        \"course_name\": \"OIMSE General Medicine Elective Away (4WK) Argentina\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"669\",\n        \"course_name\": \"OIMSE General Medicine Elective Away (4WK) China\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"479\",\n        \"course_name\": \"OIMSE General Surgery Elective Away (2WK) Jamacia\",\n        \"course_abbrev\": \"SUR AW2\"\n    },\n    {\n        \"courseID\": \"457\",\n        \"course_name\": \"OIMSE General Surgery Elective Away (4WK) Changsha, China\",\n        \"course_abbrev\": \"SURG AW4\"\n    },\n    {\n        \"courseID\": \"458\",\n        \"course_name\": \"OIMSE General Surgery Elective Away (4WK) Changsha, China\",\n        \"course_abbrev\": \"SURG AW4\"\n    },\n    {\n        \"courseID\": \"459\",\n        \"course_name\": \"OIMSE General Surgery Elective Away (4WK) Changsha, China\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"440\",\n        \"course_name\": \"OIMSE General Surgery Elective Away (4WK) Jamacia\",\n        \"course_abbrev\": \"SURG AW4\"\n    },\n    {\n        \"courseID\": \"465\",\n        \"course_name\": \"OIMSE Hematology/Oncology Elective AWAY (AW4)Changsha, China\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"431\",\n        \"course_name\": \"OIMSE Infectious Disease Elective (6WK)\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"604\",\n        \"course_name\": \"OIMSE Infectious Disease Elective (6WK) Tugela Ferry\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"461\",\n        \"course_name\": \"OIMSE Infectious Disease Elective (6WK) Tugela Ferry\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"605\",\n        \"course_name\": \"OIMSE Infectious Disease Elective (6WK) Tugela Ferry\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"447\",\n        \"course_name\": \"OIMSE Infectious Disease Elective (6WK) Uganda\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"308\",\n        \"course_name\": \"OIMSE Infectious Disease Elective AWAY (6WK) CORDOBA\",\n        \"course_abbrev\": \"IMED AW6\"\n    },\n    {\n        \"courseID\": \"452\",\n        \"course_name\": \"OIMSE Internal Medicine Elective Away (4WK)\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"268\",\n        \"course_name\": \"OIMSE Internal Medicine Elective Away (4WK) Buenos Aires\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"478\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (4WK) CHINA\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"636\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (4WK) China\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"439\",\n        \"course_name\": \"OIMSE Internal Medicine Elective Away (4WK) CHINA\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"469\",\n        \"course_name\": \"OIMSE Internal Medicine Elective Away (4WK) Cordoba\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"470\",\n        \"course_name\": \"OIMSE Internal Medicine Elective Away (4WK) Cordoba\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"647\",\n        \"course_name\": \"OIMSE Internal Medicine Elective Away (4WK) Dominican Republic\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"460\",\n        \"course_name\": \"OIMSE Internal Medicine Elective Away (4WK) UBA\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"291\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (4WK) UGANDA\",\n        \"course_abbrev\": \"IMED AW6\"\n    },\n    {\n        \"courseID\": \"474\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (6WK) UGANDA\",\n        \"course_abbrev\": \"IMED AW6\"\n    },\n    {\n        \"courseID\": \"316\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4) CHINA\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"632\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4) Columbia\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"608\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4) Mexico\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"607\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4) Mexico\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"471\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4)BOGOTA\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"464\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4)BOGOTA\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"463\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4)BOGOTA\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"462\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4)BOGOTA\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"317\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4)BOGOTA\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"487\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW4)Lima\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"445\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW6) BOGOTA\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"448\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW6) Indonesia\",\n        \"course_abbrev\": \"IMED\"\n    },\n    {\n        \"courseID\": \"482\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW6) Tegula Ferry\",\n        \"course_abbrev\": \"IMED AW6\"\n    },\n    {\n        \"courseID\": \"319\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW6) Tegula Ferry\",\n        \"course_abbrev\": \"IMED AW6\"\n    },\n    {\n        \"courseID\": \"466\",\n        \"course_name\": \"OIMSE Internal Medicine Elective AWAY (AW6)Borneo\",\n        \"course_abbrev\": \"IMED AW6\"\n    },\n    {\n        \"courseID\": \"662\",\n        \"course_name\": \"OIMSE Medicine Elective Away (4WK) Dominican Republic\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"648\",\n        \"course_name\": \"OIMSE Medicine Elective Away (6WK) Indonesia\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"309\",\n        \"course_name\": \"OIMSE Nephrology Elective AWAY (4WK) CORDOBA\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"676\",\n        \"course_name\": \"OIMSE Nephrology Elective Away (4WK) Cordoba, Argentina\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"615\",\n        \"course_name\": \"OIMSE Neurosurgery (4WK) CHINA\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"492\",\n        \"course_name\": \"OIMSE Neurosurgery Elective Away (4WK)Peru\",\n        \"course_abbrev\": \"NEUS\"\n    },\n    {\n        \"courseID\": \"441\",\n        \"course_name\": \"OIMSE Obstetrics and Gynecology Elective AWAY (6WK) UGANDA\",\n        \"course_abbrev\": \"OBGY\"\n    },\n    {\n        \"courseID\": \"477\",\n        \"course_name\": \"OIMSE Ophthalmology Elective AWAY (4WK) Peru\",\n        \"course_abbrev\": \"OPHT AW4\"\n    },\n    {\n        \"courseID\": \"314\",\n        \"course_name\": \"OIMSE Ophthalmology Elective AWAY (4WK)CHINA\",\n        \"course_abbrev\": \"OPHT AW4\"\n    },\n    {\n        \"courseID\": \"603\",\n        \"course_name\": \"OIMSE Ophthalmology Elective AWAY (6WK) Mettapracharak Thailand\",\n        \"course_abbrev\": \"OPHT AW6\"\n    },\n    {\n        \"courseID\": \"473\",\n        \"course_name\": \"OIMSE Ophthalmology Elective AWAY (6WK) Thailand\",\n        \"course_abbrev\": \"OPHT AW6\"\n    },\n    {\n        \"courseID\": \"310\",\n        \"course_name\": \"OIMSE Ophthalmology Elective AWAY (6WK) Thailand\",\n        \"course_abbrev\": \"OPHT AW6\"\n    },\n    {\n        \"courseID\": \"472\",\n        \"course_name\": \"OIMSE Ophthalmology Elective AWAY (6WK) Thailand\",\n        \"course_abbrev\": \"OPHT AW6\"\n    },\n    {\n        \"courseID\": \"671\",\n        \"course_name\": \"OIMSE Otolaryngology Elective Away (4WK) Barbados\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"633\",\n        \"course_name\": \"OIMSE Pediatric Elective (4WK) Away Argentina\",\n        \"course_abbrev\": \"Peds\"\n    },\n    {\n        \"courseID\": \"429\",\n        \"course_name\": \"OIMSE Pediatric Neurology Elective Away (4WK)\",\n        \"course_abbrev\": \"NEUS AW4\"\n    },\n    {\n        \"courseID\": \"442\",\n        \"course_name\": \"OIMSE Psychiatry Elective Away (4WK) Barbados\",\n        \"course_abbrev\": \"OTOL AW4\"\n    },\n    {\n        \"courseID\": \"621\",\n        \"course_name\": \"OIMSE Psychiatry Elective Away (4WK) Brazil\",\n        \"course_abbrev\": \"PSYC AW4\"\n    },\n    {\n        \"courseID\": \"634\",\n        \"course_name\": \"OIMSE Psychiatry Elective Away (4WK) Chile\",\n        \"course_abbrev\": \"PSYC AW4\"\n    },\n    {\n        \"courseID\": \"434\",\n        \"course_name\": \"OIMSE Psychiatry Elective Away (4WK) Columbia\",\n        \"course_abbrev\": \"psYC AW4\"\n    },\n    {\n        \"courseID\": \"685\",\n        \"course_name\": \"OIMSE Psychiatry Elective Away (4WK) Peru\",\n        \"course_abbrev\": \"PSYC AW4\"\n    },\n    {\n        \"courseID\": \"481\",\n        \"course_name\": \"OIMSE Psychiatry Elective Away (4WK) UBA\",\n        \"course_abbrev\": \"PSYC AW4\"\n    },\n    {\n        \"courseID\": \"480\",\n        \"course_name\": \"OIMSE Psychiatry Elective Away (4WK) UBA\",\n        \"course_abbrev\": \"PSYC AW4\"\n    },\n    {\n        \"courseID\": \"625\",\n        \"course_name\": \"OIMSE Psychiatry Elective Away (6WK) PERU\",\n        \"course_abbrev\": \"PSYC AW6\"\n    },\n    {\n        \"courseID\": \"337\",\n        \"course_name\": \"OIMSE Psychiatry Elective AWAY (AW4) CHINA\",\n        \"course_abbrev\": \"PSYC AW4\"\n    },\n    {\n        \"courseID\": \"320\",\n        \"course_name\": \"OIMSE Psychiatry Elective AWAY (AW4) LIMA\",\n        \"course_abbrev\": \"PSYC AW6\"\n    },\n    {\n        \"courseID\": \"635\",\n        \"course_name\": \"OIMSE Radiology Elective Away (4WK) Chile\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"318\",\n        \"course_name\": \"OIMSE/BORNEO General Medicine Elective AWAY (AW6)\",\n        \"course_abbrev\": \"IMED AW6\"\n    },\n    {\n        \"courseID\": \"263\",\n        \"course_name\": \"OIMSE/CORDOBA Infectious Desease Elective AWAY (4WK)\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"916\",\n        \"course_name\": \"Pain Medicine Clerkship\",\n        \"course_abbrev\": \"PM\"\n    },\n    {\n        \"courseID\": \"917\",\n        \"course_name\": \"Pain Medicine Clerkship - Ann Arbor\",\n        \"course_abbrev\": \"PM-AA\"\n    },\n    {\n        \"courseID\": \"918\",\n        \"course_name\": \"Pain Medicine Clerkship - Dearborn\",\n        \"course_abbrev\": \"PM-DRBN\"\n    },\n    {\n        \"courseID\": \"919\",\n        \"course_name\": \"Pain Medicine Clerkship - Detroit\",\n        \"course_abbrev\": \"PM-DET\"\n    },\n    {\n        \"courseID\": \"920\",\n        \"course_name\": \"Pain Medicine Clerkship - Flint\",\n        \"course_abbrev\": \"PM-FLT\"\n    },\n    {\n        \"courseID\": \"1124\",\n        \"course_name\": \"Paskell Course\",\n        \"course_abbrev\": \"Paskell\"\n    },\n    {\n        \"courseID\": \"877\",\n        \"course_name\": \"PED 3001 - Pediatrics\",\n        \"course_abbrev\": \"PED3001\"\n    },\n    {\n        \"courseID\": \"878\",\n        \"course_name\": \"PED 3001 - Pediatrics - Ann Arbor\",\n        \"course_abbrev\": \"PED3001-AA\"\n    },\n    {\n        \"courseID\": \"879\",\n        \"course_name\": \"PED 3001 - Pediatrics - Dearborn\",\n        \"course_abbrev\": \"PED3001-DRBN\"\n    },\n    {\n        \"courseID\": \"880\",\n        \"course_name\": \"PED 3001 - Pediatrics - Detroit\",\n        \"course_abbrev\": \"PED3001-DET\"\n    },\n    {\n        \"courseID\": \"881\",\n        \"course_name\": \"PED 3001 - Pediatrics - Flint\",\n        \"course_abbrev\": \"PED3001-FLT\"\n    },\n    {\n        \"courseID\": \"1015\",\n        \"course_name\": \"Pediatric AI\",\n        \"course_abbrev\": \"PEDS\"\n    },\n    {\n        \"courseID\": \"953\",\n        \"course_name\": \"Pediatric Clerkship\",\n        \"course_abbrev\": \"PEDS\"\n    },\n    {\n        \"courseID\": \"1114\",\n        \"course_name\": \"Pediatrics 504\",\n        \"course_abbrev\": \"Peds 504\"\n    },\n    {\n        \"courseID\": \"1116\",\n        \"course_name\": \"Pediatrics 504 - Main Street Hospital\",\n        \"course_abbrev\": \"Peds 504-MSH\"\n    },\n    {\n        \"courseID\": \"1115\",\n        \"course_name\": \"Pediatrics 504 - Memorial Hospital\",\n        \"course_abbrev\": \"Peds 504-MH\"\n    },\n    {\n        \"courseID\": \"784\",\n        \"course_name\": \"Pediatrics Clerkship\",\n        \"course_abbrev\": \"PED 3000\"\n    },\n    {\n        \"courseID\": \"1021\",\n        \"course_name\": \"Physcal Medicine and Rehabiliataion\",\n        \"course_abbrev\": \"REHB\"\n    },\n    {\n        \"courseID\": \"954\",\n        \"course_name\": \"Psychiatry Clerkship\",\n        \"course_abbrev\": \"PSCH\"\n    },\n    {\n        \"courseID\": \"772\",\n        \"course_name\": \"Purposely Overlapped\",\n        \"course_abbrev\": \"PURP\"\n    },\n    {\n        \"courseID\": \"1126\",\n        \"course_name\": \"Radiation Oncology\",\n        \"course_abbrev\": \"RO\"\n    },\n    {\n        \"courseID\": \"1016\",\n        \"course_name\": \"Radiology Clerkship (On-Line)\",\n        \"course_abbrev\": \"RADI\"\n    },\n    {\n        \"courseID\": \"859\",\n        \"course_name\": \"Radiology RAD 1101\",\n        \"course_abbrev\": \"RAD 1101\"\n    },\n    {\n        \"courseID\": \"860\",\n        \"course_name\": \"Radiology RAD 1101 - Ann Arbor\",\n        \"course_abbrev\": \"RAD 1101-AA\"\n    },\n    {\n        \"courseID\": \"861\",\n        \"course_name\": \"Radiology RAD 1101 - Dearborn\",\n        \"course_abbrev\": \"RAD 1101-DRBN\"\n    },\n    {\n        \"courseID\": \"862\",\n        \"course_name\": \"Radiology RAD 1101 - Flint\",\n        \"course_abbrev\": \"RAD 1101-FLT\"\n    },\n    {\n        \"courseID\": \"868\",\n        \"course_name\": \"Reading Course\",\n        \"course_abbrev\": \"RC\"\n    },\n    {\n        \"courseID\": \"732\",\n        \"course_name\": \"Research (12 WK)\",\n        \"course_abbrev\": \"**RESEARCH TIME\"\n    },\n    {\n        \"courseID\": \"259\",\n        \"course_name\": \"Research (2 WK)\",\n        \"course_abbrev\": \"RESEARCH TIME\"\n    },\n    {\n        \"courseID\": \"220\",\n        \"course_name\": \"Research Time\",\n        \"course_abbrev\": \"RES (4WK)\"\n    },\n    {\n        \"courseID\": \"213\",\n        \"course_name\": \"Research Time (2WK)\",\n        \"course_abbrev\": \"RES (2WK)\"\n    },\n    {\n        \"courseID\": \"705\",\n        \"course_name\": \"Research Time (4 WK)\",\n        \"course_abbrev\": \"**RESEARCH TIME\"\n    },\n    {\n        \"courseID\": \"706\",\n        \"course_name\": \"Research Time 6 wk\",\n        \"course_abbrev\": \"RESEARCH TIME\"\n    },\n    {\n        \"courseID\": \"882\",\n        \"course_name\": \"Sam's Test Course\",\n        \"course_abbrev\": \"42\"\n    },\n    {\n        \"courseID\": \"1063\",\n        \"course_name\": \"Sample Clerkship 2019\",\n        \"course_abbrev\": \"SC2019\"\n    },\n    {\n        \"courseID\": \"1107\",\n        \"course_name\": \"Sample Clerkship_2019\",\n        \"course_abbrev\": \"SPC2019\"\n    },\n    {\n        \"courseID\": \"1062\",\n        \"course_name\": \"Sample Course 2019\",\n        \"course_abbrev\": \"SMP2019\"\n    },\n    {\n        \"courseID\": \"751\",\n        \"course_name\": \"Sample Course 999\",\n        \"course_abbrev\": \"course999\"\n    },\n    {\n        \"courseID\": \"810\",\n        \"course_name\": \"Sams Test Course\",\n        \"course_abbrev\": \"STC\"\n    },\n    {\n        \"courseID\": \"811\",\n        \"course_name\": \"Sams Test Course - Family Planning Clinic\",\n        \"course_abbrev\": \"STC-FPC\"\n    },\n    {\n        \"courseID\": \"813\",\n        \"course_name\": \"Sams Test Course - San Diego\",\n        \"course_abbrev\": \"STC-SD\"\n    },\n    {\n        \"courseID\": \"812\",\n        \"course_name\": \"Sams Test Course - West Clinic\",\n        \"course_abbrev\": \"STC-WC\"\n    },\n    {\n        \"courseID\": \"1060\",\n        \"course_name\": \"Sams Test Course 42\",\n        \"course_abbrev\": \"STC 42\"\n    },\n    {\n        \"courseID\": \"327\",\n        \"course_name\": \"SI  Neurosurgery Subinternship (Off Block)\",\n        \"course_abbrev\": \"NUES 200\"\n    },\n    {\n        \"courseID\": \"660\",\n        \"course_name\": \"SI Advanced Inpatient Psychiatry Subinternship (4WK) AWAY UCSF\",\n        \"course_abbrev\": \"PSYC AW4\"\n    },\n    {\n        \"courseID\": \"587\",\n        \"course_name\": \"SI Clinical Neurosurgery Subinternship AWAY (4WK)Cornell\",\n        \"course_abbrev\": \"NEUR\"\n    },\n    {\n        \"courseID\": \"583\",\n        \"course_name\": \"SI Clinical Neurosurgery Subinternship AWAY (4WK)Harvard\",\n        \"course_abbrev\": \"NEUS\"\n    },\n    {\n        \"courseID\": \"725\",\n        \"course_name\": \"SI Clinical Otolaryngology Subinternship (4WK) AWAY MT SINAI\",\n        \"course_abbrev\": \"OTOL\"\n    },\n    {\n        \"courseID\": \"258\",\n        \"course_name\": \"SI Emergency Medicine 4 wk (off block)\",\n        \"course_abbrev\": \"EMER 300\"\n    },\n    {\n        \"courseID\": \"688\",\n        \"course_name\": \"SI Emergency Medicine Combined Emergency Medicine/Ultrasound Subinternship\",\n        \"course_abbrev\": \"EMER 305\"\n    },\n    {\n        \"courseID\": \"27\",\n        \"course_name\": \"SI Emergency Medicine Subinternship (4WK)\",\n        \"course_abbrev\": \"EMER 300\"\n    },\n    {\n        \"courseID\": \"593\",\n        \"course_name\": \"SI Emergency Medicine Subinternship AWAY (4WK) Alpert SOM\",\n        \"course_abbrev\": \"EMER 300\"\n    },\n    {\n        \"courseID\": \"591\",\n        \"course_name\": \"SI Emergency Medicine Subinternship AWAY (4WK) Boston U\",\n        \"course_abbrev\": \"EMER 300\"\n    },\n    {\n        \"courseID\": \"592\",\n        \"course_name\": \"SI Emergency Medicine Subinternship AWAY (4WK) Brown\",\n        \"course_abbrev\": \"EMER 300\"\n    },\n    {\n        \"courseID\": \"626\",\n        \"course_name\": \"SI Emergency Medicine Subinternship AWAY (4WK) Harvard\",\n        \"course_abbrev\": \"EMER\"\n    },\n    {\n        \"courseID\": \"30\",\n        \"course_name\": \"SI Family Medicine Subinternship (Middlesex Hospital) (4WK)\",\n        \"course_abbrev\": \"FMED 101\"\n    },\n    {\n        \"courseID\": \"55\",\n        \"course_name\": \"SI Internal Medicine Subinternship (4WK)\",\n        \"course_abbrev\": \"IMED 200\"\n    },\n    {\n        \"courseID\": \"698\",\n        \"course_name\": \"SI Internal Medicine Subinternship AY15-16 (4WK)\",\n        \"course_abbrev\": \"IMED 200a\"\n    },\n    {\n        \"courseID\": \"721\",\n        \"course_name\": \"SI Medicine Subinternship AWAY (4 WK) Madigan Army Medical Center\",\n        \"course_abbrev\": \"IMED AW4\"\n    },\n    {\n        \"courseID\": \"406\",\n        \"course_name\": \"SI Neurological Surgery Subinternship AWAY (4WK) Barrow\",\n        \"course_abbrev\": \"NEUR\"\n    },\n    {\n        \"courseID\": \"599\",\n        \"course_name\": \"SI Neurology Advanced Inpatient Subinternship AWAY (4WK) UCSF\",\n        \"course_abbrev\": \"NEUR\"\n    },\n    {\n        \"courseID\": \"484\",\n        \"course_name\": \"SI Neurology Subinternship (4WK)\",\n        \"course_abbrev\": \"NEUR 400\"\n    },\n    {\n        \"courseID\": \"83\",\n        \"course_name\": \"SI Neurosurgery Subinternship (4WK)\",\n        \"course_abbrev\": \"NUES 200\"\n    },\n    {\n        \"courseID\": \"641\",\n        \"course_name\": \"SI Neurosurgery Subinternship (4WK) OFF BLOCK\",\n        \"course_abbrev\": \"NUES 200\"\n    },\n    {\n        \"courseID\": \"501\",\n        \"course_name\": \"SI Neurosurgery Subinternship AWAY (4WK) JohnsHopkins\",\n        \"course_abbrev\": \"NEUS\"\n    },\n    {\n        \"courseID\": \"645\",\n        \"course_name\": \"SI Neurosurgery Subinternship AWAY (4WK) Mayo Clinic, FL\",\n        \"course_abbrev\": \"NEUS\"\n    },\n    {\n        \"courseID\": \"405\",\n        \"course_name\": \"SI Neurosurgery Subinternship AWAY (4WK)Stanford\",\n        \"course_abbrev\": \"NEUS\"\n    },\n    {\n        \"courseID\": \"86\",\n        \"course_name\": \"SI Obstetrics &amp; Gynecology Gynecologic Oncology Subinternship (4WK)\",\n        \"course_abbrev\": \"OBGY 202\"\n    },\n    {\n        \"courseID\": \"87\",\n        \"course_name\": \"SI Obstetrics &amp; Gynecology Maternal Fetal Medicine Subinternship (4WK)\",\n        \"course_abbrev\": \"OBGY 200\"\n    },\n    {\n        \"courseID\": \"88\",\n        \"course_name\": \"SI Obstetrics &amp; Gynecology Reproductive Endocrinology &amp; Infertility Subinternship (4WK)\",\n        \"course_abbrev\": \"OBGY 201\"\n    },\n    {\n        \"courseID\": \"85\",\n        \"course_name\": \"SI Obstetrics &amp; Gynecology Subinternship (Bridgeport Hospital) (4WK)\",\n        \"course_abbrev\": \"OBGY 270\"\n    },\n    {\n        \"courseID\": \"282\",\n        \"course_name\": \"SI Obstetrics &amp; Gynecology Urogynecology &amp; Reconstructive Pelvic Surgery Service Subinternship (4wk)\",\n        \"course_abbrev\": \"OB/GYN\"\n    },\n    {\n        \"courseID\": \"611\",\n        \"course_name\": \"SI Orthopaedic Oncology Subinternship (4WK) AWAY UCLA\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"502\",\n        \"course_name\": \"SI Orthopaedic Subinternship (4WK) AWAY Hosp Spec Surgery\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"658\",\n        \"course_name\": \"SI Orthopaedic Subinternship (4WK) AWAY San Francisco\",\n        \"course_abbrev\": \"OPTH\"\n    },\n    {\n        \"courseID\": \"585\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY Columbia\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"589\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY Greenville Health Sys\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"617\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY Harvard\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"594\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY HSS\",\n        \"course_abbrev\": \"ORTH 200\"\n    },\n    {\n        \"courseID\": \"597\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY Jefferson Med College\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"598\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY Jefferson Med College\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"640\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY NYU\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"595\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY NYU\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"643\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY Rush Uni\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"600\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY Stanford\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"601\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY UCLA\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"596\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY UT Houston\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"618\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship (4WK) AWAY Washington U, St Louis\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"498\",\n        \"course_name\": \"SI Orthopaedic Surgery Subinternship 4WK (AWAY) STANFORD\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"93\",\n        \"course_name\": \"SI Orthopaedics &amp; Rehabilitation-Subinternship (4WK)\",\n        \"course_abbrev\": \"ORTH 200\"\n    },\n    {\n        \"courseID\": \"287\",\n        \"course_name\": \"SI Orthopaedics &amp; Rehabilitation-Subinternship (4WK) Off Block\",\n        \"course_abbrev\": \"Ortho off\"\n    },\n    {\n        \"courseID\": \"734\",\n        \"course_name\": \"SI Orthopedic Surgery Subinternship (4 WK) AWAY UCSF\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"726\",\n        \"course_name\": \"SI Otorhinolaryngology Subinternship (4WK) AWAY UPENN\",\n        \"course_abbrev\": \"OTOL\"\n    },\n    {\n        \"courseID\": \"96\",\n        \"course_name\": \"SI Pediatrics Subinternship (4WK)\",\n        \"course_abbrev\": \"PEDS 315\"\n    },\n    {\n        \"courseID\": \"192\",\n        \"course_name\": \"SI Plastic Surgery Subinternship AWAY (4WK) U So FL\",\n        \"course_abbrev\": \"PLAS AW4\"\n    },\n    {\n        \"courseID\": \"731\",\n        \"course_name\": \"SI Plastic Surgery Subinternship AWAY (4WK) UCLA\",\n        \"course_abbrev\": \"PSYC AW4\"\n    },\n    {\n        \"courseID\": \"610\",\n        \"course_name\": \"SI Psychiatry Advanced Inpatient Psychiatry Subinternship (AWAY) 4WK UCSF\",\n        \"course_abbrev\": \"PSYC AW4\"\n    },\n    {\n        \"courseID\": \"577\",\n        \"course_name\": \"SI Psychiatry Inpatient Subinternship (CMHC, 4th Flr)\",\n        \"course_abbrev\": \"PSYC 301\"\n    },\n    {\n        \"courseID\": \"578\",\n        \"course_name\": \"SI Psychiatry Inpatient Subinternship (YNHH, WS-2)\",\n        \"course_abbrev\": \"PSYC 302\"\n    },\n    {\n        \"courseID\": \"718\",\n        \"course_name\": \"SI Subinternship in Orthopedic Surgery\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"190\",\n        \"course_name\": \"SI Subinternship in Otolaryngology AWAY (4WK) Harvard\",\n        \"course_abbrev\": \"OTOL\"\n    },\n    {\n        \"courseID\": \"120\",\n        \"course_name\": \"SI Surgery Cardiac Surgery Subinternship (4WK)\",\n        \"course_abbrev\": \"SURG 219\"\n    },\n    {\n        \"courseID\": \"630\",\n        \"course_name\": \"SI Surgery Clinical Otolaryngology Subinternship (4WK) AWAY Mount Sinai\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"123\",\n        \"course_name\": \"SI Surgery Endocrine Surgery Subinternship (4WK)\",\n        \"course_abbrev\": \"SURG 217\"\n    },\n    {\n        \"courseID\": \"117\",\n        \"course_name\": \"SI Surgery Gastrointestinal Surgery Subinternship (4WK)\",\n        \"course_abbrev\": \"SURG 203\"\n    },\n    {\n        \"courseID\": \"588\",\n        \"course_name\": \"SI Surgery Neurosurgery Subinternship AWAY (4WK)Cornell\",\n        \"course_abbrev\": \"NEUS\"\n    },\n    {\n        \"courseID\": \"499\",\n        \"course_name\": \"SI Surgery Orthopaedic Surgery Subinternship 4WK (AWAY) WASH U\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"574\",\n        \"course_name\": \"SI Surgery Otolaryngology Head &amp; Neck Surgery (4WK)AWAY Stanford\",\n        \"course_abbrev\": \"OTOL AW4\"\n    },\n    {\n        \"courseID\": \"125\",\n        \"course_name\": \"SI Surgery Otolaryngology Subinternship (4WK)\",\n        \"course_abbrev\": \"OTOL 200\"\n    },\n    {\n        \"courseID\": \"575\",\n        \"course_name\": \"SI Surgery Otolaryngology Subinternship (4WK) AWAY Columbia\",\n        \"course_abbrev\": \"OTOL AW4\"\n    },\n    {\n        \"courseID\": \"735\",\n        \"course_name\": \"SI Surgery Otolaryngology Subinternship (4wk) AWAY Stanford\",\n        \"course_abbrev\": \"OTOL\"\n    },\n    {\n        \"courseID\": \"623\",\n        \"course_name\": \"SI Surgery Otolaryngology Subinternship (4WK) AWAY Thomas Jefferson U\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"642\",\n        \"course_name\": \"SI Surgery Otolaryngology Subinternship (4WK) AWAY UPENN\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"629\",\n        \"course_name\": \"SI Surgery Otolaryngology Subinternship AWAY (4WK) Cornell\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"646\",\n        \"course_name\": \"SI Surgery Pediatric Orthopaedic Surgery Subinternship (4WK) AWAY UCLA\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"586\",\n        \"course_name\": \"SI Surgery Pediatric Orthopaedic Surgery Subinternship (4WK) AWAY Vanderbilt\",\n        \"course_abbrev\": \"ORTH\"\n    },\n    {\n        \"courseID\": \"504\",\n        \"course_name\": \"SI Surgery Pediatric Plastic Surgery Subinternship (4WK) AWAY UPENN\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"97\",\n        \"course_name\": \"SI Surgery Pediatric Surgery Subinternship (4WK)\",\n        \"course_abbrev\": \"SURG 207\"\n    },\n    {\n        \"courseID\": \"129\",\n        \"course_name\": \"SI Surgery Plastic and Reconstructive Surgery Subinternship (4WK)\",\n        \"course_abbrev\": \"PLAS 200\"\n    },\n    {\n        \"courseID\": \"733\",\n        \"course_name\": \"SI Surgery Plastic and Reconstructive Surgery Subinternship OFF BLOCK\",\n        \"course_abbrev\": \"PLAS\"\n    },\n    {\n        \"courseID\": \"503\",\n        \"course_name\": \"SI Surgery Plastic Surgery Subinternship (4WK) AWAY Stanford U\",\n        \"course_abbrev\": \"SUR AW4\"\n    },\n    {\n        \"courseID\": \"118\",\n        \"course_name\": \"SI Surgery Surgical Critical Care Subinternship (VAMC/SICU) (4WK)\",\n        \"course_abbrev\": \"SURG 211\"\n    },\n    {\n        \"courseID\": \"131\",\n        \"course_name\": \"SI Surgery Surgical Oncology Subinternship (4WK)\",\n        \"course_abbrev\": \"SURG 200\"\n    },\n    {\n        \"courseID\": \"124\",\n        \"course_name\": \"SI Surgery Thoracic Surgery Subinternship (4WK)\",\n        \"course_abbrev\": \"SURG 221\"\n    },\n    {\n        \"courseID\": \"132\",\n        \"course_name\": \"SI Surgery Transplantation Surgery Subinternship (4WK)\",\n        \"course_abbrev\": \"SURG 256\"\n    },\n    {\n        \"courseID\": \"133\",\n        \"course_name\": \"SI Surgery Trauma and Emergency General Surgery Subinternship (4WK)\",\n        \"course_abbrev\": \"SURG 202\"\n    },\n    {\n        \"courseID\": \"134\",\n        \"course_name\": \"SI Surgery Urology Subinternship (4WK)\",\n        \"course_abbrev\": \"UROL 200\"\n    },\n    {\n        \"courseID\": \"377\",\n        \"course_name\": \"SI Surgery Vascular Surgery Subinternship (4wk)\",\n        \"course_abbrev\": \"SURG 206\"\n    },\n    {\n        \"courseID\": \"866\",\n        \"course_name\": \"SSC\",\n        \"course_abbrev\": \"SSC\"\n    },\n    {\n        \"courseID\": \"219\",\n        \"course_name\": \"Study for USMLE\",\n        \"course_abbrev\": \"USMLE\"\n    },\n    {\n        \"courseID\": \"234\",\n        \"course_name\": \"Sub-Internship Block (4WK)\",\n        \"course_abbrev\": \"SUBI AWAY PLC4\"\n    },\n    {\n        \"courseID\": \"1057\",\n        \"course_name\": \"Surgery - General\",\n        \"course_abbrev\": \"SURG 9310\"\n    },\n    {\n        \"courseID\": \"1059\",\n        \"course_name\": \"Surgery - General - Broadway Medical Center\",\n        \"course_abbrev\": \"SURG 9310-BMC\"\n    },\n    {\n        \"courseID\": \"1058\",\n        \"course_name\": \"Surgery - General - Broadway School of Medicine\",\n        \"course_abbrev\": \"SURG 9310-BSOM\"\n    },\n    {\n        \"courseID\": \"1017\",\n        \"course_name\": \"Surgery AI\",\n        \"course_abbrev\": \"SURG\"\n    },\n    {\n        \"courseID\": \"776\",\n        \"course_name\": \"Surgery Clerkship\",\n        \"course_abbrev\": \"S\"\n    },\n    {\n        \"courseID\": \"955\",\n        \"course_name\": \"Surgery Clerkship\",\n        \"course_abbrev\": \"SURG\"\n    },\n    {\n        \"courseID\": \"777\",\n        \"course_name\": \"Surgery Clerkship - Site B\",\n        \"course_abbrev\": \"S-B\"\n    },\n    {\n        \"courseID\": \"681\",\n        \"course_name\": \"Surgical Approach to the Patient Clerkship - Emergency Medicine)\",\n        \"course_abbrev\": \"CL SAP-SU\"\n    },\n    {\n        \"courseID\": \"746\",\n        \"course_name\": \"test\",\n        \"course_abbrev\": \"tt\"\n    },\n    {\n        \"courseID\": \"934\",\n        \"course_name\": \"test\",\n        \"course_abbrev\": \"test\"\n    },\n    {\n        \"courseID\": \"935\",\n        \"course_name\": \"Test\",\n        \"course_abbrev\": \"Test\"\n    },\n    {\n        \"courseID\": \"936\",\n        \"course_name\": \"test 1\",\n        \"course_abbrev\": \"Test12\"\n    },\n    {\n        \"courseID\": \"1024\",\n        \"course_name\": \"test 1\",\n        \"course_abbrev\": \"Test12\"\n    },\n    {\n        \"courseID\": \"899\",\n        \"course_name\": \"Test 101\",\n        \"course_abbrev\": \"Test 101\"\n    },\n    {\n        \"courseID\": \"790\",\n        \"course_name\": \"Test Course\",\n        \"course_abbrev\": \"TW1 - TC\"\n    },\n    {\n        \"courseID\": \"794\",\n        \"course_name\": \"Test Course - Tina 2\",\n        \"course_abbrev\": \"TCT2\"\n    },\n    {\n        \"courseID\": \"742\",\n        \"course_name\": \"Test Course 2000\",\n        \"course_abbrev\": \"TC2000\"\n    },\n    {\n        \"courseID\": \"743\",\n        \"course_name\": \"Test Course 22\",\n        \"course_abbrev\": \"TC22\"\n    },\n    {\n        \"courseID\": \"864\",\n        \"course_name\": \"TEST COURSE 5\",\n        \"course_abbrev\": \"Test Course 5\"\n    },\n    {\n        \"courseID\": \"865\",\n        \"course_name\": \"TEST COURSE 5 - Dearborn\",\n        \"course_abbrev\": \"Test Course 5-DRBN\"\n    },\n    {\n        \"courseID\": \"766\",\n        \"course_name\": \"test course block date\",\n        \"course_abbrev\": \"tcbd\"\n    },\n    {\n        \"courseID\": \"885\",\n        \"course_name\": \"test longitudinal\",\n        \"course_abbrev\": \"test\"\n    },\n    {\n        \"courseID\": \"886\",\n        \"course_name\": \"test longitudinal 2\",\n        \"course_abbrev\": \"test 2\"\n    },\n    {\n        \"courseID\": \"1127\",\n        \"course_name\": \"Test UNLV\",\n        \"course_abbrev\": \"TUNLV\"\n    },\n    {\n        \"courseID\": \"771\",\n        \"course_name\": \"Test2\",\n        \"course_abbrev\": \"22Test\"\n    },\n    {\n        \"courseID\": \"930\",\n        \"course_name\": \"TEST6789\",\n        \"course_abbrev\": \"Test6789abbrev\"\n    },\n    {\n        \"courseID\": \"1125\",\n        \"course_name\": \"testtest\",\n        \"course_abbrev\": \"testtest\"\n    },\n    {\n        \"courseID\": \"831\",\n        \"course_name\": \"TestVacation2\",\n        \"course_abbrev\": \"TestVacation2\"\n    },\n    {\n        \"courseID\": \"759\",\n        \"course_name\": \"TR - Internal Medicine\",\n        \"course_abbrev\": \"TR-IM\"\n    },\n    {\n        \"courseID\": \"816\",\n        \"course_name\": \"TR - Internal Medicine - Downtown Hospital\",\n        \"course_abbrev\": \"TR-IM-DH\"\n    },\n    {\n        \"courseID\": \"815\",\n        \"course_name\": \"TR - Internal Medicine - Westchester General Hospital\",\n        \"course_abbrev\": \"TR-IM-WEST\"\n    },\n    {\n        \"courseID\": \"758\",\n        \"course_name\": \"TR - Pediatrics\",\n        \"course_abbrev\": \"TR-PD\"\n    },\n    {\n        \"courseID\": \"921\",\n        \"course_name\": \"Transfiguration\",\n        \"course_abbrev\": \"T\"\n    },\n    {\n        \"courseID\": \"922\",\n        \"course_name\": \"Transfiguration - Ann Arbor\",\n        \"course_abbrev\": \"T-AA\"\n    },\n    {\n        \"courseID\": \"923\",\n        \"course_name\": \"Transfiguration - Detroit\",\n        \"course_abbrev\": \"T-DET\"\n    },\n    {\n        \"courseID\": \"924\",\n        \"course_name\": \"Transfiguration - San Diego\",\n        \"course_abbrev\": \"T-SD\"\n    },\n    {\n        \"courseID\": \"745\",\n        \"course_name\": \"UC - FMED - Junior Clerkship: Family Medicine - 30300/1\",\n        \"course_abbrev\": \"FMED 30300/1\"\n    },\n    {\n        \"courseID\": \"748\",\n        \"course_name\": \"UC Course\",\n        \"course_abbrev\": \"UC\"\n    },\n    {\n        \"courseID\": \"224\",\n        \"course_name\": \"Unscheduled\",\n        \"course_abbrev\": \"UNSCHED\"\n    },\n    {\n        \"courseID\": \"1025\",\n        \"course_name\": \"Vacation\",\n        \"course_abbrev\": \"Vac\"\n    },\n    {\n        \"courseID\": \"1081\",\n        \"course_name\": \"Vacation - Dave G\",\n        \"course_abbrev\": \"Vac - DG\"\n    },\n    {\n        \"courseID\": \"231\",\n        \"course_name\": \"Winter Break\",\n        \"course_abbrev\": \"WINTER\"\n    },\n    {\n        \"courseID\": \"530\",\n        \"course_name\": \"YPA -  Infectious Diesease Boulder Community Hospital\",\n        \"course_abbrev\": \"YPA BCH Inf Dz\"\n    },\n    {\n        \"courseID\": \"528\",\n        \"course_name\": \"YPA - Boston Children's Hospital Pediatric Orthopedic\",\n        \"course_abbrev\": \"YPA BCH Pedi Or\"\n    },\n    {\n        \"courseID\": \"531\",\n        \"course_name\": \"YPA - Brideport Hospital Occupational Medicine\",\n        \"course_abbrev\": \"YPA Occ Med\"\n    },\n    {\n        \"courseID\": \"654\",\n        \"course_name\": \"YPA - Cardiology (BPT)\",\n        \"course_abbrev\": \"YPA Cards BPT\"\n    },\n    {\n        \"courseID\": \"563\",\n        \"course_name\": \"YPA - Cardiology (YNHH)\",\n        \"course_abbrev\": \"YPA Cards\"\n    },\n    {\n        \"courseID\": \"547\",\n        \"course_name\": \"YPA - Cardiology Hospitalist\",\n        \"course_abbrev\": \"YPA Cards Hosp\"\n    },\n    {\n        \"courseID\": \"562\",\n        \"course_name\": \"YPA - Cardiothoracic Surgery\",\n        \"course_abbrev\": \"YPA CT Surgery\"\n    },\n    {\n        \"courseID\": \"564\",\n        \"course_name\": \"YPA - Dermatology\",\n        \"course_abbrev\": \"YPA Derm\"\n    },\n    {\n        \"courseID\": \"571\",\n        \"course_name\": \"YPA - Emergency Medicine (BPT)\",\n        \"course_abbrev\": \"YPA EM BPT\"\n    },\n    {\n        \"courseID\": \"572\",\n        \"course_name\": \"YPA - Emergency Medicine (SRC)\",\n        \"course_abbrev\": \"YPA EM HSR\"\n    },\n    {\n        \"courseID\": \"510\",\n        \"course_name\": \"YPA - Emergency Medicine (YNHH)\",\n        \"course_abbrev\": \"YPA EM\"\n    },\n    {\n        \"courseID\": \"535\",\n        \"course_name\": \"YPA - Endocrinology (Ynhh)\",\n        \"course_abbrev\": \"YPA Endo\"\n    },\n    {\n        \"courseID\": \"533\",\n        \"course_name\": \"YPA - Gastroenterology\",\n        \"course_abbrev\": \"YPA Gastro\"\n    },\n    {\n        \"courseID\": \"507\",\n        \"course_name\": \"YPA - General Surgery (BPT)\",\n        \"course_abbrev\": \"YPA GS BPT\"\n    },\n    {\n        \"courseID\": \"506\",\n        \"course_name\": \"YPA - General Surgery (Bristol Hospital)\",\n        \"course_abbrev\": \"YPA GS Bristol\"\n    },\n    {\n        \"courseID\": \"508\",\n        \"course_name\": \"YPA - General Surgery (Norwalk)\",\n        \"course_abbrev\": \"YPA GS (Norwalk\"\n    },\n    {\n        \"courseID\": \"493\",\n        \"course_name\": \"YPA - General Surgery (YNHH)\",\n        \"course_abbrev\": \"YPA - GS\"\n    },\n    {\n        \"courseID\": \"569\",\n        \"course_name\": \"YPA - Geriatrics (BPT)\",\n        \"course_abbrev\": \"YPA Geri\"\n    },\n    {\n        \"courseID\": \"570\",\n        \"course_name\": \"YPA - Geriatrics (SRC)\",\n        \"course_abbrev\": \"YPA GERI HSR\"\n    },\n    {\n        \"courseID\": \"494\",\n        \"course_name\": \"YPA - Geriatrics (VA)\",\n        \"course_abbrev\": \"YPA Geri\"\n    },\n    {\n        \"courseID\": \"554\",\n        \"course_name\": \"YPA - Gynocologic Oncology Elective\",\n        \"course_abbrev\": \"YPA Gyn Onc\"\n    },\n    {\n        \"courseID\": \"527\",\n        \"course_name\": \"YPA - Hematology\",\n        \"course_abbrev\": \"YPA Heme\"\n    },\n    {\n        \"courseID\": \"534\",\n        \"course_name\": \"YPA - Infectious Diseases\",\n        \"course_abbrev\": \"YPA Inf Dz\"\n    },\n    {\n        \"courseID\": \"495\",\n        \"course_name\": \"YPA - Internal Medicine I\",\n        \"course_abbrev\": \"YPA IMED I\"\n    },\n    {\n        \"courseID\": \"505\",\n        \"course_name\": \"YPA - Internal Medicine II\",\n        \"course_abbrev\": \"YPA IMED II\"\n    },\n    {\n        \"courseID\": \"540\",\n        \"course_name\": \"YPA - Interventional Pulmonology\",\n        \"course_abbrev\": \"YPA Inter Pulm\"\n    },\n    {\n        \"courseID\": \"539\",\n        \"course_name\": \"YPA - Interventional Radiology\",\n        \"course_abbrev\": \"YPA Inter Radio\"\n    },\n    {\n        \"courseID\": \"557\",\n        \"course_name\": \"YPA - Medical ICU\",\n        \"course_abbrev\": \"YPA MICU\"\n    },\n    {\n        \"courseID\": \"700\",\n        \"course_name\": \"YPA - Metabolism Associates\",\n        \"course_abbrev\": \"YPA Metab Assoc\"\n    },\n    {\n        \"courseID\": \"558\",\n        \"course_name\": \"YPA - Neonatology\",\n        \"course_abbrev\": \"YPA Neonatology\"\n    },\n    {\n        \"courseID\": \"532\",\n        \"course_name\": \"YPA - Nephrology\",\n        \"course_abbrev\": \"YPA Nephrology\"\n    },\n    {\n        \"courseID\": \"538\",\n        \"course_name\": \"YPA - Neuroscience\",\n        \"course_abbrev\": \"YPA Neuroscienc\"\n    },\n    {\n        \"courseID\": \"549\",\n        \"course_name\": \"YPA - NSUHS Illinois  Neurosurgery\",\n        \"course_abbrev\": \"YPA NSUHS Neuro\"\n    },\n    {\n        \"courseID\": \"548\",\n        \"course_name\": \"YPA - NSUHS Illinois Cardiothoracic Surgery\",\n        \"course_abbrev\": \"YPA NSUHS CS\"\n    },\n    {\n        \"courseID\": \"550\",\n        \"course_name\": \"YPA - NSUHS Illinois Orthopedics\",\n        \"course_abbrev\": \"YPA NSUHS Ortho\"\n    },\n    {\n        \"courseID\": \"552\",\n        \"course_name\": \"YPA - NSUHS Illinois Urology\",\n        \"course_abbrev\": \"YPA NSUHS Urolo\"\n    },\n    {\n        \"courseID\": \"551\",\n        \"course_name\": \"YPA - NSUHS Illinois Vascular Surgery\",\n        \"course_abbrev\": \"YPA NSUHS Vasc\"\n    },\n    {\n        \"courseID\": \"511\",\n        \"course_name\": \"YPA - OB GYN (Bridgpeport)\",\n        \"course_abbrev\": \"YPA OB GYN\"\n    },\n    {\n        \"courseID\": \"701\",\n        \"course_name\": \"YPA - OB GYN (Dr. Erica Dun)\",\n        \"course_abbrev\": \"YPA ObGyn E Dun\"\n    },\n    {\n        \"courseID\": \"573\",\n        \"course_name\": \"YPA - OB GYN (Gallup)\",\n        \"course_abbrev\": \"YPA Ob Gyn Gall\"\n    },\n    {\n        \"courseID\": \"677\",\n        \"course_name\": \"YPA - OB GYN (Greater New Haven)\",\n        \"course_abbrev\": \"YPA Ob Gyn GNH\"\n    },\n    {\n        \"courseID\": \"653\",\n        \"course_name\": \"YPA - OB GYN (Greenwich Hospital)\",\n        \"course_abbrev\": \"YPA OB GYN GH\"\n    },\n    {\n        \"courseID\": \"650\",\n        \"course_name\": \"YPA - OB GYN (Lawrence &amp; Memorial)\",\n        \"course_abbrev\": \"YPA  Ob Gyn LM\"\n    },\n    {\n        \"courseID\": \"695\",\n        \"course_name\": \"YPA - OB GYN (McKnight)\",\n        \"course_abbrev\": \"YPA ObGyn Mckn\"\n    },\n    {\n        \"courseID\": \"567\",\n        \"course_name\": \"YPA - OB GYN (SRC)\",\n        \"course_abbrev\": \"YPA Ob Gyn HSR\"\n    },\n    {\n        \"courseID\": \"568\",\n        \"course_name\": \"YPA - OB GYN (Women's Health Care)\",\n        \"course_abbrev\": \"YPA Ob Gyn WHC\"\n    },\n    {\n        \"courseID\": \"675\",\n        \"course_name\": \"YPA - OB GYN (YNHH)\",\n        \"course_abbrev\": \"YPA OB GYN YNHH\"\n    },\n    {\n        \"courseID\": \"655\",\n        \"course_name\": \"YPA - Ob Gyn Sue Richman\",\n        \"course_abbrev\": \"YPA Ob Gyn Rich\"\n    },\n    {\n        \"courseID\": \"526\",\n        \"course_name\": \"YPA - Oncology\",\n        \"course_abbrev\": \"YPA Onc\"\n    },\n    {\n        \"courseID\": \"536\",\n        \"course_name\": \"YPA - Oncology MD Anderson Houston, TX\",\n        \"course_abbrev\": \"YPA MD Anderson\"\n    },\n    {\n        \"courseID\": \"537\",\n        \"course_name\": \"YPA - Oncology Memorial Sloan-Kettering Cancer Center\",\n        \"course_abbrev\": \"YPA MSKCC\"\n    },\n    {\n        \"courseID\": \"546\",\n        \"course_name\": \"YPA - Ophthalmology\",\n        \"course_abbrev\": \"YPA Optho\"\n    },\n    {\n        \"courseID\": \"525\",\n        \"course_name\": \"YPA - Orthopaedics\",\n        \"course_abbrev\": \"YPA Ortho\"\n    },\n    {\n        \"courseID\": \"555\",\n        \"course_name\": \"YPA - Orthopedic NOW Ambulatory\",\n        \"course_abbrev\": \"YPA Ortho NOW\"\n    },\n    {\n        \"courseID\": \"708\",\n        \"course_name\": \"YPA - PA Student Evaluations\",\n        \"course_abbrev\": \"YPA Stu Eval\"\n    },\n    {\n        \"courseID\": \"543\",\n        \"course_name\": \"YPA - Pediatric Cardiology\",\n        \"course_abbrev\": \"YPA Pedi Cards\"\n    },\n    {\n        \"courseID\": \"545\",\n        \"course_name\": \"YPA - Pediatric Endocrinology\",\n        \"course_abbrev\": \"YPA Pedi Endo\"\n    },\n    {\n        \"courseID\": \"544\",\n        \"course_name\": \"YPA - Pediatric GI\",\n        \"course_abbrev\": \"YPA Pedi GI\"\n    },\n    {\n        \"courseID\": \"542\",\n        \"course_name\": \"YPA - Pediatric Oncology\",\n        \"course_abbrev\": \"YPA Pedi Onc\"\n    },\n    {\n        \"courseID\": \"524\",\n        \"course_name\": \"YPA - Pediatrics\",\n        \"course_abbrev\": \"YPA Peds\"\n    },\n    {\n        \"courseID\": \"556\",\n        \"course_name\": \"YPA - Penobscot Valley Hosptial, Lincoln ME Rural Hospitalist\",\n        \"course_abbrev\": \"YPA Pen Valley\"\n    },\n    {\n        \"courseID\": \"553\",\n        \"course_name\": \"YPA - Plastic Surgery\",\n        \"course_abbrev\": \"YPA Plastics\"\n    },\n    {\n        \"courseID\": \"652\",\n        \"course_name\": \"YPA - Plastic Surgery (SRC)\",\n        \"course_abbrev\": \"YPA Plastics SR\"\n    },\n    {\n        \"courseID\": \"519\",\n        \"course_name\": \"YPA - Primary Care (VA)\",\n        \"course_abbrev\": \"YPA VA PC\"\n    },\n    {\n        \"courseID\": \"516\",\n        \"course_name\": \"YPA - Primary Care Bridgeport PCC\",\n        \"course_abbrev\": \"YPA BPCC\"\n    },\n    {\n        \"courseID\": \"522\",\n        \"course_name\": \"YPA - Primary Care Central Care Community Health Center, TX\",\n        \"course_abbrev\": \"YPA CCCHC\"\n    },\n    {\n        \"courseID\": \"514\",\n        \"course_name\": \"YPA - Primary Care Cloverfork, KY\",\n        \"course_abbrev\": \"YPA Cloverfork\"\n    },\n    {\n        \"courseID\": \"523\",\n        \"course_name\": \"YPA - Primary Care Family Practice Associates, Guilford\",\n        \"course_abbrev\": \"YPA Family Prac\"\n    },\n    {\n        \"courseID\": \"517\",\n        \"course_name\": \"YPA - Primary Care Hartford Family Medicine\",\n        \"course_abbrev\": \"YPA HFM\"\n    },\n    {\n        \"courseID\": \"520\",\n        \"course_name\": \"YPA - Primary Care Health Plan Urgent Care Center\",\n        \"course_abbrev\": \"YPA YHP UCC\"\n    },\n    {\n        \"courseID\": \"515\",\n        \"course_name\": \"YPA - Primary Care Nathan Smith Clinic\",\n        \"course_abbrev\": \"YPA Nathan Smit\"\n    },\n    {\n        \"courseID\": \"672\",\n        \"course_name\": \"YPA - Primary Care NEMG\",\n        \"course_abbrev\": \"YPA - UCWH\"\n    },\n    {\n        \"courseID\": \"512\",\n        \"course_name\": \"YPA - Primary Care Optimus Healthcare\",\n        \"course_abbrev\": \"YPA - Optimus\"\n    },\n    {\n        \"courseID\": \"513\",\n        \"course_name\": \"YPA - Primary Care Park West Family Medicine\",\n        \"course_abbrev\": \"YPA Park West\"\n    },\n    {\n        \"courseID\": \"696\",\n        \"course_name\": \"YPA - Primary Care Shirley Wong, MD\",\n        \"course_abbrev\": \"YPA PC Wong\"\n    },\n    {\n        \"courseID\": \"518\",\n        \"course_name\": \"YPA - Primary Care St. Mary's Children &amp; Family Health Center 1\",\n        \"course_abbrev\": \"YPA St. Mary's\"\n    },\n    {\n        \"courseID\": \"566\",\n        \"course_name\": \"YPA - Primary Care St. Mary's Children &amp; Family Health Center 2\",\n        \"course_abbrev\": \"YPA St. Mary's\"\n    },\n    {\n        \"courseID\": \"521\",\n        \"course_name\": \"YPA - Primary Care Whitman Walker\",\n        \"course_abbrev\": \"YPA WW\"\n    },\n    {\n        \"courseID\": \"509\",\n        \"course_name\": \"YPA - Psychiatry\",\n        \"course_abbrev\": \"YPA Psych\"\n    },\n    {\n        \"courseID\": \"541\",\n        \"course_name\": \"YPA - Radiation Oncology\",\n        \"course_abbrev\": \"YPA Rad Onc\"\n    },\n    {\n        \"courseID\": \"561\",\n        \"course_name\": \"YPA - Radiology\",\n        \"course_abbrev\": \"YPA Radiology\"\n    },\n    {\n        \"courseID\": \"559\",\n        \"course_name\": \"YPA - Rheumatology\",\n        \"course_abbrev\": \"YPA Rheum\"\n    },\n    {\n        \"courseID\": \"560\",\n        \"course_name\": \"YPA - Surgical ICU\",\n        \"course_abbrev\": \"YPA SICU\"\n    },\n    {\n        \"courseID\": \"565\",\n        \"course_name\": \"YPA - Thesis\",\n        \"course_abbrev\": \"YPA thesis\"\n    },\n    {\n        \"courseID\": \"797\",\n        \"course_name\": \"Z-Emergency Medicine-JJ\",\n        \"course_abbrev\": \"Z-EM-JJ\"\n    },\n    {\n        \"courseID\": \"795\",\n        \"course_name\": \"Z-Internal Medicine-JJ\",\n        \"course_abbrev\": \"Z-IM-JJ\"\n    },\n    {\n        \"courseID\": \"796\",\n        \"course_name\": \"Z-Pediatrics-JJ\",\n        \"course_abbrev\": \"Z-PEDS-JJ\"\n    }\n]"}],"_postman_id":"e4ded78a-2ba2-44d7-80ee-d2d4ac03113e"},{"name":"courses/courseCreate","id":"25fb969c-b5dd-45de-8ce4-353ac9150036","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"school_id\":1,\"course_name\":\"Example New Course\",\"course_abbrv\":\"ExampleNC\",\"course_number\":\"13579\",\"location_id\":\"4\",\"group_id\":\"\",\"course_parent\":\"\",\"director_id\":\"77116\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/courses/courseCreate","description":"<p>Creates a new course in MedHub</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td>school_id</td><td>integer</td><td>Yes</td><td>v1.22</td><td></td></tr><tr><td>course_name</td><td>string</td><td>Yes</td><td>v1.22</td><td>max 100 characters</td></tr><tr><td>course_abbrv</td><td>string</td><td>Yes</td><td>v1.22</td><td>max 20 characters</td></tr><tr><td>course_number</td><td>string</td><td>Yes</td><td>v1.22</td><td></td></tr><tr><td>location_id</td><td>integer</td><td>Yes</td><td>v1.22</td><td>use courses/locations to get a list of available location_ids</td></tr><tr><td>group_id</td><td>integer</td><td>No</td><td>v1.22</td><td>use courses/groups to get a list of available group_ids</td></tr><tr><td>course_parent</td><td>integer</td><td>No</td><td>v1.22</td><td>use courses/parents to get a list of available course_parent IDs</td></tr><tr><td>director_id</td><td>integer</td><td>No</td><td>v1.22</td><td>sets a faculty userID as the course director</td></tr><tr><td>administrator_id</td><td>integer</td><td>No</td><td>v1.22</td><td>sets a coordinator userID as the primary course coordinator</td></tr><tr><td>block_id</td><td>integer</td><td>No</td><td>v1.22</td><td></td></tr><tr><td>credit_hours</td><td>float</td><td>No</td><td>v1.22</td><td></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td>courseID</td><td>unique course identifier</td><td>integer</td><td>v1.22</td><td></td></tr></tbody></table>","urlObject":{"path":["courses","courseCreate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"389f70f9-feb8-4391-b9e2-97b2709dfb6e","name":"courses/courseCreate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"school_id\":1,\"course_name\":\"Example New Course\",\"course_abbrv\":\"ExampleNC\",\"course_number\":\"13579\",\"location_id\":\"4\",\"group_id\":\"\",\"course_parent\":\"\",\"director_id\":\"77116\"}","description":"example only","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://sandbox.medhub.com/functions/api/courses/courseCreate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 25 Mar 2020 12:40:06 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"course_id\": 1134\n}"}],"_postman_id":"25fb969c-b5dd-45de-8ce4-353ac9150036"},{"name":"courses/update","id":"0ed6774a-a889-4188-a25f-c53a442e7b25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"courseID\":837, \"course_name\":\"New Name\",\"course_abbrv\":NEW}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/courses/update","description":"<p>Updates a course/clerkship's information</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td>courseID</td><td>integer</td><td>Yes</td><td>v1.27</td><td></td></tr><tr><td>course_name</td><td>string</td><td>No</td><td>v1.27</td><td>max 100 characters</td></tr><tr><td>course_abbrv</td><td>string</td><td>No</td><td>v1.27</td><td>max 15 characters</td></tr><tr><td>course_number</td><td>string</td><td>No</td><td>v1.27</td><td></td></tr><tr><td>course_status</td><td></td><td>No</td><td>v1.27</td><td></td></tr><tr><td>location_id</td><td>integer</td><td>No</td><td>v1.27</td><td>use courses/locations to get a list of available location_ids</td></tr><tr><td>group_id</td><td>integer</td><td>No</td><td>v1.27</td><td>use courses/groups to get a list of available group_ids</td></tr><tr><td>course_parent</td><td>integer</td><td>No</td><td>v1.27</td><td>use courses/parents to get a list of available course_parent IDs</td></tr><tr><td>director_id</td><td>integer</td><td>No</td><td>v1.27</td><td>change/add a faculty userID as the course director</td></tr><tr><td>administrator_id</td><td>integer</td><td>No</td><td>v1.27</td><td>change/add a coordinator userID as the primary course coordinator</td></tr><tr><td>block_id</td><td>integer</td><td>No</td><td>v1.27</td><td></td></tr><tr><td>credit_hours</td><td>float</td><td>No</td><td>v1.27</td><td></td></tr></tbody></table>","urlObject":{"path":["courses","update"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"0ed6774a-a889-4188-a25f-c53a442e7b25"},{"name":"courses/parents","id":"e76f0083-0166-406e-bfee-18fc4aaa1760","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>no input required</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/courses/parents","description":"<p>Retrieves a list of all course parents.</p>\n<h6>Input Variables - None</h6>\n\n    \n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>id</td>\n        <td>unique course parent identifier</td>\n        <td>integer</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>name</td>\n        <td>course parent name</td>\n        <td>string</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>abbreviation</td>\n        <td>course parent abbreviation</td>\n        <td>string</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>departmentID</td>\n        <td>unique department identifer</td>\n        <td>integer</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>schoolID</td>\n        <td>unique school identifer</td>\n        <td>integer</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>active</td>\n        <td>shows whether or not the course parent is active</td>\n        <td>boolean</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["courses","parents"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"b785e944-0142-4216-8e8b-8391af6f03ee","name":"courses/parents","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/courses/parents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 25 Mar 2020 13:16:42 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"name\": \"Internal Medicine - 1000\",\n        \"abbreviation\": \"IM - 1000\",\n        \"departmentId\": null,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 2,\n        \"name\": \"TR Parent\",\n        \"abbreviation\": \"TRP\",\n        \"departmentId\": 1,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 3,\n        \"name\": \"Becky's Parent\",\n        \"abbreviation\": \"BeckParent\",\n        \"departmentId\": null,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 4,\n        \"name\": \" Pier one\",\n        \"abbreviation\": \"PO\",\n        \"departmentId\": null,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 5,\n        \"name\": \"Jenny Parent\",\n        \"abbreviation\": \"JP\",\n        \"departmentId\": 5,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 6,\n        \"name\": \"Brown Bag Parent\",\n        \"abbreviation\": \"BBP\",\n        \"departmentId\": null,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 7,\n        \"name\": \"Brown Bag 2\",\n        \"abbreviation\": \"BB2\",\n        \"departmentId\": 3,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 8,\n        \"name\": \"Tina's Parent\",\n        \"abbreviation\": \"TINA\",\n        \"departmentId\": 6,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 9,\n        \"name\": \"Parent 1\",\n        \"abbreviation\": \"PAR1\",\n        \"departmentId\": 7,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 10,\n        \"name\": \"Internal Medicine 3000\",\n        \"abbreviation\": \"IM\",\n        \"departmentId\": 1,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 11,\n        \"name\": \"Psychiatry Core Clerkship 500\",\n        \"abbreviation\": \"PCC-500\",\n        \"departmentId\": null,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 12,\n        \"name\": \"Radiology Courses\",\n        \"abbreviation\": \"RAD\",\n        \"departmentId\": null,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 13,\n        \"name\": \"Heidi Parent\",\n        \"abbreviation\": \"Heidi Pare\",\n        \"departmentId\": null,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 14,\n        \"name\": \"Hogwarts\",\n        \"abbreviation\": \"HOG\",\n        \"departmentId\": null,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 15,\n        \"name\": \"Cody Parent course\",\n        \"abbreviation\": \"CPC\",\n        \"departmentId\": null,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 16,\n        \"name\": \"3rd YR INT MED COURSES\",\n        \"abbreviation\": \"3IMC\",\n        \"departmentId\": 1,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 17,\n        \"name\": \"\",\n        \"abbreviation\": \"\",\n        \"departmentId\": null,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 19,\n        \"name\": \"Sand Parent\",\n        \"abbreviation\": \"Sand\",\n        \"departmentId\": 11,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 20,\n        \"name\": \"Emergency Medicine\",\n        \"abbreviation\": \"EMD\",\n        \"departmentId\": 11,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 21,\n        \"name\": \"Housing \",\n        \"abbreviation\": \"HOUSE\",\n        \"departmentId\": null,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 22,\n        \"name\": \"Lottery Courses - Dave Giles\",\n        \"abbreviation\": \"Lottery DG\",\n        \"departmentId\": 12,\n        \"schoolId\": 1,\n        \"active\": true\n    },\n    {\n        \"id\": 23,\n        \"name\": \"LIC\",\n        \"abbreviation\": \"LIC\",\n        \"departmentId\": 14,\n        \"schoolId\": 1,\n        \"active\": true\n    }\n]"}],"_postman_id":"e76f0083-0166-406e-bfee-18fc4aaa1760"},{"name":"courses/locations","id":"ae607dd1-474e-48de-91a8-5738f4066fe1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>no input required</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/courses/locations","description":"<p>Retrieves a list of all active course locations</p>\n<h6>Input Variables</h6>\nNone\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>id</td>\n        <td>unique location identifier</td>\n        <td>integer</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>name</td>\n        <td>course location name</td>\n        <td>string</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>active</td>\n        <td>shows whether or not the location is active</td>\n        <td>boolean</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>class_section</td>\n        <td></td>\n        <td>string</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>schoolID</td>\n        <td>unique school identifier</td>\n        <td>integer</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>address</td>\n        <td>location address</td>\n        <td>string</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>geocode</td>\n        <td></td>\n        <td></td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["courses","locations"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"7d96ac5c-a8d3-4c05-b3e7-0a12e5fa99be","name":"courses/locations","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/courses/locations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 25 Mar 2020 13:19:46 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"name\": \"DEMO\",\n        \"active\": true,\n        \"class_section\": null,\n        \"schoolId\": 1,\n        \"address\": null,\n        \"geocode\": null\n    },\n    {\n        \"id\": 2,\n        \"name\": \"Community\",\n        \"active\": true,\n        \"class_section\": null,\n        \"schoolId\": 1,\n        \"address\": null,\n        \"geocode\": null\n    },\n    {\n        \"id\": 3,\n        \"name\": \"WHVA\",\n        \"active\": true,\n        \"class_section\": null,\n        \"schoolId\": 1,\n        \"address\": null,\n        \"geocode\": null\n    },\n    {\n        \"id\": 4,\n        \"name\": \"DEMO/DEV\",\n        \"active\": true,\n        \"class_section\": null,\n        \"schoolId\": 1,\n        \"address\": null,\n        \"geocode\": null\n    },\n    {\n        \"id\": 5,\n        \"name\": \"Branford\",\n        \"active\": true,\n        \"class_section\": null,\n        \"schoolId\": 1,\n        \"address\": null,\n        \"geocode\": null\n    },\n    {\n        \"id\": 6,\n        \"name\": \"HSR\",\n        \"active\": true,\n        \"class_section\": null,\n        \"schoolId\": 1,\n        \"address\": null,\n        \"geocode\": null\n    },\n    {\n        \"id\": 7,\n        \"name\": \"Gallup\",\n        \"active\": true,\n        \"class_section\": null,\n        \"schoolId\": 1,\n        \"address\": null,\n        \"geocode\": null\n    },\n    {\n        \"id\": 8,\n        \"name\": \"Port\",\n        \"active\": true,\n        \"class_section\": null,\n        \"schoolId\": 1,\n        \"address\": null,\n        \"geocode\": null\n    },\n    {\n        \"id\": 9,\n        \"name\": \"AWAY\",\n        \"active\": true,\n        \"class_section\": null,\n        \"schoolId\": 1,\n        \"address\": null,\n        \"geocode\": null\n    },\n    {\n        \"id\": 16,\n        \"name\": \"North Detroit\",\n        \"active\": true,\n        \"class_section\": \"MD 50\",\n        \"schoolId\": 1,\n        \"address\": null,\n        \"geocode\": null\n    },\n    {\n        \"id\": 17,\n        \"name\": \"South Detroit\",\n        \"active\": true,\n        \"class_section\": \"500\",\n        \"schoolId\": 1,\n        \"address\": null,\n        \"geocode\": null\n    },\n    {\n        \"id\": 18,\n        \"name\": \"North Detroit\",\n        \"active\": true,\n        \"class_section\": \"500\",\n        \"schoolId\": 1,\n        \"address\": null,\n        \"geocode\": null\n    },\n    {\n        \"id\": 19,\n        \"name\": \"North Detroit\",\n        \"active\": true,\n        \"class_section\": null,\n        \"schoolId\": 1,\n        \"address\": null,\n        \"geocode\": null\n    },\n    {\n        \"id\": 25,\n        \"name\": \"Saginaw \",\n        \"active\": true,\n        \"class_section\": null,\n        \"schoolId\": 1,\n        \"address\": null,\n        \"geocode\": null\n    }\n]"}],"_postman_id":"ae607dd1-474e-48de-91a8-5738f4066fe1"},{"name":"courses/groups","id":"e0f5e52c-262a-444a-a214-f4397dcac63b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>no input required</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/courses/groups","description":"<p>Retrieves a list of all course groups and their IDs.</p>\n<h6>Input Variables</h6>\nNone\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>clerkship_groupID</td>\n        <td>unique group identifier</td>\n        <td>integer</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>group_name</td>\n        <td>course group name</td>\n        <td>string</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>group_abbrev</td>\n        <td>course group abbreviation</td>\n        <td>string</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>group_required</td>\n        <td></td>\n        <td>integer</td>\n        <td>v1.28</td>\n        <td>\"0\" = not required, \"1\" = required</td>\n    </tr>\n    <tr>\n        <td>standard_yearA</td>\n        <td></td>\n        <td></td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>status</td>\n        <td>shows the current status of the course group</td>\n        <td>integer</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["courses","groups"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"47d6bd2d-a5e5-439c-8493-94eb2bde4ee0","name":"courses/groups","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"","description":"no input required","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/courses/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Apr 2020 13:39:11 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"clerkship_groupID\": 21,\n        \"group_name\": \"1Medical Approach to Patient\",\n        \"group_abbrev\": \"IMNE\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"3:4:5\",\n        \"status\": 0\n    },\n    {\n        \"clerkship_groupID\": 6,\n        \"group_name\": \"Away (Placeholders)\",\n        \"group_abbrev\": \"\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 50,\n        \"group_name\": \"Away Elective\",\n        \"group_abbrev\": \"AWY EL\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"1:2:3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 53,\n        \"group_name\": \"CEK test\",\n        \"group_abbrev\": \"CEK test\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"2:3\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 19,\n        \"group_name\": \"CL Integrated Clerkships\",\n        \"group_abbrev\": \"CLN\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 7,\n        \"group_name\": \"Clerkship (4th/5th Year ONLY)\",\n        \"group_abbrev\": \"\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 13,\n        \"group_name\": \"Clerkships (12wk Placeholder)\",\n        \"group_abbrev\": \"CLERK-PLACE\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"1:2:3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 1,\n        \"group_name\": \"Clerkships (Lottery)\",\n        \"group_abbrev\": \"CL-Lottery\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"1:2:3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 8,\n        \"group_name\": \"Clerkships (New 3rd MD/PHD)\",\n        \"group_abbrev\": \"\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"3\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 12,\n        \"group_name\": \"Clerkships (OBGYN/Psych)\",\n        \"group_abbrev\": \"CLERK-OBP\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 57,\n        \"group_name\": \"Cody Test\",\n        \"group_abbrev\": \"CT\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"1:2:3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 51,\n        \"group_name\": \"conference groups\",\n        \"group_abbrev\": \"CONF\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"1:2:3:4\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 72,\n        \"group_name\": \"Dave's Lottery Test Group\",\n        \"group_abbrev\": \"DG Lottery\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"3:4\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 2,\n        \"group_name\": \"Elective\",\n        \"group_abbrev\": \"\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 4,\n        \"group_name\": \"Elective - AWAY\",\n        \"group_abbrev\": \"\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"1:2:3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 22,\n        \"group_name\": \"Empty Group\",\n        \"group_abbrev\": \"EMPTYGROUP\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 54,\n        \"group_name\": \"Final Form Group\",\n        \"group_abbrev\": \"Final\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"1:2:3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 69,\n        \"group_name\": \"Housing\",\n        \"group_abbrev\": \"HSNG\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"1:2:3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 56,\n        \"group_name\": \"IC3\",\n        \"group_abbrev\": \"IC3\",\n        \"group_required\": 1,\n        \"standard_yearA\": \"3\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 20,\n        \"group_name\": \"Integrated CL for Optimization\",\n        \"group_abbrev\": \"ICO\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"3\",\n        \"status\": 0\n    },\n    {\n        \"clerkship_groupID\": 10,\n        \"group_name\": \"Internal Medicine 1and 2\",\n        \"group_abbrev\": \"IM 1and 2\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"3\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 52,\n        \"group_name\": \"Jen Lottery Group\",\n        \"group_abbrev\": \"Jen Group\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"1:2:3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 55,\n        \"group_name\": \"Jen Test 3\",\n        \"group_abbrev\": \"Jen Test 3\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"1:2:3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 58,\n        \"group_name\": \"JTestJ\",\n        \"group_abbrev\": \"JTestJ\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"1:2:3:4\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 15,\n        \"group_name\": \"PA Electives\",\n        \"group_abbrev\": \"PA\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"1:2:3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 18,\n        \"group_name\": \"PA Mandatory\",\n        \"group_abbrev\": \"PAM\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"1:2:3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 73,\n        \"group_name\": \"Sample Courses\",\n        \"group_abbrev\": \"SMPC\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"1:2:3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 17,\n        \"group_name\": \"Selective\",\n        \"group_abbrev\": \"Select\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"3\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 16,\n        \"group_name\": \"Sub-internship in Pediatrics\",\n        \"group_abbrev\": \"SPEDS\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"1:2:3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 3,\n        \"group_name\": \"Subinternship\",\n        \"group_abbrev\": \"\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"1:2:3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 11,\n        \"group_name\": \"Subinternship (IM)\",\n        \"group_abbrev\": \"SUB-I-IM\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 5,\n        \"group_name\": \"Subinternship - AWAY\",\n        \"group_abbrev\": \"\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 9,\n        \"group_name\": \"Subs/Electives - SPECIAL\",\n        \"group_abbrev\": \"\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"3:4:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 70,\n        \"group_name\": \"test - DG\",\n        \"group_abbrev\": \"dgtest\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"1:2:5\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 71,\n        \"group_name\": \"Test Group DG\",\n        \"group_abbrev\": \"dgtest\",\n        \"group_required\": 0,\n        \"standard_yearA\": \"3:4\",\n        \"status\": 1\n    },\n    {\n        \"clerkship_groupID\": 14,\n        \"group_name\": \"Visiting\",\n        \"group_abbrev\": \"VST\",\n        \"group_required\": 0,\n        \"standard_yearA\": null,\n        \"status\": 1\n    }\n]"}],"_postman_id":"e0f5e52c-262a-444a-a214-f4397dcac63b"}],"id":"eebf6def-2b93-414c-a669-fda1245308fe","_postman_id":"eebf6def-2b93-414c-a669-fda1245308fe","description":""},{"name":"Curriculum","item":[{"name":"curriculum/objectives","id":"acd771d5-56b7-4b3d-9546-6e67b52cf11e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"request","value":"","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/curriculum/objectives","description":"<p>Retrieves a list of curriculum objectives/goals for a given globalserviceID, clinicnameID, courseID, or programID.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>integer</td>\n        <td>No*</td>\n        <td></td>\n        <td>*Required if no other parameter is given.</td>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>integer</td>\n        <td>No*</td>\n        <td></td>\n        <td>*Required if no other parameter is given.</td>\n    </tr>\n    <tr>\n        <td>globalserviceID</td>\n        <td>integer</td>\n        <td>No*</td>\n        <td></td>\n        <td>*Required if no other parameter is given.</td>\n    </tr>\n    <tr>\n        <td>clinicnameID</td>\n        <td>integer</td>\n        <td>No*</td>\n        <td></td>\n        <td>*Required if no other parameter is given.</td>\n    </tr>\n</table>","urlObject":{"path":["curriculum","objectives"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"acd771d5-56b7-4b3d-9546-6e67b52cf11e"}],"id":"900e45e2-5dce-4ed2-afbf-4aefccabf445","_postman_id":"900e45e2-5dce-4ed2-afbf-4aefccabf445","description":""},{"name":"Curriculum Map","item":[{"name":"curriculummap/course","id":"2d1ff6d5-ec32-491c-aefb-d7388577fa0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"courseID\":1066, \"rotationsetID\":19}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/curriculummap/course","description":"<p>Provides course data for a specified course, including linked sessions and course objectives.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>rotationsetID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td></td>\n        <td>identifies the academic year</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>unique course identifier</td>\n        <td>integer</td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>courseName</td>\n        <td>course name</td>\n        <td>string</td>\n        <td></td>\n        <td></td>\n    </tr>\n      <tr>\n        <td>courseAbbreviation</td>\n        <td>course Abbreviation</td>\n        <td>string</td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>sessionIDs</td>\n        <td>unique identifiers of course sessions</td>\n        <td>array</td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>courseObjectiveIDs</td>\n        <td>unique identifiers of course objectives</td>\n        <td>array</td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["curriculummap","course"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"1006b436-98fd-454b-8b25-6013820446dd","name":"curriculummap/course","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"courseID\":1066, \"rotationsetID\":19}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/curriculummap/course"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 May 2020 12:58:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"courseId\": 1066,\n    \"courseName\": \"100 Emergency Med\",\n    \"courseAbbreviation\": \"EM\",\n    \"sessionIds\": [\n        26561,\n        26571,\n        26577,\n        26578,\n        26585,\n        26586\n    ],\n    \"courseObjectiveIds\": [\n        149980,\n        149982,\n        149989\n    ]\n}"}],"_postman_id":"2d1ff6d5-ec32-491c-aefb-d7388577fa0d"},{"name":"curriculummap/courseObjective","id":"4097dbd3-0604-4b06-89f8-415a81620f10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"courseObjectiveID\":149980}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/curriculummap/courseObjective","description":"<p>Provides sessions, session objectives, and EPOs linked to the specified course objective ID.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>courseObjectiveID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>courseObjectiveID</td>\n        <td>unique identifier for course objective</td>\n        <td>integer</td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>courseObjectiveName</td>\n        <td>course objective name</td>\n        <td>string</td>\n        <td></td>\n        <td></td>\n    </tr>\n      <tr>\n        <td>epoIDs</td>\n        <td>unique identifiers for linked EPOs</td>\n        <td>array</td>\n        <td></td>\n        <td>list of all Educational Program Objectives IDs to which the specified course objective is linked</td>\n    </tr>\n    <tr>\n        <td>sessionIDs</td>\n        <td>unique identifiers for linked sessions</td>\n        <td>array</td>\n        <td></td>\n        <td>list of all session IDs linked to the specified course objective</td>\n    </tr>\n    <tr>\n        <td>sessionObjectiveIDs</td>\n        <td>unique identifiers for linked session objectives</td>\n        <td>array</td>\n        <td></td>\n        <td>list of all session objective IDs linked to the specified course objective</td>\n    </tr>\n</table>","urlObject":{"path":["curriculummap","courseObjective"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"74f13402-5615-471d-a642-4b8500f49aa1","name":"curriculummap/courseObjective","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"courseObjectiveID\":149980}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/curriculummap/courseObjective"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 May 2020 14:41:51 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"courseObjectiveId\": 149980,\n    \"courseObjectiveName\": \"Example Course Objective for API Documentation\",\n    \"epoIds\": [\n        142247,\n        142274\n    ],\n    \"courseSessionIds\": [\n        26578\n    ],\n    \"sessionObjectiveIds\": [\n        149981\n    ]\n}"}],"_postman_id":"4097dbd3-0604-4b06-89f8-415a81620f10"},{"name":"curriculummap/session","id":"5367697e-a3a8-4268-ac49-dab7daf8237f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"sessionID\":26571}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/curriculummap/session","description":"<p>Provides session data for a specified session ID, including linked session and course objectives.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>sessionID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>sessionID</td>\n        <td>unique session identifier</td>\n        <td>integer</td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>sessionName</td>\n        <td>session name</td>\n        <td>string</td>\n        <td></td>\n        <td></td>\n    </tr>\n      <tr>\n        <td>duration</td>\n        <td>duration of session</td>\n        <td>string</td>\n        <td></td>\n        <td>Format in HH:MM</td>\n    </tr>\n    <tr>\n        <td>intensive</td>\n        <td></td>\n        <td>string</td>\n        <td></td>\n        <td>\"Yes\" or \"No\"</td>\n    </tr>\n    <tr>\n        <td>sessionObjectiveIDs</td>\n        <td>list of unique identifiers for linked session objectives</td>\n        <td>array</td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>courseObjectiveIDs</td>\n        <td>list of unique identifiers for linked course objectives</td>\n        <td>array</td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["curriculummap","session"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"e027cdaa-9b36-44a8-9eaa-3c197fb5bdd4","name":"curriculummap/session","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"sessionID\":26571}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/curriculummap/session"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 May 2020 14:47:09 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sessionObjectiveId\": 26571,\n    \"sessionObjectiveName\": \"Example Session for API Documentation\",\n    \"duration\": \"1:30\",\n    \"intensive\": \"no\",\n    \"sessionObjectiveIds\": [\n        149978,\n        149981\n    ],\n    \"courseObjectiveIds\": [\n        149980\n    ]\n}"}],"_postman_id":"5367697e-a3a8-4268-ac49-dab7daf8237f"},{"name":"curriculummap/sessionObjective","id":"3ac56046-10b3-46d4-b48a-14992bd8afa3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"sessionObjectiveID\":149981}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/curriculummap/sessionObjective","description":"<p>Provides sessions, course objectives, and EPOs linked to the specified session objective.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>sessionObjectiveID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>sessionObjectiveID</td>\n        <td>unique session objective identifier</td>\n        <td>integer</td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>sessionObjectiveName</td>\n        <td>session objective name</td>\n        <td>string</td>\n        <td></td>\n        <td></td>\n    </tr>\n      <tr>\n        <td>epoIDs</td>\n        <td>list of unique identifiers for linked Educational Program Objectives</td>\n        <td>array</td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>courseSessionIDs</td>\n        <td>list of unique identifiers for linked course sessions</td>\n        <td>array</td>\n        <td></td>\n        <td>includes all session IDs for all sessions linked to the specified session objective</td>\n    </tr>\n    <tr>\n        <td>courseObjectiveIDs</td>\n        <td>unique identifiers for linked course objectives</td>\n        <td>array</td>\n        <td></td>\n        <td>includes IDs for all course objectives linked to the specified session objective</td>\n    </tr>\n</table>","urlObject":{"path":["curriculummap","sessionObjective"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"71635113-3ad5-4bbb-bbcd-c61178c20b64","name":"curriculummap/sessionObjective","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"sessionObjectiveID\":149981}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/curriculummap/sessionObjective"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 May 2020 14:44:09 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"sessionObjectiveId\": 149981,\n    \"sessionObjectiveName\": \"Example session objective for API documentation\",\n    \"epoIds\": [\n        142247,\n        142280\n    ],\n    \"courseSessionIds\": 26571,\n    \"courseObjectiveIds\": [\n        149980,\n        149982\n    ]\n}"}],"_postman_id":"3ac56046-10b3-46d4-b48a-14992bd8afa3"}],"id":"3c42f98c-d4ab-4b26-a814-2dccc8976d9c","_postman_id":"3c42f98c-d4ab-4b26-a814-2dccc8976d9c","description":""},{"name":"DutyHours","item":[{"name":"dutyhours/post","id":"97396210-c9de-4eed-ac88-970dc61a7697","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\":97927,\"startTime\":\"2020-06-01 08:00:00\",\"endTime\":\"2020-06-01 16:30:00\",\"periodType\":0}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/post","description":"<p>This call can be used to post a duty hour work period for a resident or student.<br />\n<em>Note, provided start/end times will be rounded to closest half hour, which is the lowest level of time precision currently maintained by MedHub.</em><br />\nDuty hours can only be posted during the standard 2-week entry period, which includes the previous calendar week (starting Sunday) through the current\nSaturday at midnight.<br /><br />\nThis call will add hours, but each resident will still be required to review these hours in MedHub and submit as completed.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.03</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>startTime</td>\n        <td>datetime</td>\n        <td>Yes</td>\n        <td>v1.03</td>\n        <td>Format YYYY-MM-DD HH:MM:SS Must be during an unlocked date period (this generally includes the last and current calendar week).</td>\n    </tr>\n    <tr>\n        <td>endTime</td>\n        <td>datetime</td>\n        <td>Yes</td>\n        <td>v1.03</td>\n        <td>Format YYYY-MM-DD HH:MM:SS Must occur after the startTime value but within one day.</td>\n    </tr>\n    <tr>\n        <td>periodType</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.03</td>\n        <td>Values: <ul><li>0 = Standard Period</li><li>1 = Internal Moonlighting</li><li>2 = External Moonlighting</li><li>3 = Home Call (called in)</li><li>4 = Work from Home</li></ul></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\nResponse returns \"success\" when time is successfully posted.","urlObject":{"path":["dutyhours","post"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"33992943-28be-4c40-9cb8-1ef1e8a9899a","name":"dutyhours/post","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":97927,\"startTime\":\"2020-06-01 08:00:00\",\"endTime\":\"2020-06-01 16:30:00\",\"periodType\":0}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/post"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Jun 2020 15:08:19 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"97396210-c9de-4eed-ac88-970dc61a7697"},{"name":"dutyhours/delete","id":"8dcd85bf-b7f4-41a1-bf68-dda1d815f6b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\":97927,\"date\":\"2020-06-01\",\"startTime\":\"08:00:00\",\"endTime\":\"16:30:00\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/delete","description":"<p>This call can be used to delete an entry on a resident or student timesheet.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.05</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>date</td>\n        <td>date</td>\n        <td>Yes</td>\n        <td>v1.05</td>\n        <td>Format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>startTime</td>\n        <td>time</td>\n        <td>Yes</td>\n        <td>v1.05</td>\n        <td>Format HH:MM:SS</td>\n    </tr>\n    <tr>\n        <td>endTime</td>\n        <td>time</td>\n        <td>Yes</td>\n        <td>v1.05</td>\n        <td>Format HH:MM:SS</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>result</td>\n        <td>status of deletion</td>\n        <td>integer</td>\n        <td>v1.05</td>\n        <td>Values: 0 = failed, 1 = success</td>\n    </tr>\n</table>","urlObject":{"path":["dutyhours","delete"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"01205db0-354c-4244-be17-a179ac08b925","name":"dutyhours/delete","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":97927,\"date\":\"2020-06-01\",\"startTime\":\"08:00:00\",\"endTime\":\"16:30:00\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/delete"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Jun 2020 15:16:59 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": 1\n}"}],"_postman_id":"8dcd85bf-b7f4-41a1-bf68-dda1d815f6b7"},{"name":"dutyhours/reasons","id":"f71b1cdc-69da-4e45-82b4-6a3ef860e595","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>no input required</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/reasons","description":"<p>Retrieves a list of all potential reasons for timesheet violations.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>n/a</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n</tr></table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>reasonID</td>\n        <td>unique identifier of violation reason</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>reason_name</td>\n        <td>name of violation reason</td>\n        <td>text</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["dutyhours","reasons"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"cbfb9bf1-73cc-4e87-b8c5-a34399b8e284","name":"dutyhours/reasons","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"no input required","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/reasons"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Jun 2020 16:12:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"reasonID\": 1,\n        \"reason_name\": \"Continuity of Care\"\n    },\n    {\n        \"reasonID\": 2,\n        \"reason_name\": \"Clinical Volume\"\n    },\n    {\n        \"reasonID\": 3,\n        \"reason_name\": \"Dictation/Documentation\"\n    },\n    {\n        \"reasonID\": 4,\n        \"reason_name\": \"Conference/Education\"\n    },\n    {\n        \"reasonID\": 5,\n        \"reason_name\": \"Procedures\"\n    },\n    {\n        \"reasonID\": 6,\n        \"reason_name\": \"Other...\"\n    },\n    {\n        \"reasonID\": 8,\n        \"reason_name\": \"1 in 7 Day off\"\n    }\n]"}],"_postman_id":"f71b1cdc-69da-4e45-82b4-6a3ef860e595"},{"name":"dutyhours/reviews","id":"f1543e93-a51d-4336-916d-96fac1e64cbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>no input required</p>\n","key":"request","type":"text","value":"{\"programID\":481,\"startDate\":\"2020-05-01\",\"endDate\":\"2020-05-31\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/reviews","description":"<p>Retrieves Director Duty Hour Review Periods for a given a program.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>startDate</td>\n        <td>date</td>\n        <td>Yes</td>\n        <td>v0.90</td>\n        <td>Format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>endDate</td>\n        <td>date</td>\n        <td>Yes</td>\n        <td>v0.90</td>\n        <td>Format YYYY-MM-DD</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>scheduleID</td>\n        <td>unique identifier of schedule defined for given time period</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>schedule_name</td>\n        <td>name of schedule defined for given time period</td>\n        <td>text</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>start_date</td>\n        <td>start date of review period</td>\n        <td>date</td>\n        <td>v0.90</td>\n        <td>Format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>end_date</td>\n        <td>end date of review period</td>\n        <td>date</td>\n        <td>v0.90</td>\n        <td>Format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>violations</td>\n        <td>number of violations in review period</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>status</td>\n        <td>status of review period</td>\n        <td>text</td>\n        <td>v0.90</td>\n        <td>Complete/Incomplete</td>\n    </tr>\n    <tr>\n        <td>school_name</td>\n        <td>Name of school</td>\n        <td>text</td>\n        <td>v0.90</td>\n        <td>Only applicable if the institution's medical school uses MedHub</td>\n    </tr>\n</table>","urlObject":{"path":["dutyhours","reviews"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"3cd49a72-3cb2-4813-bf4b-10ca1417e84b","name":"dutyhours/reviews","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"no input required","key":"request","type":"text","value":"{\"programID\":481,\"startDate\":\"2020-05-01\",\"endDate\":\"2020-05-31\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/reviews"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Jun 2020 16:29:52 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"scheduleID\": \"980\",\n        \"schedule_name\": \"IM-Primary\",\n        \"start_date\": \"2020-04-19\",\n        \"end_date\": \"2020-05-09\",\n        \"violations\": \"0\",\n        \"status\": \"Incomplete\"\n    },\n    {\n        \"scheduleID\": \"980\",\n        \"schedule_name\": \"IM-Primary\",\n        \"start_date\": \"2020-05-10\",\n        \"end_date\": \"2020-05-30\",\n        \"violations\": \"0\",\n        \"status\": \"Incomplete\"\n    },\n    {\n        \"scheduleID\": \"980\",\n        \"schedule_name\": \"IM-Primary\",\n        \"start_date\": \"2020-05-31\",\n        \"end_date\": \"2020-06-30\",\n        \"violations\": \"0\",\n        \"status\": \"Incomplete\"\n    },\n    {\n        \"scheduleID\": \"980\",\n        \"schedule_name\": \"IM-Primary\",\n        \"start_date\": \"2020-04-26\",\n        \"end_date\": \"2020-05-16\",\n        \"violations\": \"0\",\n        \"status\": \"Incomplete\"\n    },\n    {\n        \"scheduleID\": \"980\",\n        \"schedule_name\": \"IM-Primary\",\n        \"start_date\": \"2020-05-17\",\n        \"end_date\": \"2020-06-06\",\n        \"violations\": \"0\",\n        \"status\": \"Incomplete\"\n    },\n    {\n        \"scheduleID\": \"980\",\n        \"schedule_name\": \"IM-Primary\",\n        \"start_date\": \"2020-04-12\",\n        \"end_date\": \"2020-05-02\",\n        \"violations\": \"0\",\n        \"status\": \"Incomplete\"\n    },\n    {\n        \"scheduleID\": \"980\",\n        \"schedule_name\": \"IM-Primary\",\n        \"start_date\": \"2020-05-03\",\n        \"end_date\": \"2020-05-23\",\n        \"violations\": \"0\",\n        \"status\": \"Incomplete\"\n    },\n    {\n        \"scheduleID\": \"980\",\n        \"schedule_name\": \"IM-Primary\",\n        \"start_date\": \"2020-05-24\",\n        \"end_date\": \"2020-06-13\",\n        \"violations\": \"0\",\n        \"status\": \"Incomplete\"\n    },\n    {\n        \"scheduleID\": \"980\",\n        \"schedule_name\": \"IM-Primary\",\n        \"start_date\": \"2020-04-05\",\n        \"end_date\": \"2020-05-09\",\n        \"violations\": \"0\",\n        \"status\": \"Incomplete\"\n    },\n    {\n        \"scheduleID\": \"980\",\n        \"schedule_name\": \"IM-Primary\",\n        \"start_date\": \"2020-05-10\",\n        \"end_date\": \"2020-06-13\",\n        \"violations\": \"0\",\n        \"status\": \"Incomplete\"\n    }\n]"}],"_postman_id":"f1543e93-a51d-4336-916d-96fac1e64cbc"},{"name":"dutyhours/status","id":"f71c8422-83c2-4996-b05c-f51e5450f1e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\":97927}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/status","description":"<p>Retrieves available timesheets for a given user.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.05</td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>startDate</td>\n        <td>date the timesheet begins (start of week)</td>\n        <td>date</td>\n        <td>v1.05</td>\n        <td>Format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>endDate</td>\n        <td>date the timesheet ends (end of week)</td>\n        <td>date</td>\n        <td>v1.05</td>\n        <td>Format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>dueDate</td>\n        <td>date when the timesheet is due</td>\n        <td>date</td>\n        <td>v1.05</td>\n        <td>Format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>status</td>\n        <td>current status of timesheet</td>\n        <td>string</td>\n        <td>v1.05</td>\n        <td>Values: incomplete, complete, complete_nc, na</td>\n    </tr>\n    <tr>\n        <td>hours</td>\n        <td>total number of hours logged in timesheet</td>\n        <td>float</td>\n        <td>v1.05</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>submitRequired</td>\n        <td>tells whether or not timesheet submission is required</td>\n        <td>boolean</td>\n        <td>v1.05</td>\n        <td>TRUE if timesheet submission is required</td>\n    </tr>\n    <tr>\n        <td>hash</td>\n        <td>checksum of changes to status and recorded hours</td>\n        <td>string</td>\n        <td>v1.05</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["dutyhours","status"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"35bf4b40-d8fb-44c7-a0ec-063d8ec5fe57","name":"dutyhours/status","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":97927}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Jun 2020 16:42:17 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"startDate\": \"2020-03-01\",\n        \"endDate\": \"2020-03-07\",\n        \"dueDate\": \"2020-03-14\",\n        \"status\": \"incomplete\",\n        \"hours\": 2,\n        \"submitRequired\": true,\n        \"hash\": \"43d3242557b35183e75297164a7756a5\"\n    },\n    {\n        \"startDate\": \"2020-03-08\",\n        \"endDate\": \"2020-03-14\",\n        \"dueDate\": \"2020-03-21\",\n        \"status\": \"incomplete\",\n        \"hours\": 6.5,\n        \"submitRequired\": true,\n        \"hash\": \"ee772a7a99efbe4327e6cfd940590669\"\n    },\n    {\n        \"startDate\": \"2020-03-15\",\n        \"endDate\": \"2020-03-21\",\n        \"dueDate\": \"2020-03-28\",\n        \"status\": \"complete\",\n        \"hours\": 69,\n        \"submitRequired\": true,\n        \"hash\": \"cf69b3eb40bed25433fb6d468fc6b23d\"\n    },\n    {\n        \"startDate\": \"2020-03-22\",\n        \"endDate\": \"2020-03-28\",\n        \"dueDate\": \"2020-04-04\",\n        \"status\": \"complete\",\n        \"hours\": 10.5,\n        \"submitRequired\": true,\n        \"hash\": \"738b91504e23b307f3aef526ec17f53d\"\n    },\n    {\n        \"startDate\": \"2020-03-29\",\n        \"endDate\": \"2020-04-04\",\n        \"dueDate\": \"2020-04-11\",\n        \"status\": \"complete\",\n        \"hours\": 29,\n        \"submitRequired\": true,\n        \"hash\": \"60537cbd26563b4b20b5c43d281bd1fc\"\n    },\n    {\n        \"startDate\": \"2020-04-05\",\n        \"endDate\": \"2020-04-11\",\n        \"dueDate\": \"2020-04-18\",\n        \"status\": \"incomplete\",\n        \"hours\": 0,\n        \"submitRequired\": true,\n        \"hash\": \"482e3d95eb985806cde437205f3d542d\"\n    },\n    {\n        \"startDate\": \"2020-04-12\",\n        \"endDate\": \"2020-04-18\",\n        \"dueDate\": \"2020-04-25\",\n        \"status\": \"incomplete\",\n        \"hours\": 0,\n        \"submitRequired\": true,\n        \"hash\": \"9f856a18fe50a7dacdd09fa72fbfad8d\"\n    },\n    {\n        \"startDate\": \"2020-04-19\",\n        \"endDate\": \"2020-04-25\",\n        \"dueDate\": \"2020-05-02\",\n        \"status\": \"incomplete\",\n        \"hours\": 0,\n        \"submitRequired\": true,\n        \"hash\": \"8b421d68e2d0e1e969a2692a2f561577\"\n    },\n    {\n        \"startDate\": \"2020-04-26\",\n        \"endDate\": \"2020-05-02\",\n        \"dueDate\": \"2020-05-09\",\n        \"status\": \"complete\",\n        \"hours\": 60.5,\n        \"submitRequired\": true,\n        \"hash\": \"1176f2e2fe1ddfcdca8f104e5c8f05f5\"\n    },\n    {\n        \"startDate\": \"2020-05-03\",\n        \"endDate\": \"2020-05-09\",\n        \"dueDate\": \"2020-05-16\",\n        \"status\": \"complete\",\n        \"hours\": 79.5,\n        \"submitRequired\": true,\n        \"hash\": \"a5bb0b57c2776b372316946e069bdc4e\"\n    },\n    {\n        \"startDate\": \"2020-05-10\",\n        \"endDate\": \"2020-05-16\",\n        \"dueDate\": \"2020-05-23\",\n        \"status\": \"complete_nc\",\n        \"hours\": 90,\n        \"submitRequired\": true,\n        \"hash\": \"b60c727869d2424fab8814a6a7f06b0a\"\n    },\n    {\n        \"startDate\": \"2020-05-17\",\n        \"endDate\": \"2020-05-23\",\n        \"dueDate\": \"2020-05-30\",\n        \"status\": \"incomplete\",\n        \"hours\": 0,\n        \"submitRequired\": true,\n        \"hash\": \"baae3c4ab3db1e6a73ac9ff14db2ac29\"\n    },\n    {\n        \"startDate\": \"2020-05-24\",\n        \"endDate\": \"2020-05-30\",\n        \"dueDate\": \"2020-06-06\",\n        \"status\": \"incomplete\",\n        \"hours\": 0,\n        \"submitRequired\": false,\n        \"hash\": \"11d484f9e988c558b985b48c2a41c640\"\n    },\n    {\n        \"startDate\": \"2020-05-31\",\n        \"endDate\": \"2020-06-06\",\n        \"dueDate\": \"2020-06-13\",\n        \"status\": \"incomplete\",\n        \"hours\": 10,\n        \"submitRequired\": true,\n        \"hash\": \"800970d6c000f718b11ab606e0a512c7\"\n    }\n]"}],"_postman_id":"f71c8422-83c2-4996-b05c-f51e5450f1e3"},{"name":"dutyhours/submit","id":"55f5e2a6-7bfc-4f55-9f86-fa3d2ff4f46c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\":97927,\"date\":\"2020-06-06\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/submit","description":"<p>Submits a weekly timesheet for a given resident or student.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.05</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>date</td>\n        <td>date</td>\n        <td>Yes</td>\n        <td>v1.05</td>\n        <td>Format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>exceptions</td>\n        <td>array</td>\n        <td>Yes*</td>\n        <td>v1.05</td>\n        <td>*Only required if potential break violation exceptions exist</td>\n    </tr>\n    <tr>\n        <td>violationReasonID</td>\n        <td>integer</td>\n        <td>Yes*</td>\n        <td>v1.05</td>\n        <td>*Only required if potential violations are discovered on timesheet</td>\n    </tr>\n    <tr>\n        <td>violationNotes</td>\n        <td>string</td>\n        <td>Yes*</td>\n        <td>v1.05</td>\n        <td>*Only required if potential violations are discovered on timesheet</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>response</td>\n        <td>description of response</td>\n        <td>text</td>\n        <td>v1.05</td>\n        <td>Values: <ul><li>\"success\"<ul><li><b>Description:</b> timesheet was submitted successfully</li><li><b>Action to Resolve:</b> none</li></ul></li><li>\"pending-break-exception\"<ul><li><b>Description:</b> Entries were recorded with &lt; 8 hour gap with no additional information supplied.</li><li><b>Action to Resolve:</b> Must identify whether each occurrence is a violation or exception. A list of short gaps will be provided. A list of exception reasons will be provided. Must resubmit same call with all gaps addressed.</li></ul></li><li>\"pending-violation-reason\"<ul><li><b>Description:</b> a potential violation was found but no additional violation data was provided (i.e. no reasons/notes were provided)</li><li><b>Action to Resolve:</b> must provide a violation reason and note for each potential violation found on timesheet. A list of violation reasons will be provided.</li></ul></li><li>\"failed\"<ul><li><b>Description:</b> failed to submit timesheet for an unknown reason</li><li><b>Action to Resolve:</b> none</li></ul></li></ul></td>\n    </tr>\n    <tr>\n        <td>pendingList</td>\n        <td>list of potential break violation gaps to be addressed as violations or exceptions</td>\n        <td>array</td>\n        <td>v1.05</td>\n        <td>Returned only for response status \"pending-break-exception\". Each item in list contains the following \"key\" : \"value\" pairs:<ul><li>\"date\" : \"YYYY-MM-DD\"</li><li>\"time\" : \"HH:MMam/pm\"</li><li>\"hours\" : float - refers to the duration of the gap</li><li>\"key\" : integer</li><li>\"exception\" : integer - refers to the violation exception code</li></ul></td>\n    </tr>\n    <tr>\n        <td>exceptionTypes</td>\n        <td>list of violation or exception types</td>\n        <td>array</td>\n        <td>v1.05</td>\n        <td>Returned only for response status \"pending-break-exception\".\n    </td></tr>\n    <tr>\n        <td>violationList</td>\n        <td>list of potential violations discovered on timesheet</td>\n        <td>array</td>\n        <td>v1.05</td>\n        <td>Returned only for response status \"pending-violation-reason\".\n    </td></tr>\n    <tr>\n        <td>violationReasonList</td>\n        <td>list of available violationReasonIDs with labels</td>\n        <td>array</td>\n        <td>v1.05</td>\n        <td>Returned only for response status \"pending-violation-reason\".\n    </td></tr>\n    <tr>\n        <td>violationReasonID</td>\n        <td>currently recorded violation reason</td>\n        <td>integer</td>\n        <td>v1.05</td>\n        <td>Returned only for response status \"pending-violation-reason\".\n    </td></tr>\n    <tr>\n        <td>violationNotes</td>\n        <td>currently recorded violation notes</td>\n        <td>string</td>\n        <td>v1.05</td>\n        <td>Returned only for response status \"pending-violation-reason\".\n    </td></tr>\n</table>","urlObject":{"path":["dutyhours","submit"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"031de362-6a4a-4857-9a76-f9f374af4485","name":"\"pending-violation-reason\" dutyhours/submit","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":97927,\"date\":\"2020-06-06\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/submit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Jun 2020 17:58:51 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"pending-violation-reason\",\n    \"violationReasonList\": {\n        \"1\": \"Continuity of Care\",\n        \"2\": \"Clinical Volume\",\n        \"3\": \"Dictation/Documentation\",\n        \"4\": \"Conference/Education\",\n        \"5\": \"Procedures\",\n        \"6\": \"Other...\",\n        \"8\": \"1 in 7 Day off\"\n    },\n    \"violationNotes\": null,\n    \"violationReasonID\": 0,\n    \"violationList\": [\n        \"Maximum of 80 total hours (132.0 recorded)\",\n        \"Work period over maximum (24+4 Shift Max)\"\n    ]\n}"},{"id":"7009a12d-33b6-47b2-bdb3-23d4209605ce","name":"\"success\" dutyhours/submit","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":97927,\"date\":\"2020-05-23\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/submit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Jun 2020 17:48:55 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"},{"id":"9e380c69-5555-4405-ae01-95a370119d63","name":"\"pending-break-exception\" dutyhours/submit","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":97927,\"date\":\"2020-06-06\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/submit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Jun 2020 17:54:45 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"pending-break-exception\",\n    \"pendingList\": [\n        {\n            \"date\": \"2020-06-01\",\n            \"time\": \"3:00pm\",\n            \"hours\": 3.5,\n            \"key\": 1591038000,\n            \"exception\": 0\n        }\n    ],\n    \"exceptionTypes\": {\n        \"1\": \"Break between two different work periods (violation)\",\n        \"2\": \"Continued same work period after break\",\n        \"3\": \"Left institution for strategic nap (same work period)\"\n    }\n}"}],"_postman_id":"55f5e2a6-7bfc-4f55-9f86-fa3d2ff4f46c"},{"name":"dutyhours/timesheets","id":"7949c596-81c3-43a3-afc8-5f48aa064922","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\":97927, \"startDate\":\"2020-05-15\",\"endDate\":\"2020-06-01\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/timesheets","description":"<p>Retrieves timesheet data for a given resident over a specified date period.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>startDate</td>\n        <td>date</td>\n        <td>Yes</td>\n        <td>v0.90</td>\n        <td>Format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>endDate</td>\n        <td>date</td>\n        <td>Yes</td>\n        <td>v0.90</td>\n        <td>Format YYYY-MM-DD</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>date</td>\n        <td>date on timesheet</td>\n        <td>date</td>\n        <td>v0.90</td>\n        <td>Format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>start_time</td>\n        <td>start time logged for date on timesheet</td>\n        <td>time</td>\n        <td>v0.90</td>\n        <td>Format HH:MM:SS</td>\n    </tr>\n    <tr>\n        <td>end_time</td>\n        <td>end time logged for date on timesheet</td>\n        <td>time</td>\n        <td>v0.90</td>\n        <td>Format HH:MM:SS</td>\n    </tr>\n    <tr>\n        <td>worktypeID</td>\n        <td>unique identifier of work type selected for logged hours</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td>Use dutyhours/workTypes to get a list of all available work types</td>\n    </tr>\n    <tr>\n        <td>absence_type</td>\n        <td>type of absence logged</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td>Values: <ul><li>0 = none</li><li>1 = vacation</li><li>2 = sick day</li><li>3 = away conference</li><li>4 = loa</li></ul></td>\n    </tr>\n    <tr>\n        <td>status</td>\n        <td>status of timesheet</td>\n        <td>string</td>\n        <td>v0.90</td>\n        <td>Values: Incomplete/Submitted</td>\n    </tr>   \n</table>","urlObject":{"path":["dutyhours","timesheets"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"e975d5fc-aab6-497b-b989-97e03da11486","name":"dutyhours/timesheets","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":97927, \"startDate\":\"2020-05-15\",\"endDate\":\"2020-06-01\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/timesheets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Jun 2020 18:18:13 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"date\": \"2020-05-15\",\n        \"start_time\": \"06:00\",\n        \"end_time\": \"19:30\",\n        \"worktypeID\": \"0\",\n        \"absence_type\": \"0\",\n        \"status\": \"Submitted\"\n    },\n    {\n        \"date\": \"2020-05-16\",\n        \"start_time\": \"13:30\",\n        \"end_time\": \"21:00\",\n        \"worktypeID\": \"0\",\n        \"absence_type\": \"0\",\n        \"status\": \"Submitted\"\n    },\n    {\n        \"date\": \"2020-05-17\",\n        \"start_time\": \"19:00\",\n        \"end_time\": \"21:00\",\n        \"worktypeID\": \"0\",\n        \"absence_type\": \"0\",\n        \"status\": \"Submitted\"\n    },\n    {\n        \"date\": \"2020-05-18\",\n        \"start_time\": \"\",\n        \"end_time\": \"\",\n        \"worktypeID\": \"\",\n        \"absence_type\": \"1\",\n        \"status\": \"Submitted\"\n    },\n    {\n        \"date\": \"2020-05-19\",\n        \"start_time\": \"\",\n        \"end_time\": \"\",\n        \"worktypeID\": \"\",\n        \"absence_type\": \"1\",\n        \"status\": \"Submitted\"\n    },\n    {\n        \"date\": \"2020-05-20\",\n        \"start_time\": \"\",\n        \"end_time\": \"\",\n        \"worktypeID\": \"\",\n        \"absence_type\": \"1\",\n        \"status\": \"Submitted\"\n    },\n    {\n        \"date\": \"2020-05-21\",\n        \"start_time\": \"\",\n        \"end_time\": \"\",\n        \"worktypeID\": \"\",\n        \"absence_type\": \"1\",\n        \"status\": \"Submitted\"\n    },\n    {\n        \"date\": \"2020-05-22\",\n        \"start_time\": \"\",\n        \"end_time\": \"\",\n        \"worktypeID\": \"\",\n        \"absence_type\": \"1\",\n        \"status\": \"Submitted\"\n    },\n    {\n        \"date\": \"2020-05-23\",\n        \"start_time\": \"\",\n        \"end_time\": \"\",\n        \"worktypeID\": \"\",\n        \"absence_type\": \"1\",\n        \"status\": \"Submitted\"\n    },\n    {\n        \"date\": \"2020-05-24\",\n        \"start_time\": \"\",\n        \"end_time\": \"\",\n        \"worktypeID\": \"\",\n        \"absence_type\": \"1\",\n        \"status\": \"Incomplete\"\n    },\n    {\n        \"date\": \"2020-05-25\",\n        \"start_time\": \"\",\n        \"end_time\": \"\",\n        \"worktypeID\": \"\",\n        \"absence_type\": \"1\",\n        \"status\": \"Incomplete\"\n    },\n    {\n        \"date\": \"2020-05-26\",\n        \"start_time\": \"\",\n        \"end_time\": \"\",\n        \"worktypeID\": \"\",\n        \"absence_type\": \"2\",\n        \"status\": \"Incomplete\"\n    },\n    {\n        \"date\": \"2020-05-27\",\n        \"start_time\": \"\",\n        \"end_time\": \"\",\n        \"worktypeID\": \"\",\n        \"absence_type\": \"2\",\n        \"status\": \"Incomplete\"\n    },\n    {\n        \"date\": \"2020-05-28\",\n        \"start_time\": \"\",\n        \"end_time\": \"\",\n        \"worktypeID\": \"\",\n        \"absence_type\": \"2\",\n        \"status\": \"Incomplete\"\n    },\n    {\n        \"date\": \"2020-05-29\",\n        \"start_time\": \"\",\n        \"end_time\": \"\",\n        \"worktypeID\": \"\",\n        \"absence_type\": \"2\",\n        \"status\": \"Incomplete\"\n    },\n    {\n        \"date\": \"2020-05-30\",\n        \"start_time\": \"\",\n        \"end_time\": \"\",\n        \"worktypeID\": \"\",\n        \"absence_type\": \"2\",\n        \"status\": \"Incomplete\"\n    },\n    {\n        \"date\": \"2020-05-31\",\n        \"start_time\": \"\",\n        \"end_time\": \"\",\n        \"worktypeID\": \"\",\n        \"absence_type\": \"2\",\n        \"status\": \"Incomplete\"\n    },\n    {\n        \"date\": \"2020-06-01\",\n        \"start_time\": \"01:00\",\n        \"end_time\": \"00:00\",\n        \"worktypeID\": \"0\",\n        \"absence_type\": \"0\",\n        \"status\": \"Incomplete\"\n    }\n]"}],"_postman_id":"7949c596-81c3-43a3-afc8-5f48aa064922"},{"name":"dutyhours/week","id":"ea0288ce-4012-4938-a725-07dcd5fe6ffa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\":97927, \"date\":\"2020-06-03\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/week","description":"<p>Retrieves weekly details of a resident or student timesheet.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.05</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>date</td>\n        <td>date</td>\n        <td>Yes</td>\n        <td>v1.05</td>\n        <td>Format YYYY-MM-DD <em>Note, response will include the entire week encompassing the given date</em></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>access</td>\n        <td>access to work hours</td>\n        <td>boolean</td>\n        <td>v1.05</td>\n        <td>TRUE if user has access to work hours; if FALSE, no other fields will be returned</td>\n    </tr>\n    <tr>\n        <td>hash</td>\n        <td>checksum of changes to status and recorded hours</td>\n        <td>string</td>\n        <td>v1.05</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>startDate</td>\n        <td>start of week</td>\n        <td>date</td>\n        <td>v1.05</td>\n        <td>Format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>endDate</td>\n        <td>end of week</td>\n        <td>date</td>\n        <td>v1.05</td>\n        <td>Format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>dueDate</td>\n        <td>date when timesheet is due</td>\n        <td>date</td>\n        <td>v1.05</td>\n        <td>Format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>status</td>\n        <td>current status of timesheet</td>\n        <td>string</td>\n        <td>v1.05</td>\n        <td>Values: \"incomplete\", \"complete\", \"complete_nc\", \"na\"</td>\n    </tr>\n    <tr>\n        <td>hours</td>\n        <td>total hours logged for the week</td>\n        <td>float</td>\n        <td>v1.05</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>submitRequired</td>\n        <td>shows whether or not submission of timesheet is required</td>\n        <td>boolean</td>\n        <td>v1.05</td>\n        <td>TRUE if timesheet submission is required</td>\n    </tr>\n    <tr>\n        <td>violationReasonID</td>\n        <td>unique identifier for violation reason</td>\n        <td>integer</td>\n        <td>v1.05</td>\n        <td>Included only when violation reason is recorded</td>\n    </tr>\n    <tr>\n        <td>violationReason</td>\n        <td>desciption of violation reason</td>\n        <td>string</td>\n        <td>v1.05</td>\n        <td>Included only when violation reason is recorded</td>\n    </tr>\n    <tr>\n        <td>violationNotes</td>\n        <td>notes that were provided in response to logged violation</td>\n        <td>string</td>\n        <td>v1.05</td>\n        <td>Included only when violation reason is recorded</td>\n    </tr>\n    <tr>\n        <td>complianceChecklist</td>\n        <td>list of violation rules and statuses</td>\n        <td>array</td>\n        <td>v1.05</td>\n        <td>Each item in list contains key-value pair \"label\" (string) : \"compliant\" (boolean)</td>\n    </tr>\n    <tr>\n        <td>days</td>\n        <td>list of days and recorded activities</td>\n        <td>array</td>\n        <td>v1.05</td>\n        <td>Each item in list contains the following key-value pairs:\n            <ul><li>\"hours\" : float<ul><li><b>Description:</b> total hours logged for day</li><li><b>Data Type:</b> float</li></ul></li><li>\"date\" : \"YYYY-MM-DD\"<ul><li><b>Description:</b> calendar date of day</li><li><b>Data Type:</b> date</li></ul></li><li>\"absence\" : integer<ul><li><b>Description:</b> indicates absence with following values:<ul><li>0 = no absence</li><li>1 = vacation</li><li>2 = sick day</li><li>3 = away conference</li><li>4 = loa</li></ul></li><li><b>Data Type:</b> integer</li></ul></li><li>\"entries\" : array<ul><li><b>Description:</b> each entry contains the following key-value pairs:<ul><li>\"start\" : \"HH:MM\"</li><li>\"end\" : \"HH:MM\"</li><li>\"type\" : integer</li><li>\"hours\" : float</li></ul></li><li><b>Data Type:</b> array</li></ul>\"loggable\" : integer<ul><li><b>Description:</b> availability for logging, values include: \"1\" (default), \"0\" (not loggable)</li><li><b>Data Type:</b> integer</li></ul></li><li>\"breakViolation\" : \"TRUE/FALSE\"<ul><li><b>Description:</b> indicates break violation during day</li><li><b>Data Type:</b>boolean</li></ul></li><li>\"workViolation\" : \"TRUE/FALSE\"<ul><li><b>Description:</b> indicates work period violation during day</li><li><b>Data Type:</b> boolean</li></ul></li></ul></td></tr>\n</table>","urlObject":{"path":["dutyhours","week"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"f16208ce-bacd-4480-bcea-c37986befde0","name":"dutyhours/week","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":97927, \"date\":\"2020-06-03\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/week"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Jun 2020 18:55:01 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"access\": true,\n    \"hash\": \"d0c0b5c65b79e655d4ec26f7d94f001a\",\n    \"startDate\": \"2020-05-31\",\n    \"endDate\": \"2020-06-06\",\n    \"hours\": 132,\n    \"status\": \"incomplete\",\n    \"submitRequired\": true,\n    \"dueDate\": \"2020-06-13\",\n    \"complianceChecklist\": [\n        {\n            \"label\": \"80 Hr Max\",\n            \"compliant\": false\n        },\n        {\n            \"label\": \"Day Off\",\n            \"compliant\": true\n        },\n        {\n            \"label\": \"24+4 Shift Max\",\n            \"compliant\": false\n        },\n        {\n            \"label\": \"8-Hour Breaks\",\n            \"compliant\": true\n        },\n        {\n            \"label\": \"14 hr break after 24 hr call\",\n            \"compliant\": true\n        }\n    ],\n    \"days\": [\n        {\n            \"hours\": 24,\n            \"date\": \"2020-05-31\",\n            \"absence\": 2,\n            \"entries\": [\n                {\n                    \"start\": \"00:00\",\n                    \"end\": \"24:00\",\n                    \"type\": 4,\n                    \"hours\": 24\n                }\n            ],\n            \"loggable\": 1,\n            \"worktypes\": [\n                1,\n                4\n            ],\n            \"breakViolation\": false,\n            \"workViolation\": false\n        },\n        {\n            \"hours\": 23,\n            \"date\": \"2020-06-01\",\n            \"absence\": 0,\n            \"entries\": [\n                {\n                    \"start\": \"01:00\",\n                    \"end\": \"24:00\",\n                    \"type\": 0,\n                    \"hours\": 23\n                }\n            ],\n            \"loggable\": 1,\n            \"worktypes\": [\n                0,\n                1,\n                3,\n                4\n            ],\n            \"breakViolation\": false,\n            \"workViolation\": false\n        },\n        {\n            \"hours\": 24,\n            \"date\": \"2020-06-02\",\n            \"absence\": 0,\n            \"entries\": [\n                {\n                    \"start\": \"00:00\",\n                    \"end\": \"24:00\",\n                    \"type\": 0,\n                    \"hours\": 24\n                }\n            ],\n            \"loggable\": 1,\n            \"worktypes\": [\n                0,\n                1,\n                3,\n                4\n            ],\n            \"breakViolation\": false,\n            \"workViolation\": true\n        },\n        {\n            \"hours\": 15.5,\n            \"date\": \"2020-06-03\",\n            \"absence\": 0,\n            \"entries\": [\n                {\n                    \"start\": \"08:00\",\n                    \"end\": \"23:30\",\n                    \"type\": 0,\n                    \"hours\": 15.5\n                }\n            ],\n            \"loggable\": 1,\n            \"worktypes\": [\n                0,\n                1,\n                3,\n                4\n            ],\n            \"breakViolation\": false,\n            \"workViolation\": false\n        },\n        {\n            \"hours\": 15.5,\n            \"date\": \"2020-06-04\",\n            \"absence\": 0,\n            \"entries\": [\n                {\n                    \"start\": \"08:00\",\n                    \"end\": \"23:30\",\n                    \"type\": 0,\n                    \"hours\": 15.5\n                }\n            ],\n            \"loggable\": 1,\n            \"worktypes\": [\n                0,\n                1,\n                3,\n                4\n            ],\n            \"breakViolation\": false,\n            \"workViolation\": false\n        },\n        {\n            \"hours\": 14.5,\n            \"date\": \"2020-06-05\",\n            \"absence\": 0,\n            \"entries\": [\n                {\n                    \"start\": \"09:00\",\n                    \"end\": \"23:30\",\n                    \"type\": 0,\n                    \"hours\": 14.5\n                }\n            ],\n            \"loggable\": 1,\n            \"worktypes\": [\n                0,\n                1,\n                3,\n                4\n            ],\n            \"breakViolation\": false,\n            \"workViolation\": false\n        },\n        {\n            \"hours\": 15.5,\n            \"date\": \"2020-06-06\",\n            \"absence\": 0,\n            \"entries\": [\n                {\n                    \"start\": \"08:30\",\n                    \"end\": \"24:00\",\n                    \"type\": 0,\n                    \"hours\": 15.5\n                }\n            ],\n            \"loggable\": 1,\n            \"worktypes\": [\n                0,\n                1,\n                3,\n                4\n            ],\n            \"breakViolation\": false,\n            \"workViolation\": false\n        }\n    ]\n}"}],"_postman_id":"ea0288ce-4012-4938-a725-07dcd5fe6ffa"},{"name":"dutyhours/workTypes","id":"03e1230f-0369-4f95-9419-224d14e54dd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>no input required</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/workTypes","description":"<p>Retrieves all work type options for a work hour entry.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>n/a</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>worktypeID</td>\n        <td>unique identifier of work type</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>worktype_name</td>\n        <td>name of work type</td>\n        <td>string</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["dutyhours","workTypes"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"1f3b9aee-08ab-43b4-a72d-5362050ecc73","name":"dutyhours/workTypes","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"no input required","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/dutyhours/workTypes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Jun 2020 19:28:10 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"worktypeID\": 0,\n        \"worktype_name\": \"Standard Work Period\"\n    },\n    {\n        \"worktypeID\": 1,\n        \"worktype_name\": \"Internal Moonlighting\"\n    },\n    {\n        \"worktypeID\": 2,\n        \"worktype_name\": \"External Moonlighting\"\n    },\n    {\n        \"worktypeID\": 3,\n        \"worktype_name\": \"Home Call (called in)\"\n    },\n    {\n        \"worktypeID\": 4,\n        \"worktype_name\": \"Clinical Work from Home\"\n    }\n]"}],"_postman_id":"03e1230f-0369-4f95-9419-224d14e54dd2"}],"id":"8acf28f7-8e86-4e71-b27f-cd11fb0aa5c3","_postman_id":"8acf28f7-8e86-4e71-b27f-cd11fb0aa5c3","description":""},{"name":"Enrollments","item":[{"name":"enrollments/gradeCreate","id":"9143029b-a55d-4164-af6a-06eb3c22be2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"enrollmentID\":26359, \"official_grade_scale_option_value\":\"Pass\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/enrollments/gradeCreate","description":"<p>Create a new grade record for a student. </p>\n<p><em>Note: the result of this call will be a new grade record. If there exists a previous grade record for the enrollment, those grades will be pulled into the new record except where this call would update/overwrite them. This call does not allow for the deletion of grade records. Use enrollments/gradeOptions call to get a list of all acceptable grade inputs for a given enrollment ID.</em></p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>enrollmentID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td></td>\n        <td>unique identifier for the enrollment record</td>\n    </tr>\n     <tr>\n        <td>schoolID</td>\n        <td>integer</td>\n        <td>No</td>\n        <td></td>\n        <td>required if referencing an enrollment for a school other than the primary (defaults to 1)</td>\n    </tr>\n    <tr>\n        <td>offical_grade_scale_option_value</td>\n        <td>string</td>\n        <td>No (at least one required)</td>\n        <td></td>\n        <td>at least one of the following is required: offical_grade_scale_option_value, numeric_grade, or component_grades</td>\n    </tr>\n    <tr>\n        <td>numeric_grade</td>\n        <td>integer | float</td>\n        <td>No (at least one required)</td>\n        <td></td>\n        <td>at least one of the following is required: offical_grade_scale_option_value, numeric_grade, or component_grades</td>\n    </tr>\n    <tr>\n        <td>component_grades</td>\n        <td>array</td>\n        <td>No (at least one required)</td>\n        <td></td>\n        <td>array of objects that contain an 'id': int, 'score': int|float. At least one of the following is required: offical_grade_scale_option_value, numeric_grade, or component_grades</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>response</td>\n        <td>\"success\" if grade was successfully posted</td>\n        <td>string</td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>gradeID</td>\n        <td>unique identifier of persisted grade record</td>\n        <td>integer</td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["enrollments","gradeCreate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"f6d148e6-3e3a-4bf0-bad2-fe2823a1f7e7","name":"enrollments/gradeCreate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"enrollmentID\":26359, \"official_grade_scale_option_value\":\"Pass\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/enrollments/gradeCreate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 05 May 2020 13:03:02 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"gradeID\": 5490\n}"}],"_postman_id":"9143029b-a55d-4164-af6a-06eb3c22be2d"},{"name":"enrollments/enrollmentDrop","id":"2e101273-89c7-4aa2-ab08-f774ba41a1d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"enrollmentID\":26353}","description":"<p>example only</p>\n","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/enrollments/enrollmentDrop","description":"<p>Drop a student’s enrollment in a course/clerkship in MedHub</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>enrollmentID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td></td>\n        <td>use schedules/enrollment to get enrollmentIDs</td>\n    </tr>\n</table>","urlObject":{"path":["enrollments","enrollmentDrop"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"c99dda40-291e-45f1-8c01-2ece72964ca5","name":"enrollments/enrollmentDrop","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"enrollmentID\":26353}","description":"example only","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/enrollments/enrollmentDrop"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 31 Mar 2020 15:41:27 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true\n}"}],"_postman_id":"2e101273-89c7-4aa2-ab08-f774ba41a1d7"},{"name":"enrollments/enrollmentCreate","id":"4c5536c3-f43f-432d-91a7-e98aae7647c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"userID\":\"98634\",\"courseID\":804,\"start_date\":\"2020-05-01\",\"end_date\":\"2020-05-30\",\"status\":1}","description":"<p>example only</p>\n","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/enrollments/enrollmentCreate","description":"<p>Create a new enrollment record for a student</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.22</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.22</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>periodID</td>\n        <td>integer</td>\n        <td>No*</td>\n        <td>v1.22</td>\n        <td>*required if start_date and end_date are not provided; use enrollmentperiods/periodCreate to create new enrollment periods</td>\n    </tr>\n    <tr>\n        <td>start_date</td>\n        <td>date</td>\n        <td>No*</td>\n        <td>v1.22</td>\n        <td>*required if periodID is not provided; these dates must match an existing date period for the given course; format YYYY-MM-DD; if request is invalid, try entering as \"startDate\"</td>\n    </tr>\n    <tr>\n        <td>end_date</td>\n        <td>date</td>\n        <td>No*</td>\n        <td>v1.22</td>\n        <td>*required if periodID is not provided; these dates must match an existing date period for the given course; format YYYY-MM-DD; if request is invalid, try entering as \"endDate\"</td>\n    </tr>\n    <tr>\n        <td>status</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.22</td>\n        <td>enrolled = \"1\", waitlist = \"3\", <em>note: you cannot create a record with a \"dropped\" status; use enrollments/enrollmentDrop</em></td>\n    </tr>\n    <tr>\n        <td>credit_hours</td>\n        <td>float</td>\n        <td>No</td>\n        <td>v1.22</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["enrollments","enrollmentCreate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"64f71ae7-9b9a-4fe7-a664-7abd17b84c2b","name":"enrollments/enrollmentCreate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"userID\":\"98634\",\"courseID\":804,\"start_date\":\"2020-05-01\",\"end_date\":\"2020-05-30\",\"status\":1}","description":"example only","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/enrollments/enrollmentCreate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 31 Mar 2020 15:21:27 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"enrollment_id\": 26353\n}"}],"_postman_id":"4c5536c3-f43f-432d-91a7-e98aae7647c3"},{"name":"enrollments/gradeOptions","id":"8e573081-b5b6-4d9f-b5f9-ef7c3d2c7b44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"enrollmentID\":26359}","description":"<p>example only</p>\n","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/enrollments/gradeOptions","description":"<p>Get the possible grading options for a given enrollment id</p>\n","urlObject":{"path":["enrollments","gradeOptions"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"7cb67a59-ca35-4c99-85f1-3d5d4f3213eb","name":"enrollments/gradeOptions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"enrollmentID\":26359}","description":"example only","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/enrollments/gradeOptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 05 May 2020 13:11:16 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"components\": null,\n    \"grade_scale_type\": {\n        \"scale_value\": 0,\n        \"scale_name\": \"Scale Options\"\n    },\n    \"grade_scale_options\": [\n        {\n            \"option_name\": \"Fail\",\n            \"option_value\": \"Fail\"\n        },\n        {\n            \"option_name\": \"Pass\",\n            \"option_value\": \"Pass\"\n        },\n        {\n            \"option_name\": \"Incomplete\",\n            \"option_value\": \"INCMP\"\n        },\n        {\n            \"option_name\": \"Withdraw\",\n            \"option_value\": \"W\"\n        }\n    ],\n    \"official_grade_scale_option_value\": null,\n    \"numeric_grade\": 1,\n    \"component_grades\": [\n        {\n            \"id\": 1,\n            \"name\": \"Clinical Performance\",\n            \"score\": \"\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Mid-Rotation Exam\",\n            \"score\": \"1\"\n        },\n        {\n            \"id\": 34,\n            \"name\": \"Write up\",\n            \"score\": \"-1\"\n        }\n    ],\n    \"grade_submitted_date\": \"2020-05-05 09:11:15\"\n}"}],"_postman_id":"8e573081-b5b6-4d9f-b5f9-ef7c3d2c7b44"}],"id":"e125990d-88a4-47c3-a22c-a12d6366a3cb","description":"<p>Calls relating to UME enrollments</p>\n","_postman_id":"e125990d-88a4-47c3-a22c-a12d6366a3cb"},{"name":"Enrollment Periods","item":[{"name":"enrollmentperiods/periodCreate","id":"0e9badcf-f044-49ee-94c1-1fdebfee5070","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"courseID\":756,\"startDate\":\"2020-08-01\",\"endDate\":\"2020-08-30\",\"students_min\":1,\"students_max\":10}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/enrollmentperiods/periodCreate","description":"<p>Create a new enrollment period</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td></td>\n        <td>unique identifier for a course</td>\n    </tr>\n    <tr>\n        <td>startDate</td>\n        <td>date</td>\n        <td>Yes</td>\n        <td></td>\n        <td>start date of period, must match an existing period; format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>endDate</td>\n        <td>date</td>\n        <td>Yes</td>\n        <td></td>\n        <td>end date of period, must match an existing period; format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>students_min</td>\n        <td>integer</td>\n        <td>No</td>\n        <td></td>\n        <td>minimum capacity of course</td>\n    </tr>\n    <tr>\n        <td>students_max</td>\n        <td>integer</td>\n        <td>No</td>\n        <td></td>\n        <td>maximum capacity of course</td>\n    </tr>\n    <tr>\n        <td>otherID</td>\n        <td>integer</td>\n        <td>No</td>\n        <td></td>\n        <td>idenifier for external use</td>\n    </tr>\n</table>","urlObject":{"path":["enrollmentperiods","periodCreate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"ae794c47-a8f2-4ab6-b96c-f9882d600146","name":"enrollmentperiods/periodCreate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"courseID\":756,\"startDate\":\"2020-08-01\",\"endDate\":\"2020-08-30\",\"students_min\":1,\"students_max\":10}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/enrollmentperiods/periodCreate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 31 Mar 2020 16:17:46 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"0e9badcf-f044-49ee-94c1-1fdebfee5070"},{"name":"enrollmentperiods/periodDelete","id":"ae8d7856-f679-434c-baeb-e114b865bdab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"courseID\":756,\"startDate\":\"2020-08-01\",\"endDate\":\"2020-08-30\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/enrollmentperiods/periodDelete","description":"<p>Delete an existing enrollment period</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td></td>\n        <td>unique identifier for a course</td>\n    </tr>\n    <tr>\n        <td>startDate</td>\n        <td>date</td>\n        <td>Yes</td>\n        <td></td>\n        <td>start date of period, must match an existing period; format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>endDate</td>\n        <td>date</td>\n        <td>Yes</td>\n        <td></td>\n        <td>end date of period, must match an existing period; format YYYY-MM-DD</td>\n    </tr>\n</table>","urlObject":{"path":["enrollmentperiods","periodDelete"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"de89d172-0162-4639-8594-e67bf5a6018a","name":"enrollmentperiods/periodDelete","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"courseID\":756,\"startDate\":\"2020-08-01\",\"endDate\":\"2020-08-30\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/enrollmentperiods/periodDelete"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 31 Mar 2020 16:22:39 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"ae8d7856-f679-434c-baeb-e114b865bdab"},{"name":"enrollmentperiods/periods","id":"642a5b52-97cb-4c15-bc44-aa704d29c818","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"courseID\":756,\"startDate\":\"2020-07-01\",\"endDate\":\"2020-09-01\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/enrollmentperiods/periods","description":"<p>List all existing open enrollment periods for a course and date range</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td>courseID</td><td>integer</td><td>Yes</td><td></td><td>unique identifier for a course</td></tr><tr><td>startDate</td><td>date</td><td>Yes</td><td></td><td>start date of period; format YYYY-MM-DD</td></tr><tr><td>endDate</td><td>date</td><td>Yes</td><td></td><td>end date of period; format YYYY-MM-DD</td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td>startDate</td><td>start date of period</td><td>date</td><td></td><td>format YYYY-MM-DD</td></tr><tr><td>endDate</td><td>end date of period</td><td>date</td><td></td><td>format YYYY-MM-DD</td></tr><tr><td>students_min</td><td>minimum capacity of course</td><td>integer</td><td></td><td></td></tr><tr><td>students_max</td><td>maximum capacity of course</td><td>integer</td><td></td><td></td></tr><tr><td>enrolled</td><td>number of enrolled students</td><td>integer</td><td></td><td></td></tr><tr><td>otherID</td><td>idenifier for external use</td><td>integer</td><td></td><td></td></tr></tbody></table>","urlObject":{"path":["enrollmentperiods","periods"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"c8595c8a-fd37-461f-b3ca-c9575613acce","name":"enrollmentperiods/periods","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"courseID\":756,\"startDate\":\"2020-07-01\",\"endDate\":\"2020-09-01\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/enrollmentperiods/periods"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 31 Mar 2020 16:26:43 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"startDate\": \"2020-07-01\",\n        \"endDate\": \"2020-07-30\",\n        \"students_min\": 1,\n        \"students_max\": 10,\n        \"enrolled\": 0,\n        \"otherID\": null\n    },\n    {\n        \"startDate\": \"2020-08-01\",\n        \"endDate\": \"2020-08-31\",\n        \"students_min\": 1,\n        \"students_max\": 10,\n        \"enrolled\": 0,\n        \"otherID\": null\n    }\n]"}],"_postman_id":"642a5b52-97cb-4c15-bc44-aa704d29c818"},{"name":"enrollmentperiods/periodUpdate","id":"17e92423-e182-4207-8666-924335c39f87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"courseID\":756,\"startDate\":\"2020-08-01\",\"endDate\":\"2020-08-31\",\"students_min\":2,\"otherID\":\"12345\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/enrollmentperiods/periodUpdate","description":"<p>Update an existing enrollment period</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td></td>\n        <td>unique identifier for a course</td>\n    </tr>\n    <tr>\n        <td>startDate</td>\n        <td>date</td>\n        <td>Yes</td>\n        <td></td>\n        <td>start date of period, must match an existing period; format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>endDate</td>\n        <td>date</td>\n        <td>Yes</td>\n        <td></td>\n        <td>end date of period, must match an existing period; format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>students_min</td>\n        <td>integer</td>\n        <td>No</td>\n        <td></td>\n        <td>minimum capacity of course</td>\n    </tr>\n    <tr>\n        <td>students_max</td>\n        <td>integer</td>\n        <td>No</td>\n        <td></td>\n        <td>maximum capacity of course</td>\n    </tr>\n    <tr>\n        <td>otherID</td>\n        <td>integer</td>\n        <td>No</td>\n        <td></td>\n        <td>idenifier for external use</td>\n    </tr>\n</table>","urlObject":{"path":["enrollmentperiods","periodUpdate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"f308aa25-80b0-43be-a424-0311441bf13a","name":"enrollmentperiods/periodUpdate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"courseID\":756,\"startDate\":\"2020-08-01\",\"endDate\":\"2020-08-31\",\"students_min\":2,\"otherID\":\"12345\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/enrollmentperiods/periodUpdate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 31 Mar 2020 16:30:25 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"17e92423-e182-4207-8666-924335c39f87"}],"id":"187cbb7f-8695-4f95-8362-76c731bfa990","_postman_id":"187cbb7f-8695-4f95-8362-76c731bfa990","description":""},{"name":"Evaluations","item":[{"name":"evals/responses","id":"31ebb338-5aa1-47a1-94ea-24ac74368d46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"startDate\":\"2020-02-01\",\"endDate\":\"2020-06-01\",\"programs\":[481,890],\"types\":[2,5]}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/responses","description":"<p>Retrieves completed evaluation data filtered by given parameters.  </p>\n<p><em>Note: this call is often subject to error “E05”, which identifies a request that was too large.</em></p>\n<ul><li><div>The maximum result set for this call is 10,000 evaluations.</div></li><li><div>This limit is not imposed on the returned evaluations, but rather the complete evaluation set specified by the provided filters.</div></li><li><div>Whenever possible, it is recommended that you add all of the appropriate filters to limit the result set.</div></li><li><div>Common filters would include “programs”, “endDate”, “forms”, and “types”.</div></li></ul>\n\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>startDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>First completion date to include in response. Format must be \"YYYY-MM-DD\".</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>endDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Last completion date to include in response. Defaults to today's date if not provided. Format must be \"YYYY-MM-DD\".</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>issued_startDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>First issued date to include in response. If not provided, response will not be limited by issue date. Format must be \"YYYY-MM-DD\".</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>issued_endDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Last issued date to include in response. If not provided, response will not be limited by issue date. Format must be \"YYYY-MM-DD\".</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>types</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of ID integers identifying which evaluation types to include in response. Use evals/types to get a list of all available evaluation types. If not provided, defaults to all types.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>programs</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of programID integers identifying the program(s) that delivered the evaluation. Use programs/all to get a list of all available programs. If not provided, defaults to all programs for which the API client has access.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>courses</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.06</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of courseID integers identifying the course(es) that delivered the evaluation. Use courses/all to get a list of all available courses. If not provided, defaults to all courses for which the API client has access.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>evaluators</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of integers and strings identifying the evaluators to include in the response. If a value starts with a 'o', the following number will identify an outside evaluator.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>evaluatees</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of integers and strings identifying the target users to include in the response. If a value starts with a 'o', the following number will identify an outside evaluator.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>forms</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of evaluationID integers identifying the evaluation forms to include in the response. Use evals/forms to get a list of active evaluations for a given program or course. If not provided, defaults to all forms.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>globalservices</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of globalserviceID integers identifying the service groups to include in the response. Use schedules/services to get a list of all service groups for a given program. If not provided this filter will not be applied.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>clinicnames</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of clinicnameID integers identifying the clinics to include in the response. Use schedules/clinics to get a list of all clinics for a given program or course.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>responses</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.07</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of responseID integers identifying one or more specific evaluaton responses (i.e. completed evaluations) to include in the results.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>responseID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier for evaluation response (i.e. a completed evaluation)</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>evaluationID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier for evaluatuion form</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use evals/forms to get a list of active evaluation forms and high level form data for a given program or course.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>eval_type</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier for evaluation type</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use evals/types to get a list of all evaluation type identifiers and names.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>evaluator_userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier for in-house evaluator (i.e. userID of in-house evaluator)</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use users/userLookup to get additional information about a user. A zero (\"0\") is returned if not applicable.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>evaluator_outsideID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifer for outside evaluator</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use users/outsideLookup to get more information about a given outside evaluator (outsideID). A zero (\"0\") is returned if not applicable.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>evaluator_name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>full name of evaluator</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.08</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>evaluatee_userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier of in-house target user (i.e. userID of evaluation target)</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use user/userLookup for additional information about target user. A zero (\"0\") is returned if not applicable.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>evaluatee_outsideID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier for outside target (i.e. ID of outside evaluator account that is the target of the evaluation)<br /></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use users/outsideLookup to get more information about a given outside evaluator (outsideID). A zero (\"0\") is returned if not applicable.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>evaluatee_name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>full name of evaluatee</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.08</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>response_title</div><div><div><div><div></div></div></div><div></div></div></td><td><div>full title of response</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>eval_title</div><div><div><div><div></div></div></div><div></div></div></td><td><div>title of evaluation form</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.08</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>response_notes</div><div><div><div><div></div></div></div><div></div></div></td><td><div>delivery notes</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Notes are added at time of delivery</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>issue_date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date the evaluation was issued</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>completion_date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date the evaluation was completed</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>programID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier for the program that delivered the evaluation</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use programs/all to get a list of all programs.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>courseID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier for the course that delivered the evaluation</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.06</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use courses/all to get a list of all courses</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>globalserviceID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier for service group</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use schedules/services to get a list of all service groups for a given program or course. A zero (\"0\") is returned if not applicable.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>globalservice_name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>full name of service group</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.16</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>clinicnameID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier of clinic</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use schedules/clinics for additional information. A zero (\"0\") is returned if not applicable.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>clinicname</div><div><div><div><div></div></div></div><div></div></div></td><td><div>full name of clinic</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.16</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>conferenceID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier for a conference</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use conferences/schedule for additional information. A zero (\"0\") is returned if not applicable.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>procedureID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier for a procedure log</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use procedures/logs to get additional information in a list of procedures logged by a given user. A zero (\"0\") is returned if not applicable</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>rotation_start_date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>start date of the rotation for which the evaluation was delivered</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>rotation_end_date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>end date of the rotation for which the evaluation was delivered</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>delivery_option</div><div><div><div><div></div></div></div><div></div></div></td><td><div>chosen special delivery option</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Values: 0 = none, 1 = signature required, 2 = anonymous</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>program_notes</div><div><div><div><div></div></div></div><div></div></div></td><td><div>review notes provided by program</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>alert_flag</div><div><div><div><div></div></div></div><div></div></div></td><td><div>low score alert flag</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Values: 0 = no alert, 1 = alert</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>answers</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array of answers given in the evaluation response</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.01</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>The following key-value pairs will be included:</p><ul><li><p>questionID</p><ul><li><div><b>Description:</b> unique identifier for evaluation question</div></li><li><div><b>Data Type:</b> integer</div></li><li><div><b>Notes:</b> Use evals/questions to get a list of all questions on a given evaluation form.</div></li></ul></li><li><p>answer_optionID</p><ul><li><div><b>Description:</b> unique identifier of selected option (i.e. scale value) for evaulation question</div></li><li><div><b>Data Type:</b> integer</div></li><li><div><b>Notes:</b> Use evals/questions to get all available options for each question on a given evaluation form.</div></li></ul></li><li><div>answer_text</div><ul><li><div><b>Description:</b> response provided for text-based questions (e.g. comment questions)</div></li><li><div><b>Data Type:</b> string</div></li><li><div><b>Notes:</b> Also includes comments that are required for defined values on scale-based questions.</div></li></ul></li></ul><p></p></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>eh_responses.flag_released</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Used to indicate when an evaluation response has been released.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["evals","responses"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"e032804a-2779-42a7-8ad3-14d5188acfc1","name":"evals/responses","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"startDate\":\"2020-02-01\",\"endDate\":\"2020-06-01\",\"programs\":[481,890],\"types\":[2,5]}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/responses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 05 Jun 2020 16:35:58 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"responseID\": \"614204\",\n        \"evaluationID\": \"1049\",\n        \"eval_type\": \"5\",\n        \"evaluator_userID\": \"77116\",\n        \"evaluator_outsideID\": \"0\",\n        \"evaluator_name\": \"Armstrong, Mandi\",\n        \"evaluatee_userID\": \"97927\",\n        \"evaluatee_outsideID\": \"0\",\n        \"evaluatee_name\": \"Archuleta, Alleen\",\n        \"response_title\": \"Dr. Archuleta, Alleen - Yale-Waterbury Concern Card\",\n        \"response_status\": \"3\",\n        \"response_notes\": \"\",\n        \"form_title\": \"Concern Card Becky\",\n        \"introduction\": \"                    \",\n        \"issue_date\": \"2016-08-26\",\n        \"completion_date\": \"2020-02-13\",\n        \"programID\": \"481\",\n        \"courseID\": \"0\",\n        \"globalserviceID\": \"0\",\n        \"globalservice_name\": null,\n        \"clinicnameID\": \"0\",\n        \"clinicname\": null,\n        \"conferenceID\": \"0\",\n        \"procedureID\": \"0\",\n        \"enrollmentID\": \"0\",\n        \"rotation_start_date\": \"\",\n        \"rotation_end_date\": \"\",\n        \"delivery_option\": \"0\",\n        \"program_notes\": \"\",\n        \"alert_flag\": \"0\",\n        \"answers\": [\n            {\n                \"questionID\": \"17927\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"17928\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"17929\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"17930\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"17931\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"\"\n            }\n        ]\n    },\n    {\n        \"responseID\": \"614279\",\n        \"evaluationID\": \"349\",\n        \"eval_type\": \"5\",\n        \"evaluator_userID\": \"77116\",\n        \"evaluator_outsideID\": \"0\",\n        \"evaluator_name\": \"Armstrong, Mandi\",\n        \"evaluatee_userID\": \"96103\",\n        \"evaluatee_outsideID\": null,\n        \"evaluatee_name\": \"Aviles, Magdalena\",\n        \"response_title\": \"Dr. Aviles, Magdalena - Mini-CEX\",\n        \"response_status\": \"3\",\n        \"response_notes\": \"\",\n        \"form_title\": \"Mini-CEX (Testing)\",\n        \"introduction\": \"\",\n        \"issue_date\": \"2016-09-23\",\n        \"completion_date\": \"2020-02-13\",\n        \"programID\": \"481\",\n        \"courseID\": \"0\",\n        \"globalserviceID\": \"0\",\n        \"globalservice_name\": null,\n        \"clinicnameID\": \"0\",\n        \"clinicname\": null,\n        \"conferenceID\": null,\n        \"procedureID\": null,\n        \"enrollmentID\": \"0\",\n        \"rotation_start_date\": \"\",\n        \"rotation_end_date\": \"\",\n        \"delivery_option\": \"0\",\n        \"program_notes\": \"\",\n        \"alert_flag\": \"0\",\n        \"answers\": [\n            {\n                \"questionID\": \"5447\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"Aaaaa\"\n            },\n            {\n                \"questionID\": \"5449\",\n                \"answer_optionID\": \"646\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"5450\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"5452\",\n                \"answer_optionID\": \"650\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"5454\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"12\"\n            },\n            {\n                \"questionID\": \"5455\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"No\"\n            },\n            {\n                \"questionID\": \"5457\",\n                \"answer_optionID\": \"652\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"5459\",\n                \"answer_optionID\": [\n                    \"655\"\n                ],\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"5461\",\n                \"answer_optionID\": \"3\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"5463\",\n                \"answer_optionID\": \"3\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"5465\",\n                \"answer_optionID\": \"3\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"5467\",\n                \"answer_optionID\": \"3\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"5469\",\n                \"answer_optionID\": \"3\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"5471\",\n                \"answer_optionID\": \"3\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"5473\",\n                \"answer_optionID\": \"3\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"5475\",\n                \"answer_optionID\": \"662\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"5477\",\n                \"answer_optionID\": \"662\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"5479\",\n                \"answer_optionID\": \"131\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"5481\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"\"\n            }\n        ]\n    },\n    {\n        \"responseID\": \"644054\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"5\",\n        \"evaluator_userID\": \"116772\",\n        \"evaluator_outsideID\": \"0\",\n        \"evaluator_name\": \"Armstrong, Peter\",\n        \"evaluatee_userID\": \"97927\",\n        \"evaluatee_outsideID\": \"0\",\n        \"evaluatee_name\": \"Archuleta, Alleen\",\n        \"response_title\": \"Dr. Archuleta, Alleen - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"response_status\": \"3\",\n        \"response_notes\": \"\",\n        \"form_title\": \"'YOU ARE AWESOME!!'  (Low Score Comment)\",\n        \"introduction\": \"Use this evaluation to send a thank you to a resident or attending who has done something that has helped you, made you happy, or was just awesome.\",\n        \"issue_date\": \"2019-05-13\",\n        \"completion_date\": \"2020-03-25\",\n        \"programID\": \"481\",\n        \"courseID\": \"0\",\n        \"globalserviceID\": \"0\",\n        \"globalservice_name\": null,\n        \"clinicnameID\": \"0\",\n        \"clinicname\": null,\n        \"conferenceID\": \"0\",\n        \"procedureID\": \"0\",\n        \"enrollmentID\": \"0\",\n        \"rotation_start_date\": \"\",\n        \"rotation_end_date\": \"\",\n        \"delivery_option\": \"1\",\n        \"program_notes\": \"\",\n        \"alert_flag\": \"0\",\n        \"answers\": [\n            {\n                \"questionID\": \"77239\",\n                \"answer_optionID\": \"3311\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"77240\",\n                \"answer_optionID\": \"3313\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"77241\",\n                \"answer_optionID\": \"3313\",\n                \"answer_text\": \"\"\n            }\n        ]\n    },\n    {\n        \"responseID\": \"654007\",\n        \"evaluationID\": \"4754\",\n        \"eval_type\": \"2\",\n        \"evaluator_userID\": \"97927\",\n        \"evaluator_outsideID\": \"0\",\n        \"evaluator_name\": \"Archuleta, Alleen\",\n        \"evaluatee_userID\": \"77116\",\n        \"evaluatee_outsideID\": \"0\",\n        \"evaluatee_name\": \"Armstrong, Mandi\",\n        \"response_title\": \"Armstrong, Mandi - Absence Request Form\",\n        \"response_status\": \"3\",\n        \"response_notes\": \"\",\n        \"form_title\": \"Absence Request Form\",\n        \"introduction\": \"\",\n        \"issue_date\": \"2020-02-04\",\n        \"completion_date\": \"2020-02-04\",\n        \"programID\": \"481\",\n        \"courseID\": \"0\",\n        \"globalserviceID\": \"0\",\n        \"globalservice_name\": null,\n        \"clinicnameID\": \"0\",\n        \"clinicname\": null,\n        \"conferenceID\": \"0\",\n        \"procedureID\": \"0\",\n        \"enrollmentID\": \"0\",\n        \"rotation_start_date\": \"\",\n        \"rotation_end_date\": \"\",\n        \"delivery_option\": \"0\",\n        \"program_notes\": \"\",\n        \"alert_flag\": \"0\",\n        \"answers\": [\n            {\n                \"questionID\": \"80907\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"7/1/19\"\n            },\n            {\n                \"questionID\": \"81005\",\n                \"answer_optionID\": \"727\",\n                \"answer_text\": \"\"\n            }\n        ]\n    },\n    {\n        \"responseID\": \"654008\",\n        \"evaluationID\": \"4084\",\n        \"eval_type\": \"2\",\n        \"evaluator_userID\": \"0\",\n        \"evaluator_outsideID\": \"0\",\n        \"evaluator_name\": \"\",\n        \"evaluatee_userID\": \"77116\",\n        \"evaluatee_outsideID\": \"0\",\n        \"evaluatee_name\": \"Armstrong, Mandi\",\n        \"response_title\": \"Armstrong, Mandi - BB - Checkbox Test 2/20\",\n        \"response_status\": \"3\",\n        \"response_notes\": \"\",\n        \"form_title\": \"BB - Checkbox Test 2/20\",\n        \"introduction\": \"\",\n        \"issue_date\": \"2020-02-04\",\n        \"completion_date\": \"2020-02-04\",\n        \"programID\": \"481\",\n        \"courseID\": \"0\",\n        \"globalserviceID\": \"0\",\n        \"globalservice_name\": null,\n        \"clinicnameID\": \"0\",\n        \"clinicname\": null,\n        \"conferenceID\": \"0\",\n        \"procedureID\": \"0\",\n        \"enrollmentID\": \"0\",\n        \"rotation_start_date\": \"\",\n        \"rotation_end_date\": \"\",\n        \"delivery_option\": \"2\",\n        \"program_notes\": \"\",\n        \"alert_flag\": \"0\",\n        \"answers\": [\n            {\n                \"questionID\": \"72042\",\n                \"answer_optionID\": [\n                    \"1254\",\n                    \"1262\"\n                ],\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"72043\",\n                \"answer_optionID\": \"1693\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"72044\",\n                \"answer_optionID\": [\n                    \"973\",\n                    \"975\"\n                ],\n                \"answer_text\": \"\"\n            }\n        ]\n    },\n    {\n        \"responseID\": \"654010\",\n        \"evaluationID\": \"3976\",\n        \"eval_type\": \"2\",\n        \"evaluator_userID\": \"0\",\n        \"evaluator_outsideID\": \"0\",\n        \"evaluator_name\": \"\",\n        \"evaluatee_userID\": \"116376\",\n        \"evaluatee_outsideID\": \"0\",\n        \"evaluatee_name\": \"Flowers, Lee\",\n        \"response_title\": \"Dr. Flowers, Lee - BB - Test 1/10\",\n        \"response_status\": \"3\",\n        \"response_notes\": \"\",\n        \"form_title\": \"BB - Test 1/10\",\n        \"introduction\": \"\",\n        \"issue_date\": \"2020-02-05\",\n        \"completion_date\": \"2020-02-05\",\n        \"programID\": \"481\",\n        \"courseID\": \"0\",\n        \"globalserviceID\": \"0\",\n        \"globalservice_name\": null,\n        \"clinicnameID\": \"0\",\n        \"clinicname\": null,\n        \"conferenceID\": \"0\",\n        \"procedureID\": \"0\",\n        \"enrollmentID\": \"0\",\n        \"rotation_start_date\": \"\",\n        \"rotation_end_date\": \"\",\n        \"delivery_option\": \"2\",\n        \"program_notes\": \"\",\n        \"alert_flag\": \"0\",\n        \"answers\": [\n            {\n                \"questionID\": \"71114\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"Testing yo\"\n            },\n            {\n                \"questionID\": \"71115\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"Super unrequired yo\"\n            }\n        ]\n    },\n    {\n        \"responseID\": \"654011\",\n        \"evaluationID\": \"4488\",\n        \"eval_type\": \"5\",\n        \"evaluator_userID\": \"116376\",\n        \"evaluator_outsideID\": \"0\",\n        \"evaluator_name\": \"Flowers, Lee\",\n        \"evaluatee_userID\": \"117463\",\n        \"evaluatee_outsideID\": \"0\",\n        \"evaluatee_name\": \"Nelson, Heidi\",\n        \"response_title\": \"Dr. Nelson, Heidi - Faculty of Resident\",\n        \"response_status\": \"3\",\n        \"response_notes\": \"\",\n        \"form_title\": \"Faculty of Resident\",\n        \"introduction\": \"\",\n        \"issue_date\": \"2020-02-05\",\n        \"completion_date\": \"2020-02-05\",\n        \"programID\": \"481\",\n        \"courseID\": \"0\",\n        \"globalserviceID\": \"0\",\n        \"globalservice_name\": null,\n        \"clinicnameID\": \"0\",\n        \"clinicname\": null,\n        \"conferenceID\": \"0\",\n        \"procedureID\": \"0\",\n        \"enrollmentID\": \"0\",\n        \"rotation_start_date\": \"\",\n        \"rotation_end_date\": \"\",\n        \"delivery_option\": \"0\",\n        \"program_notes\": \"\",\n        \"alert_flag\": \"0\",\n        \"answers\": [\n            {\n                \"questionID\": \"76360\",\n                \"answer_optionID\": \"3641\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"76361\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"\"\n            }\n        ]\n    },\n    {\n        \"responseID\": \"654016\",\n        \"evaluationID\": \"3976\",\n        \"eval_type\": \"2\",\n        \"evaluator_userID\": \"119629\",\n        \"evaluator_outsideID\": \"0\",\n        \"evaluator_name\": \"Lovegood, Luna\",\n        \"evaluatee_userID\": \"116376\",\n        \"evaluatee_outsideID\": \"0\",\n        \"evaluatee_name\": \"Flowers, Lee\",\n        \"response_title\": \"Dr. Flowers, Lee - BB - Test 1/10\",\n        \"response_status\": \"3\",\n        \"response_notes\": \"\",\n        \"form_title\": \"BB - Test 1/10\",\n        \"introduction\": \"\",\n        \"issue_date\": \"2020-02-05\",\n        \"completion_date\": \"2020-02-05\",\n        \"programID\": \"481\",\n        \"courseID\": \"0\",\n        \"globalserviceID\": \"0\",\n        \"globalservice_name\": null,\n        \"clinicnameID\": \"0\",\n        \"clinicname\": null,\n        \"conferenceID\": \"0\",\n        \"procedureID\": \"0\",\n        \"enrollmentID\": \"0\",\n        \"rotation_start_date\": \"\",\n        \"rotation_end_date\": \"\",\n        \"delivery_option\": \"0\",\n        \"program_notes\": \"\",\n        \"alert_flag\": \"0\",\n        \"answers\": [\n            {\n                \"questionID\": \"71114\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"h i\"\n            },\n            {\n                \"questionID\": \"71115\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"hello\"\n            }\n        ]\n    },\n    {\n        \"responseID\": \"654017\",\n        \"evaluationID\": \"3574\",\n        \"eval_type\": \"5\",\n        \"evaluator_userID\": \"116376\",\n        \"evaluator_outsideID\": \"0\",\n        \"evaluator_name\": \"Flowers, Lee\",\n        \"evaluatee_userID\": \"119629\",\n        \"evaluatee_outsideID\": \"0\",\n        \"evaluatee_name\": \"Lovegood, Luna\",\n        \"response_title\": \"Dr. Lovegood, Luna - Evaluation of Resident\",\n        \"response_status\": \"3\",\n        \"response_notes\": \"\",\n        \"form_title\": \"Evaluation of Resident\",\n        \"introduction\": \"Please complete this form and let Jennifer know if you have question.\",\n        \"issue_date\": \"2020-02-05\",\n        \"completion_date\": \"2020-02-05\",\n        \"programID\": \"481\",\n        \"courseID\": \"0\",\n        \"globalserviceID\": \"0\",\n        \"globalservice_name\": null,\n        \"clinicnameID\": \"0\",\n        \"clinicname\": null,\n        \"conferenceID\": \"0\",\n        \"procedureID\": \"0\",\n        \"enrollmentID\": \"0\",\n        \"rotation_start_date\": \"\",\n        \"rotation_end_date\": \"\",\n        \"delivery_option\": \"0\",\n        \"program_notes\": \"Testing to view\",\n        \"alert_flag\": \"0\",\n        \"answers\": [\n            {\n                \"questionID\": \"67755\",\n                \"answer_optionID\": \"310\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"67757\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"67756\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"\"\n            }\n        ]\n    },\n    {\n        \"responseID\": \"654070\",\n        \"evaluationID\": \"4737\",\n        \"eval_type\": \"5\",\n        \"evaluator_userID\": \"76725\",\n        \"evaluator_outsideID\": \"0\",\n        \"evaluator_name\": \"Akers, Merrill\",\n        \"evaluatee_userID\": \"97927\",\n        \"evaluatee_outsideID\": \"0\",\n        \"evaluatee_name\": \"Archuleta, Alleen\",\n        \"response_title\": \"Dr. Archuleta, Alleen - Faculty of Resident\",\n        \"response_status\": \"3\",\n        \"response_notes\": \"\",\n        \"form_title\": \"Faculty of Resident\",\n        \"introduction\": \"\",\n        \"issue_date\": \"2020-02-24\",\n        \"completion_date\": \"2020-02-24\",\n        \"programID\": \"481\",\n        \"courseID\": \"0\",\n        \"globalserviceID\": \"0\",\n        \"globalservice_name\": null,\n        \"clinicnameID\": \"0\",\n        \"clinicname\": null,\n        \"conferenceID\": \"0\",\n        \"procedureID\": \"0\",\n        \"enrollmentID\": \"0\",\n        \"rotation_start_date\": \"\",\n        \"rotation_end_date\": \"\",\n        \"delivery_option\": \"0\",\n        \"program_notes\": \"\",\n        \"alert_flag\": \"0\",\n        \"answers\": [\n            {\n                \"questionID\": \"80683\",\n                \"answer_optionID\": \"1643\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"80684\",\n                \"answer_optionID\": \"1644\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"80685\",\n                \"answer_optionID\": \"1644\",\n                \"answer_text\": \"\"\n            },\n            {\n                \"questionID\": \"80686\",\n                \"answer_optionID\": \"1644\",\n                \"answer_text\": \"\"\n            }\n        ]\n    },\n    {\n        \"responseID\": \"654083\",\n        \"evaluationID\": \"3754\",\n        \"eval_type\": \"2\",\n        \"evaluator_userID\": \"0\",\n        \"evaluator_outsideID\": \"0\",\n        \"evaluator_name\": \"\",\n        \"evaluatee_userID\": \"77116\",\n        \"evaluatee_outsideID\": \"0\",\n        \"evaluatee_name\": \"Armstrong, Mandi\",\n        \"response_title\": \"Armstrong, Mandi - Test\",\n        \"response_status\": \"3\",\n        \"response_notes\": \"\",\n        \"form_title\": \"Test\",\n        \"introduction\": \"\",\n        \"issue_date\": \"2020-03-06\",\n        \"completion_date\": \"2020-03-06\",\n        \"programID\": \"481\",\n        \"courseID\": \"0\",\n        \"globalserviceID\": \"0\",\n        \"globalservice_name\": null,\n        \"clinicnameID\": \"0\",\n        \"clinicname\": null,\n        \"conferenceID\": \"0\",\n        \"procedureID\": \"0\",\n        \"enrollmentID\": \"0\",\n        \"rotation_start_date\": \"\",\n        \"rotation_end_date\": \"\",\n        \"delivery_option\": \"2\",\n        \"program_notes\": \"\",\n        \"alert_flag\": \"0\",\n        \"answers\": [\n            {\n                \"questionID\": \"75000\",\n                \"answer_optionID\": \"1647\",\n                \"answer_text\": \"\"\n            }\n        ]\n    },\n    {\n        \"responseID\": \"654090\",\n        \"evaluationID\": \"4754\",\n        \"eval_type\": \"2\",\n        \"evaluator_userID\": \"97927\",\n        \"evaluator_outsideID\": \"0\",\n        \"evaluator_name\": \"Archuleta, Alleen\",\n        \"evaluatee_userID\": \"98572\",\n        \"evaluatee_outsideID\": \"0\",\n        \"evaluatee_name\": \"Action, Rodney\",\n        \"response_title\": \"Dr. Action, Rodney - Absence Request Form\",\n        \"response_status\": \"3\",\n        \"response_notes\": \"\",\n        \"form_title\": \"Absence Request Form\",\n        \"introduction\": \"\",\n        \"issue_date\": \"2020-03-12\",\n        \"completion_date\": \"2020-03-12\",\n        \"programID\": \"481\",\n        \"courseID\": \"0\",\n        \"globalserviceID\": \"0\",\n        \"globalservice_name\": null,\n        \"clinicnameID\": \"0\",\n        \"clinicname\": null,\n        \"conferenceID\": \"0\",\n        \"procedureID\": \"0\",\n        \"enrollmentID\": \"0\",\n        \"rotation_start_date\": \"\",\n        \"rotation_end_date\": \"\",\n        \"delivery_option\": \"0\",\n        \"program_notes\": \"\",\n        \"alert_flag\": \"1\",\n        \"answers\": [\n            {\n                \"questionID\": \"80907\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"Now\"\n            },\n            {\n                \"questionID\": \"81005\",\n                \"answer_optionID\": \"724\",\n                \"answer_text\": \"\"\n            }\n        ]\n    },\n    {\n        \"responseID\": \"659160\",\n        \"evaluationID\": \"3468\",\n        \"eval_type\": \"5\",\n        \"evaluator_userID\": \"77116\",\n        \"evaluator_outsideID\": \"0\",\n        \"evaluator_name\": \"Armstrong, Mandi\",\n        \"evaluatee_userID\": \"97927\",\n        \"evaluatee_outsideID\": null,\n        \"evaluatee_name\": \"Archuleta, Alleen\",\n        \"response_title\": \"Dr. Archuleta, Alleen - Test Public Evaluation\",\n        \"response_status\": \"3\",\n        \"response_notes\": \"\",\n        \"form_title\": \"Test Public Evaluation\",\n        \"introduction\": \"\",\n        \"issue_date\": \"2020-04-29\",\n        \"completion_date\": \"2020-04-29\",\n        \"programID\": \"481\",\n        \"courseID\": \"0\",\n        \"globalserviceID\": \"0\",\n        \"globalservice_name\": null,\n        \"clinicnameID\": \"0\",\n        \"clinicname\": null,\n        \"conferenceID\": null,\n        \"procedureID\": null,\n        \"enrollmentID\": \"0\",\n        \"rotation_start_date\": \"\",\n        \"rotation_end_date\": \"\",\n        \"delivery_option\": \"0\",\n        \"program_notes\": \"\",\n        \"alert_flag\": \"0\",\n        \"answers\": [\n            {\n                \"questionID\": \"66890\",\n                \"answer_optionID\": null,\n                \"answer_text\": \"ttt\"\n            }\n        ]\n    },\n    {\n        \"responseID\": \"659168\",\n        \"evaluationID\": \"5308\",\n        \"eval_type\": \"5\",\n        \"evaluator_userID\": \"117402\",\n        \"evaluator_outsideID\": \"0\",\n        \"evaluator_name\": \"Bicky, Ben\",\n        \"evaluatee_userID\": \"119439\",\n        \"evaluatee_outsideID\": \"0\",\n        \"evaluatee_name\": \"Bell, Tinker\",\n        \"response_title\": \"Dr. Bell, Tinker - 2020 Progression Form\",\n        \"response_status\": \"3\",\n        \"response_notes\": \"\",\n        \"form_title\": \"2020 Progression Form\",\n        \"introduction\": \"\",\n        \"issue_date\": \"2020-05-13\",\n        \"completion_date\": \"2020-05-13\",\n        \"programID\": \"481\",\n        \"courseID\": \"0\",\n        \"globalserviceID\": \"0\",\n        \"globalservice_name\": null,\n        \"clinicnameID\": \"0\",\n        \"clinicname\": null,\n        \"conferenceID\": \"0\",\n        \"procedureID\": \"0\",\n        \"enrollmentID\": \"0\",\n        \"rotation_start_date\": \"\",\n        \"rotation_end_date\": \"\",\n        \"delivery_option\": \"0\",\n        \"program_notes\": \"\",\n        \"alert_flag\": \"0\",\n        \"answers\": [\n            {\n                \"questionID\": \"94957\",\n                \"answer_optionID\": \"712\",\n                \"answer_text\": \"\"\n            }\n        ]\n    }\n]"}],"_postman_id":"31ebb338-5aa1-47a1-94ea-24ac74368d46"},{"name":"evals/questions","id":"371cbbb7-b500-45d4-bd8d-95d298da1ec1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"evaluationID\":1049,\"headers\":\"TRUE\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/questions","description":"<p>Retrieves the evaluation questions and question options for a given evaluation form.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>evaluationID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.00</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use evals/forms to get a list of all evaluation forms available to a given program.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>headers</div><div><div><div><div></div></div></div><div></div></div></td><td><div>boolean</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.11</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Tell wether or not to include question header data in results. Default = FALSE.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>type</div><div><div><div><div></div></div></div><div></div></div></td><td><div>item type</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.11</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Values: \"question\" or \"header\"</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>header_text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>header text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.13</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Only set for \"header\" item type</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>header_intro</div><div><div><div><div></div></div></div><div></div></div></td><td><div>the introductory text of a header</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.13</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Only set for \"header\" item type</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>questionID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier for a question</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.00</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>question_order</div><div><div><div><div></div></div></div><div></div></div></td><td><div>identifies the order of the question on the evaluation form</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.00</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>question_number</div><div><div><div><div></div></div></div><div></div></div></td><td><div>question number</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.00</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Optionally defined by user</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>question_text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>question text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.00</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>question_required</div><div><div><div><div></div></div></div><div></div></div></td><td><div>flag for if question is required to be completed</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.00</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Values: 1 = required, 0 = optional</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>question_type</div><div><div><div><div></div></div></div><div></div></div></td><td><div>type of question</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.00</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Values: Scale, Pull-down Menu, Checkboxes, Short Text, Long Text, Comment</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>optionsetID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier for a scale</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.00</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>optionset_title</div><div><div><div><div></div></div></div><div></div></div></td><td><div>title of scale</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.00</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>options</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array of options in specified scale</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.00</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>Options are defined for questions of types: Scale, Pull-down Menu, Checkboxes. Each option will include the following key-value pairs:</p><ul><li><p>optionID</p><ul><li><div><b>Description:</b> unique identifier for option</div></li><li><div><b>Data Type:</b> integer</div></li><li><div><b>Notes:</b> none</div></li></ul></li><li><p>option_order</p><ul><li><div><b>Description:</b> position of option in scale</div></li><li><div><b>Data Type:</b> integer</div></li><li><div><b>Notes:</b> none</div></li></ul></li><li><p>option_title</p><ul><li><div><b>Description:</b> option text</div></li><li><div><b>Data Type:</b> string</div></li><li><div><b>Notes:</b> none</div></li></ul></li><li><div>option_value</div><ul><li><div><b>Description:</b> value assigned to option</div></li><li><div><b>Date Type:</b> float</div></li><li><div><b>Notes:</b> Value of \"0\" specifies \"N/A\".</div></li></ul></li><li><p>milestones_value</p><ul><li><div><b>Description:</b> milestone value assigned to option</div></li><li><div><b>Data Type:</b> float</div></li><li><div><b>Version: v1.00</b></div></li><li><div><b>Notes:</b> Possible values of 0.5 - 5.0</div></li></ul></li><li><p>descriptor</p><ul><li><div><b>Description:</b> scale descriptor (hint)</div></li><li><div><b>Data Type:</b> string</div></li><li><div><b>Version:</b> v1.03</div></li><li><div><b>Notes:</b> Text that is generally displayed below the scale option to provide the evaluator wiht a hint</div></li></ul></li><li><p>require_comment</p><ul><li><div><b>Description:</b> tells whether a comment is required if the option is selected</div></li><li><div><b>Data Type:</b> boolean</div></li><li><div><b>Version:</b> v1.12</div></li><li><div><b>Notes:</b> TRUE if comment is required</div></li></ul></li></ul></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>headers</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array of header text that is dispalyed above options for scale-based questions</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.03</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>Used for scales only, and will not be included if headers are not used. If headers are used, will return the following key-value pairs:</p><ul><li><p>header_value</p><ul><li><div><b>Description:</b> header text</div></li><li><div><b>Data Type:</b> string</div></li><li><div><b>Version:</b> v1.03</div></li><li><div><b>Notes:</b> none</div></li></ul></li><li><p>column_start</p><ul><li><div><b>Description:</b> starting position of header</div></li><li><div><b>Data Type:</b> float</div></li><li><div><b>Version:</b> v1.03</div></li><li><div><b>Notes:</b> Far left-hand column woudl have a value of 1.0; half (0.5) starting positions are possible.</div></li></ul></li><li><p>column_span</p><ul><li><div><b>Description:</b> number of options the header spans</div></li><li><div><b>Data Type:</b> float</div></li><li><div><b>Version:</b> v1.03</div></li><li><div><b>Notes:</b> In incremements of 0.5.</div></li></ul></li></ul></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>skip_enabled</div><div><div><div><div></div></div></div><div></div></div></td><td><div>whether or not skip logic is enabled</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.19</div><div><div><div><div></div></div></div><div></div></div></td><td><div>If enabled, values include: \"hidden\" or \"visible\" (referring to wether or not the question starts out hidden or visible).</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>skip_parent</div><div><div><div><div></div></div></div><div></div></div></td><td><div>questionID for the parent question of a skip logic configuration</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.19</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Refers to the question whose answer(s) are the trigger to show/hide this question.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>skip_parent_options</div><div><div><div><div></div></div></div><div></div></div></td><td><div>answer options that act as the show/hide trigger</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.19</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This is a zero indexed array of optionIDs on the parent question whose answer will trigger the show/hide logic on the enabled question.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["evals","questions"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"718a1503-3fcd-43e7-a8ce-6a89ac421b19","name":"evals/questions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"evaluationID\":1049,\"headers\":\"TRUE\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/questions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 05 Jun 2020 16:46:34 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"questionID\": \"17926\",\n        \"question_order\": 1,\n        \"question_number\": \"\",\n        \"question_text\": \"\",\n        \"question_required\": \"N\",\n        \"skip_enabled\": null,\n        \"skip_parent\": null,\n        \"skip_parent_options\": null,\n        \"type\": \"header\",\n        \"header_text\": \"Reason for Concern\",\n        \"header_intro\": \"\"\n    },\n    {\n        \"questionID\": \"17927\",\n        \"question_order\": 2,\n        \"question_number\": \"\",\n        \"question_text\": \"My concerns about the performance and/or professional behavior of this physician are based on:\",\n        \"question_required\": \"N\",\n        \"skip_enabled\": null,\n        \"skip_parent\": null,\n        \"skip_parent_options\": null,\n        \"type\": \"question\",\n        \"question_type\": \"Short Text\"\n    },\n    {\n        \"questionID\": \"17928\",\n        \"question_order\": 3,\n        \"question_number\": \"\",\n        \"question_text\": \"Concern Comments:\",\n        \"question_required\": \"N\",\n        \"skip_enabled\": null,\n        \"skip_parent\": null,\n        \"skip_parent_options\": null,\n        \"type\": \"question\",\n        \"question_type\": \"Long Text\"\n    },\n    {\n        \"questionID\": \"17929\",\n        \"question_order\": 4,\n        \"question_number\": \"\",\n        \"question_text\": \"I have discussed my concerns with the physician.\",\n        \"question_required\": \"N\",\n        \"skip_enabled\": null,\n        \"skip_parent\": null,\n        \"skip_parent_options\": null,\n        \"type\": \"question\",\n        \"question_type\": \"Scale\",\n        \"optionsetID\": \"135\",\n        \"optionset_title\": \"Scale: Yes/No\",\n        \"options\": [\n            {\n                \"optionID\": \"713\",\n                \"option_order\": \"1\",\n                \"option_title\": \"No\",\n                \"option_value\": \"1\",\n                \"milestones_value\": \"0.0\",\n                \"descriptor\": \"Test\",\n                \"require_comment\": false\n            },\n            {\n                \"optionID\": \"712\",\n                \"option_order\": \"2\",\n                \"option_title\": \"Yes\",\n                \"option_value\": \"2\",\n                \"milestones_value\": \"0.0\",\n                \"descriptor\": \"Test\",\n                \"require_comment\": false\n            }\n        ]\n    },\n    {\n        \"questionID\": \"17930\",\n        \"question_order\": 5,\n        \"question_number\": \"\",\n        \"question_text\": \"I feel uncomfortable discussing my concerns with the physician.\",\n        \"question_required\": \"N\",\n        \"skip_enabled\": null,\n        \"skip_parent\": null,\n        \"skip_parent_options\": null,\n        \"type\": \"question\",\n        \"question_type\": \"Scale\",\n        \"optionsetID\": \"135\",\n        \"optionset_title\": \"Scale: Yes/No\",\n        \"options\": [\n            {\n                \"optionID\": \"713\",\n                \"option_order\": \"1\",\n                \"option_title\": \"No\",\n                \"option_value\": \"1\",\n                \"milestones_value\": \"0.0\",\n                \"descriptor\": \"Test\",\n                \"require_comment\": false\n            },\n            {\n                \"optionID\": \"712\",\n                \"option_order\": \"2\",\n                \"option_title\": \"Yes\",\n                \"option_value\": \"2\",\n                \"milestones_value\": \"0.0\",\n                \"descriptor\": \"Test\",\n                \"require_comment\": true\n            }\n        ]\n    },\n    {\n        \"questionID\": \"17931\",\n        \"question_order\": 6,\n        \"question_number\": \"\",\n        \"question_text\": \"Please call me about these concerns\",\n        \"question_required\": \"N\",\n        \"skip_enabled\": null,\n        \"skip_parent\": null,\n        \"skip_parent_options\": null,\n        \"type\": \"question\",\n        \"question_type\": \"Scale\",\n        \"optionsetID\": \"135\",\n        \"optionset_title\": \"Scale: Yes/No\",\n        \"options\": [\n            {\n                \"optionID\": \"713\",\n                \"option_order\": \"1\",\n                \"option_title\": \"No\",\n                \"option_value\": \"1\",\n                \"milestones_value\": \"0.0\",\n                \"descriptor\": \"Test\",\n                \"require_comment\": false\n            },\n            {\n                \"optionID\": \"712\",\n                \"option_order\": \"2\",\n                \"option_title\": \"Yes\",\n                \"option_value\": \"2\",\n                \"milestones_value\": \"0.0\",\n                \"descriptor\": \"Test\",\n                \"require_comment\": false\n            }\n        ]\n    }\n]"}],"_postman_id":"371cbbb7-b500-45d4-bd8d-95d298da1ec1"},{"name":"evals/forms","id":"803f13cd-364b-43df-be1b-b45ae40c86d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"programID\":441}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/forms","description":"<p>Retrieves a list of active evaluation forms for a given program or course.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>integer</td>\n        <td>Yes*</td>\n        <td>v0.90</td>\n        <td>Required if courseID not given</td>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>integer</td>\n        <td>Yes*</td>\n        <td>v1.06</td>\n        <td>Required if programID not given</td>\n    </tr>\n    <tr>\n        <td>evaluations</td>\n        <td>array</td>\n        <td>No</td>\n        <td>v1.07</td>\n        <td>Optional array of evaluationIDs to limit results to specific forms</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>evaluationID</td>\n        <td>unique identifier for an evaluation form</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>evaluation_title</td>\n        <td>title of an evaluation form</td>\n        <td>string</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>introduction</td>\n        <td>introduction to an evaluation form</td>\n        <td>string</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>questions_count</td>\n        <td>number of questions on an evaluation form</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>types</td>\n        <td>evaluation types linked to an evaluation form</td>\n        <td>array</td>\n        <td>v0.90</td>\n        <td>The array will contain integers that identify each evaluation type</td>\n    </tr>\n</table>","urlObject":{"path":["evals","forms"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"2ba7d5df-4c7f-442b-9e97-12fc3f04080c","name":"evals/forms","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"programID\":441}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/forms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 05 Jun 2020 18:05:30 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"evaluationID\": \"1682\",\n        \"evaluation_title\": \"Annual Program Evaluation - Yale Neurosurgery Residency Training Program (by Faculty)\",\n        \"introduction\": \"It is REQUIRED by the ACGME, and our Program for the training program to be evaluated annually by Trainees and Faculty. Trainee/ Faculty feedback regarding the training program is an integral part to this process.   Thank you in advance for your participation and prompt reply.    \",\n        \"questions_count\": \"37\",\n        \"types\": [\n            \"7\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"1823\",\n        \"evaluation_title\": \"Annual Program Evaluation - Yale Neurosurgery Residency Training Program (by Faculty) Version 2 \",\n        \"introduction\": \"It is REQUIRED by the ACGME, and our Program for the training program to be evaluated annually by Trainees and Faculty. Trainee/ Faculty feedback regarding the training program is an integral part to this process.   Thank you in advance for your participation and prompt reply.    \",\n        \"questions_count\": \"37\",\n        \"types\": [\n            \"7\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"1686\",\n        \"evaluation_title\": \"Annual Program Evaluation - Yale Neurosurgery Residency Training Program (by Residents)\",\n        \"introduction\": \"It is REQUIRED by the ACGME, and our Program for the training program to be evaluated annually by Trainees and Faculty. Trainee/ Faculty feedback regarding the training program is an integral part to this process.   Thank you in advance for your participation and prompt reply.    \",\n        \"questions_count\": \"37\",\n        \"types\": [\n            \"4\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"4087\",\n        \"evaluation_title\": \"AOTest - Header Gaps #2\",\n        \"introduction\": \"\",\n        \"questions_count\": \"9\",\n        \"types\": [\n            \"1\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"4083\",\n        \"evaluation_title\": \"AOTest - Resident Evaluation of Program\",\n        \"introduction\": \"Evaluate the program!\",\n        \"questions_count\": \"1\",\n        \"types\": [\n            \"4\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"3865\",\n        \"evaluation_title\": \"Bariatric Surgery- Rotation\",\n        \"introduction\": \"Use as your standard the level of knowledge, skills, and attitudes expected from the resident at their current stage of training to evaluate the resident. The evaluation is formatted to incorporate the milestones. This evaluation will provide a framework for the assessment of the development of the each resident in key domains of physician competency. ACGME defines each level as:  Critical Deficiencies: These learner behaviors are not within the spectrum of developing competence. Instead they indicate significant deficiencies in a resident's performance.   Level 1: The resident is demonstrating milestones expected of an incoming resident.   Level 2: The resident is advancing and demonstrates additional milestones, but is not yet performing at a mid-residency level.   Level 3: The resident continues to advance and demonstrate additional milestones; the resident demonstrates the majority of milestones targeted for residency in this sub-competency.   Level 4: The resident has advanced so that he or she now substantially demonstrates the milestones targeted for residency. This level is designed as the graduation target.  Supervision privileges are assigned as: Direct Supervision- supervising physician is physically present with the resident and patient.  Indirect Supervision-supervising physician is not physically present, but within the hospital or other site of patient care, and is immediately available to provide assistance by means of telephonic and/or electronic modalities, and is available to provide direct supervision.    Oversight- the supervising physician is available to provide review of procedures/encounters with feedback provided after care is delivered.   **The levels do not correspond with post-graduate year of education**\",\n        \"questions_count\": \"38\",\n        \"types\": [\n            \"5\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"3994\",\n        \"evaluation_title\": \"BB - Lots of scale options\",\n        \"introduction\": \"\",\n        \"questions_count\": \"4\",\n        \"types\": [\n            \"1\",\n            \"2\",\n            \"3\",\n            \"4\",\n            \"12\",\n            \"21\",\n            \"25\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"4002\",\n        \"evaluation_title\": \"BB - Test checkboxes 1/17\",\n        \"introduction\": \"These are the instructions entered on 10/2/19.\",\n        \"questions_count\": \"10\",\n        \"types\": [\n            \"1\",\n            \"2\",\n            \"3\",\n            \"4\",\n            \"5\",\n            \"6\",\n            \"7\",\n            \"12\",\n            \"13\",\n            \"14\",\n            \"18\",\n            \"21\",\n            \"25\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"1025\",\n        \"evaluation_title\": \"Chief Resident Evaluation of Day Float and Night Float Residents \",\n        \"introduction\": \"\",\n        \"questions_count\": \"7\",\n        \"types\": [\n            \"1\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"838\",\n        \"evaluation_title\": \"Evaluation  Fellow of Attending \",\n        \"introduction\": \"\",\n        \"questions_count\": \"16\",\n        \"types\": [\n            \"2\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"1380\",\n        \"evaluation_title\": \"Evaluation of an Attending by Fellow\",\n        \"introduction\": \"Evaluation of an Attending by Fellow\",\n        \"questions_count\": \"15\",\n        \"types\": [\n            \"2\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"807\",\n        \"evaluation_title\": \"Evaluation of an Attending by Resident \",\n        \"introduction\": \"Evaluation of an Attending by Resident\",\n        \"questions_count\": \"15\",\n        \"types\": [\n            \"2\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"639\",\n        \"evaluation_title\": \"Evaluation of an Attending by Resident\",\n        \"introduction\": \"Evaluation of an Attending by Resident\",\n        \"questions_count\": \"15\",\n        \"types\": [\n            \"2\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"1458\",\n        \"evaluation_title\": \"Evaluation of Attending\",\n        \"introduction\": \"\",\n        \"questions_count\": \"12\",\n        \"types\": [\n            \"2\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"520\",\n        \"evaluation_title\": \"Faculty Evaluation of Resident - Research Elective\",\n        \"introduction\": \"Based on your observations and interactions with this resident, please rate his or her level of skill in the following areas.  Please select N/A if you have not observed this skill or if it is not applicable to the research project.\",\n        \"questions_count\": \"12\",\n        \"types\": [\n            \"5\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"12\",\n        \"evaluation_title\": \"Faculty Evaluation of Resident at End of Rotation\",\n        \"introduction\": \"Faculty Evaluation of Resident at End of Rotation\",\n        \"questions_count\": \"7\",\n        \"types\": [\n            \"5\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"2082\",\n        \"evaluation_title\": \"Milestone Evaluation of Resident - ACGME Format \",\n        \"introduction\": \"Please click EXPAND Arrow under levels to read all requirements.   \",\n        \"questions_count\": \"24\",\n        \"types\": [\n            \"5\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"4829\",\n        \"evaluation_title\": \"Patient Infection Control\",\n        \"introduction\": \"Please evaluate trainees on Infection control procedures\",\n        \"questions_count\": \"5\",\n        \"types\": [\n            \"1\",\n            \"2\",\n            \"5\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"1727\",\n        \"evaluation_title\": \"Program Director Annual Meeting with Faculty Member \",\n        \"introduction\": \"\",\n        \"questions_count\": \"8\",\n        \"types\": [\n            \"14\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"862\",\n        \"evaluation_title\": \"Resident Direct Encounter Evaluation \",\n        \"introduction\": \"\",\n        \"questions_count\": \"6\",\n        \"types\": [\n            \"5\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"1518\",\n        \"evaluation_title\": \"Resident Direct Encounter Evaluation  (Copy)\",\n        \"introduction\": \"\",\n        \"questions_count\": \"6\",\n        \"types\": [\n            \"1\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"1519\",\n        \"evaluation_title\": \"Resident Direct Encounter Evaluation  (Copy) (Copy)\",\n        \"introduction\": \"\",\n        \"questions_count\": \"6\",\n        \"types\": [\n            \"8\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"1517\",\n        \"evaluation_title\": \"Resident Milestone Evaluation - completed by Clinical Competency Committee  (v2) \",\n        \"introduction\": \"Please click EXPAND Arrow under levels to read all requirements.   \",\n        \"questions_count\": \"24\",\n        \"types\": [\n            \"5\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"2344\",\n        \"evaluation_title\": \"Resident Milestone Evaluation - completed by Clinical Competency Committee (form revised 3/2014) \",\n        \"introduction\": \"Please click EXPAND Arrow under levels to read all requirements.   \",\n        \"questions_count\": \"49\",\n        \"types\": [\n            \"5\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"1074\",\n        \"evaluation_title\": \"Resident Rotation Evaluation by Nurses, PAs, staff, other - 360 Review \",\n        \"introduction\": \"\",\n        \"questions_count\": \"10\",\n        \"types\": [\n            \"8\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"2341\",\n        \"evaluation_title\": \"Resident Self Study (based on Milestones - revised March 2014) \",\n        \"introduction\": \"Please click EXPAND Arrow under levels to read all requirements.   \",\n        \"questions_count\": \"49\",\n        \"types\": [\n            \"12\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"1510\",\n        \"evaluation_title\": \"Resident Self Study - based on Milestones \",\n        \"introduction\": \"Please review and mark your level.   Please click EXPAND Arrow under levels to read all requirements.   Justify in comment section and describe plan for reaching next level.  \",\n        \"questions_count\": \"48\",\n        \"types\": [\n            \"12\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"1637\",\n        \"evaluation_title\": \"Semi-Annual Review of Resident by Program Director \",\n        \"introduction\": \"\",\n        \"questions_count\": \"10\",\n        \"types\": [\n            \"5\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"2253\",\n        \"evaluation_title\": \"Semi-Annual Review of Resident by Program Director  (revised 3/5/14) \",\n        \"introduction\": \"\",\n        \"questions_count\": \"15\",\n        \"types\": [\n            \"5\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"36\",\n        \"evaluation_title\": \"Student Evaluation of Faculty (GME Form) \",\n        \"introduction\": \"To facilitate the continual improvement of the Rotation, we ask that you please answer the following questions with regard to the specified attending faculty member.   \",\n        \"questions_count\": \"18\",\n        \"types\": [\n            \"16\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    },\n    {\n        \"evaluationID\": \"964\",\n        \"evaluation_title\": \"Unscheduled Evaluation of a Resident \",\n        \"introduction\": \"Unscheduled Evaluation of a Resident \",\n        \"questions_count\": \"4\",\n        \"types\": [\n            \"5\"\n        ],\n        \"can_remove\": true,\n        \"remove_req_comment\": false\n    }\n]"}],"_postman_id":"803f13cd-364b-43df-be1b-b45ae40c86d6"},{"name":"evals/initiate","id":"6592aa90-75dd-4103-b752-c39fd4e05ba6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"evaluationID\":4083,\"eval_type\":4,\"evaluator_userID\":119711,\"programID\":441,\"notify\":\"TRUE\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/initiate","description":"<p>Delivers a new evaluation.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td>evaluationID</td><td>integer</td><td>Yes</td><td>v1.15</td><td>Use evals/forms to get a list of all active evaluations for a given program or course.</td></tr><tr><td>eval_type</td><td>integer</td><td>Yes</td><td>v1.15</td><td>Use evals/types to get a list of all available evaluation types.</td></tr><tr><td>evaluator_userID</td><td>integer</td><td>Yes</td><td>v1.15</td><td>Identifies the user that will recieve the evaluation.</td></tr><tr><td>programID</td><td>integer</td><td>Yes\\*</td><td>v1.15</td><td>Identifies the program delivering the evaluation. \\*Required if courseID not provided.</td></tr><tr><td>courseID</td><td>integer</td><td>Yes\\*</td><td>v1.15</td><td>Identifies the course delivering the evaluation. \\*Required if programID not provided.</td></tr><tr><td>evaluatee_userID</td><td>integer</td><td>Yes\\*</td><td>v1.15</td><td>\\*Required for all evaluation types where the target is a person.</td></tr><tr><td>procedureID</td><td>integer</td><td>No\\*</td><td>v1.15</td><td>\\*Required for all evaluations of procedures.</td></tr><tr><td>lectureID</td><td>integer</td><td>No\\*</td><td>v1.15</td><td>\\*Required for all evaluations of conferences or sessions</td></tr><tr><td>globalserviceID</td><td>integer</td><td>No\\*</td><td>v1.15</td><td>\\*Required if evaluation is of a service AND clinicnameID is not provided. Use schedules/services to get a list of service groups for a given program.</td></tr><tr><td>clinicnameID</td><td>integer</td><td>No\\*</td><td>v1.15</td><td>\\*Required if evaluation is of a service AND globalserviceID is not provided. Use schedules/clinics to get a list of clinics defined for a given program or course.</td></tr><tr><td>notify</td><td>boolean</td><td>No</td><td>v1.15</td><td>Pass TRUE to deliver an email notification to the evaluator.</td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td>responseID</td><td>unique identifier for evaluation response</td><td>integer</td><td>v1.15</td><td>Value \"0\" indicates a failed delivery.</td></tr></tbody></table>","urlObject":{"path":["evals","initiate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"b5026cd9-88fb-4d72-af27-5c0f5994b699","name":"evals/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"evaluationID\":4083,\"eval_type\":4,\"evaluator_userID\":119711,\"programID\":441,\"notify\":\"TRUE\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 05 Jun 2020 19:37:34 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"responseID\": \"661686\"\n}"}],"_postman_id":"6592aa90-75dd-4103-b752-c39fd4e05ba6"},{"name":"evals/leaderboard","id":"fc56b262-1719-4a65-884d-72a76fb21856","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\":97927}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/leaderboard","description":"<p>Lists user and peers, with tallies of completed evaluations.</p>\n<ul><li>For residents, peers are defined as other residents in the same program.</li>\n<li>For students, peers are defined as all active students in the school.</li>\n<li>For faculty, peers are defined as all faculty with the same default program.</li></ul>\n\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.15</td>\n        <td>Provide the userID of a resident, student, or faculty member. Use users/residents, users/students, users/faculty, users/studentSearch, users/residentSearch to get userIDs.</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>unique identifier for a user</td>\n        <td>integer</td>\n        <td>v1.15</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>first_name</td>\n        <td>first name of user</td>\n        <td>string</td>\n        <td>v1.15</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>last_name</td>\n        <td>last name of user</td>\n        <td>string</td>\n        <td>v1.15</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>total</td>\n        <td>number of evaluations completed</td>\n        <td>integer</td>\n        <td>v1.15</td>\n        <td>count includes evaluations completed over the last 180 days.</td>\n    </tr>\n    <tr>\n        <td>average</td>\n        <td>average amount of time taken to complete an evaluation</td>\n        <td>string</td>\n        <td>v1.01</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["evals","leaderboard"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"d70a89a5-1ae4-4b94-9a28-36ab3830ed5b","name":"evals/leaderboard","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":97927}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/leaderboard"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 05 Jun 2020 19:53:10 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userID\": \"97927\",\n        \"first_name\": \"Alleen\",\n        \"last_name\": \"Archuleta\",\n        \"photo_full_url\": \"https://sandbox.medhub.com/files/photos/r/97927.jpg\",\n        \"photo_thumb_url\": \"https://sandbox.medhub.com/files/photos/r/97927sm.jpg\",\n        \"total\": \"6\",\n        \"average\": \"0 hours\"\n    },\n    {\n        \"userID\": \"114615\",\n        \"first_name\": \"Bbeale\",\n        \"last_name\": \"AppTester\",\n        \"photo_full_url\": \"\",\n        \"photo_thumb_url\": \"\",\n        \"total\": \"2\",\n        \"average\": \"0 hours\"\n    },\n    {\n        \"userID\": \"119629\",\n        \"first_name\": \"Luna\",\n        \"last_name\": \"Lovegood\",\n        \"photo_full_url\": \"\",\n        \"photo_thumb_url\": \"\",\n        \"total\": \"1\",\n        \"average\": \"0 hours\"\n    }\n]"}],"_postman_id":"fc56b262-1719-4a65-884d-72a76fb21856"},{"name":"evals/milestones","id":"f58e9a06-97bd-404b-b055-db468fcb6a42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"programID\":890,\"list\":\"milestones\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/milestones","description":"<p>Retrieves a list of the milestones, EPAs, or elements defined for a given program.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.01</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>list</td>\n        <td>string</td>\n        <td>Yes</td>\n        <td>v1.01</td>\n        <td>Values to provide: \"milestones\", \"epas\", or \"elements\".</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>refID</td>\n        <td>unique index identifier</td>\n        <td>integer</td>\n        <td>v1.01</td>\n        <td>Note: only unique for its list type.</td>\n    </tr>\n    <tr>\n        <td>global_refID</td>\n        <td>unique global identifier</td>\n        <td>integer</td>\n        <td>v1.01</td>\n        <td>Refers to IDs used when standard \"packages\" are created for a specialty.  This will only be poplulated if the program uses their standard package.</td>\n    </tr>\n    <tr>\n        <td>name</td>\n        <td>index name, title of item in list</td>\n        <td>string</td>\n        <td>v1.01</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>abbrev</td>\n        <td>index abbreviation, abbreviation of item in list</td>\n        <td>string</td>\n        <td>v1.01</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>status</td>\n        <td>status of item in list</td>\n        <td>string</td>\n        <td>v1.01</td>\n        <td>Values: \"Inactive\" or \"Active\".</td>\n    </tr>\n</table>","urlObject":{"path":["evals","milestones"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"12ac104c-68dc-43fd-98a4-45cd491ad729","name":"evals/milestones","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"programID\":890,\"list\":\"milestones\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/milestones"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 05 Jun 2020 20:09:05 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"refID\": \"3694\",\n        \"global_refID\": \"333\",\n        \"name\": \"Communicates effectively with patients and caregivers.\",\n        \"abbrev\": \"ICS-1\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3695\",\n        \"global_refID\": \"334\",\n        \"name\": \"Communicates effectively in interprofessional teams (e.g. peers, consultants, nursing, ancillary professionals and other support personnel).\",\n        \"abbrev\": \"ICS-2\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3696\",\n        \"global_refID\": \"335\",\n        \"name\": \"Appropriate utilization and completion of health records.\",\n        \"abbrev\": \"ICS-3\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3697\",\n        \"global_refID\": \"329\",\n        \"name\": \"Has professional and respectful interactions with patients, caregivers and members of the interprofessional team (e.g. peers, consultants, nursing, ancillary professionals and support personnel).\",\n        \"abbrev\": \"PROF-1\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3698\",\n        \"global_refID\": \"330\",\n        \"name\": \"Accepts responsibility and follows through on tasks.\",\n        \"abbrev\": \"PROF-2\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3699\",\n        \"global_refID\": \"331\",\n        \"name\": \"Responds to each patient's unique characteristics and needs.\",\n        \"abbrev\": \"PROF-3\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3700\",\n        \"global_refID\": \"332\",\n        \"name\": \"Exhibits integrity and ethical behavior in professional conduct.\",\n        \"abbrev\": \"PROF-4\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3701\",\n        \"global_refID\": \"314\",\n        \"name\": \"Gathers and synthesizes essential and accurate information to define each patient's clinical problem(s).\",\n        \"abbrev\": \"PC-1\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3702\",\n        \"global_refID\": \"315\",\n        \"name\": \"Develops and achieves comprehensive management plan for each patient.\",\n        \"abbrev\": \"PC-2\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3703\",\n        \"global_refID\": \"316\",\n        \"name\": \"Manages patients with progressive responsibility and independence.\",\n        \"abbrev\": \"PC-3\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3704\",\n        \"global_refID\": \"317\",\n        \"name\": \"Skill in performing procedures.\",\n        \"abbrev\": \"PC-4\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3705\",\n        \"global_refID\": \"318\",\n        \"name\": \"Requests and provides consultative care.\",\n        \"abbrev\": \"PC-5\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3706\",\n        \"global_refID\": \"319\",\n        \"name\": \"Clinical knowledge\",\n        \"abbrev\": \"MK-1\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3707\",\n        \"global_refID\": \"320\",\n        \"name\": \"Knowledge of diagnostic testing and procedures.\",\n        \"abbrev\": \"MK-2\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3708\",\n        \"global_refID\": \"325\",\n        \"name\": \"Monitors practice with a goal for improvement.\",\n        \"abbrev\": \"PBLI-1\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3709\",\n        \"global_refID\": \"326\",\n        \"name\": \"Learns and improves via performance audit.\",\n        \"abbrev\": \"PBLI-2\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3710\",\n        \"global_refID\": \"327\",\n        \"name\": \"Learns and improves via feedback.\",\n        \"abbrev\": \"PBLI-3\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3711\",\n        \"global_refID\": \"328\",\n        \"name\": \"Learns and improves at the point of care.\",\n        \"abbrev\": \"PBLI-4\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3712\",\n        \"global_refID\": \"321\",\n        \"name\": \"Works effectively within an interprofessional team (e.g. peers, consultants, nursing, ancillary professionals and other support personnel).\",\n        \"abbrev\": \"SBP-1\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3713\",\n        \"global_refID\": \"322\",\n        \"name\": \"Recognizes system error and advocates for system improvement.\",\n        \"abbrev\": \"SBP-2\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3714\",\n        \"global_refID\": \"323\",\n        \"name\": \"Identifies forces that impact the cost of health care, and advocates for, and practices cost-effective care.\",\n        \"abbrev\": \"SBP-3\",\n        \"status\": \"Active\"\n    },\n    {\n        \"refID\": \"3715\",\n        \"global_refID\": \"324\",\n        \"name\": \"Transitions patients effectively within and across health delivery systems.\",\n        \"abbrev\": \"SBP-4\",\n        \"status\": \"Active\"\n    }\n]"}],"_postman_id":"f58e9a06-97bd-404b-b055-db468fcb6a42"},{"name":"evals/milestoneSummary","id":"2c38fa49-0575-49b5-87df-6a4a4e360656","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\":114783,\"type\":\"milestones\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/milestonesummary","description":"<p>Provides a summary of milestone data for a given resident.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.15</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>type</td>\n        <td>string</td>\n        <td>No</td>\n        <td>v1.15</td>\n        <td>Values list options: \"milestones\" (default), \"epas\", or \"elements\".</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>abbrev</td>\n        <td>index abbreviation</td>\n        <td>string</td>\n        <td>v1.15</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>name</td>\n        <td>index name</td>\n        <td>string</td>\n        <td>v1.15</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>average</td>\n        <td>average level</td>\n        <td>float</td>\n        <td>v1.15</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>range</td>\n        <td>range of responses</td>\n        <td>string</td>\n        <td>v1.15</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>questions</td>\n        <td>number of tagged evaluation questions</td>\n        <td>integer</td>\n        <td>v1.15</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>peer</td>\n        <td>peer average</td>\n        <td>float</td>\n        <td>v1.15</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>achieved</td>\n        <td>whether or not milestone/epa/element has been achieved</td>\n        <td>string</td>\n        <td>v1.15</td>\n        <td>Provided if program uses Achievements. Response values include: \"yes\", \"no\", \"na\".</td>\n    </tr>\n</table>","urlObject":{"path":["evals","milestonesummary"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"95346c23-39f8-4907-bd56-6d6b8b1cd8a0","name":"*milestones example* evals/milestoneSummary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":114783,\"type\":\"milestones\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/milestonesummary"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Jun 2020 16:42:07 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"Patient Care\": [\n        {\n            \"abbrev\": \"PC-1\",\n            \"name\": \"Gathers and synthesizes essential and accurate information to define each patient's clinical problem(s).\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"yes\"\n        },\n        {\n            \"abbrev\": \"PC-2\",\n            \"name\": \"Develops and achieves comprehensive management plan for each patient.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"yes\"\n        },\n        {\n            \"abbrev\": \"PC-3\",\n            \"name\": \"Manages patients with progressive responsibility and independence.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        },\n        {\n            \"abbrev\": \"PC-4\",\n            \"name\": \"Skill in performing procedures.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        },\n        {\n            \"abbrev\": \"PC-5\",\n            \"name\": \"Requests and provides consultative care.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        }\n    ],\n    \"Medical Knowledge\": [\n        {\n            \"abbrev\": \"MK-1\",\n            \"name\": \"Clinical knowledge\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        },\n        {\n            \"abbrev\": \"MK-2\",\n            \"name\": \"Knowledge of diagnostic testing and procedures.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        }\n    ],\n    \"Systems-based Practice\": [\n        {\n            \"abbrev\": \"SBP-1\",\n            \"name\": \"Works effectively within an interprofessional team (e.g. peers, consultants, nursing, ancillary professionals and other support personnel).\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        },\n        {\n            \"abbrev\": \"SBP-2\",\n            \"name\": \"Recognizes system error and advocates for system improvement.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        },\n        {\n            \"abbrev\": \"SBP-3\",\n            \"name\": \"Identifies forces that impact the cost of health care, and advocates for, and practices cost-effective care.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        },\n        {\n            \"abbrev\": \"SBP-4\",\n            \"name\": \"Transitions patients effectively within and across health delivery systems.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        }\n    ],\n    \"Practice-based Learning and Improvement\": [\n        {\n            \"abbrev\": \"PBLI-1\",\n            \"name\": \"Monitors practice with a goal for improvement.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        },\n        {\n            \"abbrev\": \"PBLI-2\",\n            \"name\": \"Learns and improves via performance audit.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        },\n        {\n            \"abbrev\": \"PBLI-3\",\n            \"name\": \"Learns and improves via feedback.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        },\n        {\n            \"abbrev\": \"PBLI-4\",\n            \"name\": \"Learns and improves at the point of care.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        }\n    ],\n    \"Professionalism\": [\n        {\n            \"abbrev\": \"PROF-1\",\n            \"name\": \"Has professional and respectful interactions with patients, caregivers and members of the interprofessional team (e.g. peers, consultants, nursing, ancillary professionals and support personnel).\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        },\n        {\n            \"abbrev\": \"PROF-2\",\n            \"name\": \"Accepts responsibility and follows through on tasks.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        },\n        {\n            \"abbrev\": \"PROF-3\",\n            \"name\": \"Responds to each patientâ\\u0080\\u0099s unique characteristics and needs.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        },\n        {\n            \"abbrev\": \"PROF-4\",\n            \"name\": \"Exhibits integrity and ethical behavior in professional conduct.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        }\n    ],\n    \"Interpersonal Communication Skills (ICS)\": [\n        {\n            \"abbrev\": \"ICS-1\",\n            \"name\": \"Communicates effectively with patients and caregivers.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        },\n        {\n            \"abbrev\": \"ICS-2\",\n            \"name\": \"Communicates effectively in interprofessional teams (e.g. peers, consultants, nursing, ancillary professionals and other support personnel).\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        },\n        {\n            \"abbrev\": \"ICS-3\",\n            \"name\": \"Appropriate utilization and completion of health records.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null,\n            \"achieved\": \"na\"\n        }\n    ]\n}"},{"id":"a57b555f-c321-4e6b-a500-328127ca4aed","name":"*epas example* evals/milestoneSummary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":114783,\"type\":\"epas\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/milestonesummary"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Jun 2020 16:44:21 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"(none tagged)\": [\n        {\n            \"abbrev\": \"EPA-1\",\n            \"name\": \"Manage care of patients with acute common diseases across multiple care settings.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null\n        },\n        {\n            \"abbrev\": \"EPA-10\",\n            \"name\": \"Lead and work within interprofessional health care teams.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null\n        },\n        {\n            \"abbrev\": \"EPA-11\",\n            \"name\": \"Facilitate the learning of patients, families, and members of the interdiscplinary team.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null\n        },\n        {\n            \"abbrev\": \"EPA-12\",\n            \"name\": \"Enhance patient safety.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null\n        },\n        {\n            \"abbrev\": \"EPA-13\",\n            \"name\": \"Improve the quality of health care at both the individual and systems level.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null\n        },\n        {\n            \"abbrev\": \"EPA-14\",\n            \"name\": \"Advocate for individual patients.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null\n        },\n        {\n            \"abbrev\": \"EPA-15\",\n            \"name\": \"Demonstrate personal habits of lifelong learning.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null\n        },\n        {\n            \"abbrev\": \"EPA-16\",\n            \"name\": \"Demonstrate professional behavior.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null\n        },\n        {\n            \"abbrev\": \"EPA-2\",\n            \"name\": \"Manage care of patients with acute complex diseases across multiple care settings.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null\n        },\n        {\n            \"abbrev\": \"EPA-3\",\n            \"name\": \"Manage care of patients with chronic diseases across multiple care settings.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null\n        },\n        {\n            \"abbrev\": \"EPA-4\",\n            \"name\": \"Provide age-appropriate screening and preventative care.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null\n        },\n        {\n            \"abbrev\": \"EPA-5\",\n            \"name\": \"Resuscitate, stabilize, and care for unstable or critically ill patients.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null\n        },\n        {\n            \"abbrev\": \"EPA-6\",\n            \"name\": \"Provide perioperative assessment and care.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null\n        },\n        {\n            \"abbrev\": \"EPA-7\",\n            \"name\": \"Provide general internal medicine consultation to nonmedical specialties.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null\n        },\n        {\n            \"abbrev\": \"EPA-8\",\n            \"name\": \"Manage transitions of care.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null\n        },\n        {\n            \"abbrev\": \"EPA-9\",\n            \"name\": \"Facilitate family meetings.\",\n            \"average\": null,\n            \"peer\": null,\n            \"range\": null,\n            \"questions\": null\n        }\n    ]\n}"},{"id":"ba8b858c-24b3-468c-bc38-185aefda77f9","name":"*elements example* evals/milestoneSummary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":114783,\"type\":\"elements\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/milestonesummary"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Mon, 15 Jun 2020 16:43:34 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\"(none tagged)\":[{\"abbrev\":\"ICS1-1a\",\"name\":\"Ignores patient preferences for plan of care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS1-1b\",\"name\":\"Makes no attempt to engage patient in shared decision-making\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS1-1c\",\"name\":\"Routinely engages in antagonistic or counter-therapeutic relationships with patients and caregivers\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS1-2a\",\"name\":\"Engages patients in discussions of care plans and respects patient preferences when offered by the patient, but does not actively solicit preferences.\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS1-2b\",\"name\":\"Attempts to develop therapeutic relationships with patients and caregivers but is often unsuccessful\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS1-2c\",\"name\":\"Defers difficult or ambiguous conversations to others\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS1-3a\",\"name\":\"Engages patients in shared decision making in uncomplicated conversations\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS1-3b\",\"name\":\"Requires assistance facilitating discussions in difficult or ambiguous conversations|\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS1-3c\",\"name\":\"Requires guidance or assistance to engage in communication with persons of different socioeconomic and cultural backgrounds\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS1-4a\",\"name\":\"Identifies and incorporates patient preference in shared decision making across a wide variety of patient care conversations\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS1-4b\",\"name\":\"Quickly establishes a therapeutic relationship with patients and caregivers, including persons of different socioeconomic and cultural backgrounds\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS1-4c\",\"name\":\"Incorporates patient-specific preferences into plan of care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS1-5a\",\"name\":\"Role models effective communication and development of therapeutic relationships in both routine and challenging situations\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS1-5b\",\"name\":\"Models cross-cultural communication and establishes therapeutic relationships with persons of diverse socioeconomic backgrounds\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS2-1a\",\"name\":\"Utilizes communication strategies that hamper collaboration and teamwork\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS2-1b\",\"name\":\"Verbal and\\/or non-verbal behaviors disrupt effective collaboration with team members\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS2-2a\",\"name\":\"Uses unidirectional communication that fails to utilize the wisdom of the team\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS2-2b\",\"name\":\"Resists offers of collaborative input\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS2-3a\",\"name\":\"Inconsistently engages in collaborative communication with appropriate members of the team\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS2-3b\",\"name\":\"Inconsistently employs verbal, non-verbal, and written communication strategies that facilitate collaborative care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS2-4a\",\"name\":\"Consistently and actively engages in collaborative communication with all members of the team\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS2-4b\",\"name\":\"Verbal, non-verbal and written communication consistently acts to facilitate collaboration with the team to enhance patient care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS2-5a\",\"name\":\"Role models and teaches collaborative communication with the team to enhance patient care, even in challenging settings and with conflicting team member opinions\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS3-1a\",\"name\":\"Health records are absent or missing significant portions of important clinical data\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS3-2a\",\"name\":\"Health records are disorganized and inaccurate\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS3-3a\",\"name\":\"Health records are organized and accurate but are superficial and miss key data or fail to communicate clinical reasoning\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS3-4a\",\"name\":\"Health records are organized, accurate, comprehensive, and effectively communicate clinical reasoning\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS3-4b\",\"name\":\"Health records are succinct, relevant, and patient specific\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"ICS3-5a\",\"name\":\"Role models and teaches importance of organized, accurate and comprehensive health records that are succinct and patient specific\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"MK1-1a\",\"name\":\"Lacks the scientific, socioeconomic or behavioral knowledge required to provide patient care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"MK1-2a\",\"name\":\"Possesses insufficient scientific, socioeconomic and behavioral knowledge required to provide care for common medical conditions and basic preventive care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"MK1-3a\",\"name\":\"Possesses the scientific, socioeconomic and behavioral knowledge required to provide care for common medical conditions and basic preventive care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"MK1-4a\",\"name\":\"Possesses the scientific, socioeconomic and behavioral knowledge required to provide care for complex medical conditions and comprehensive preventive care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"MK1-5a\",\"name\":\"Possesses the scientific, socioeconomic and behavioral knowledge required to successfully diagnose and treat medically uncommon, ambiguous and complex conditions\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"MK2-1a\",\"name\":\"Lacks foundational knowledge to apply diagnostic testing and procedures to patient care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"MK2-2a\",\"name\":\"Inconsistently interprets basic diagnostic tests accurately\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"MK2-2b\",\"name\":\"Does not understand the concepts of pre-test probability and test performance characteristics\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"MK2-2c\",\"name\":\"Minimally understands the rationale and risks associated with common procedures\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"MK2-3a\",\"name\":\"Consistently interprets basic diagnostic tests accurately\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"MK2-3b\",\"name\":\"Needs assistance to understand the concepts of pre-test probability and test performance characteristics\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"MK2-3c\",\"name\":\"Fully understands the rationale and risks associated with common procedures\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"MK2-4a\",\"name\":\"Interprets complex diagnostic tests accurately\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"MK2-4b\",\"name\":\"Understands the concepts of pre-test probability and test performance characteristics\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"MK2-4c\",\"name\":\"Teaches the rationale and risks associated with common procedures and anticipates potential complications when performing procedures\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"MK2-5a\",\"name\":\"Anticipates and accounts for pitfalls and biases when interpreting diagnostic tests and procedures\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"MK2-5b\",\"name\":\"Pursues knowledge of new and emerging diagnostic tests and procedures\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI1-1a\",\"name\":\"Unwilling to self-reflect upon one\\u00e2\\u0080\\u0099s practice or performance\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI1-1b\",\"name\":\"Not concerned with opportunities for learning and self- improvement\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI1-2a\",\"name\":\"Unable to self-reflect upon one\\u00e2\\u0080\\u0099s practice or performance\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI1-2b\",\"name\":\"Misses opportunities for learning and self- improvement\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI1-3a\",\"name\":\"Inconsistently self-reflects upon one\\u00e2\\u0080\\u0099s practice or performance and inconsistently acts upon those reflections\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI1-3b\",\"name\":\"Inconsistently acts upon opportunities for learning and self-improvement\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI1-4a\",\"name\":\"Regularly self-reflects upon one\\u00e2\\u0080\\u0099s practice or performance and consistently acts upon those reflections to improve practice\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI1-4b\",\"name\":\"Recognizes sub-optimal practice or performance as an opportunity for learning and self-improvement\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI1-5a\",\"name\":\"Regularly self-reflects and seeks external validation regarding this reflection to maximize practice improvement\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI1-5b\",\"name\":\"Actively engages in self- improvement efforts and reflects upon the experience\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI2-1a\",\"name\":\"Disregards own clinical performance data\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI2-1b\",\"name\":\"Demonstrates no inclination to participate in or even consider the results of quality improvement efforts\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI2-2a\",\"name\":\"Limited awareness of or desire to analyze own clinical performance data\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI2-2b\",\"name\":\"Nominally participates in a quality improvement projects\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI2-2c\",\"name\":\"Not familiar with the principles, techniques or importance of quality improvement\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI2-3a\",\"name\":\"Analyzes own clinical performance data and identifies opportunities for improvement\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI2-3b\",\"name\":\"Effectively participates in a quality improvement project\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI2-3c\",\"name\":\"Understands common principles and techniques of quality improvement and appreciates the responsibility to assess and improve care for a panel of patients\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI2-4a\",\"name\":\"Analyzes own clinical performance data and actively works to improve performance\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI2-4b\",\"name\":\"Actively engages in quality improvement initiatives\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI2-4c\",\"name\":\"Demonstrates the ability to apply common principles and techniques of quality improvement to improve care for a panel of patients\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI2-5a\",\"name\":\"Actively monitors clinical performance through various data sources\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI2-5b\",\"name\":\"Is able to lead a quality improvement project\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI2-5c\",\"name\":\"Utilizes common principles and techniques of quality improvement to continuously improve care for a panel of patients\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI3-1a\",\"name\":\"Never solicits feedback|\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI3-1b\",\"name\":\"Actively resists feedback from others\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI3-2a\",\"name\":\"Rarely seeks feedback\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI3-2b\",\"name\":\"Responds to unsolicited feedback in a defensive fashion\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI3-2c\",\"name\":\"Temporarily or superficially adjusts performance based on feedback\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI3-3a\",\"name\":\"Solicits feedback only from supervisors\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI3-3b\",\"name\":\"Is open to unsolicited feedback\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI3-3c\",\"name\":\"Inconsistently incorporates feedback\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI3-4a\",\"name\":\"Solicits feedback from all members of the interprofessional team and patients\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI3-4b\",\"name\":\"Welcomes unsolicited feedback\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI3-4c\",\"name\":\"Consistently incorporates feedback\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI3-5a\",\"name\":\"Performance continuously reflects incorporation of solicited and unsolicited feedback\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI3-5b\",\"name\":\"Able to reconcile disparate or conflicting feedback\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI4-1a\",\"name\":\"Fails to acknowledge uncertainty and reverts to a reflexive patterned response even when inaccurate\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI4-1b\",\"name\":\"Fails to seek or apply evidence when necessary\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI4-2a\",\"name\":\"Rarely \\u00e2\\u0080\\u009cslows down\\u00e2\\u0080\\u009d to reconsider an approach to a problem, ask for help, or seek new information\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI4-2b\",\"name\":\"Can translate medical information needs into well-formed clinical questions with assistance\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI4-2c\",\"name\":\"Unfamiliar with strengths and weaknesses of the medical literature\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI4-2d\",\"name\":\"Has limited awareness of or ability to use information technology\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI4-2e\",\"name\":\"Accepts the findings of clinical research studies without critical appraisal\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI4-3a\",\"name\":\"Inconsistently \\u00e2\\u0080\\u009cslows down\\u00e2\\u0080\\u009d to reconsider an approach to a problem, ask for help, or seek new information\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI4-3b\",\"name\":\"Can translate medical information needs into well- formed clinical questions independently\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI4-3c\",\"name\":\"Aware of the strengths and weaknesses of medical information resources but utilizes information technology without sophistication\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI4-3d\",\"name\":\"With assistance, appraises clinical research reports, based on accepted criteria\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI4-4a\",\"name\":\"Routinely \\u00e2\\u0080\\u009cslows down\\u00e2\\u0080\\u009d to reconsider an approach to a problem, ask for help, or seek new information\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI4-4b\",\"name\":\"Routinely translates new medical information needs into well-formed clinical questions\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI4-4c\",\"name\":\"Utilizes information technology with sophistication\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI4-4d\",\"name\":\"Independently appraises clinical research reports based on accepted criteria\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI4-5a\",\"name\":\"Searches medical information resources efficiently, guided by the characteristics of clinical questions\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI4-5b\",\"name\":\"Role models how to appraise clinical research reports based on accepted criteria\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PBLI4-5c\",\"name\":\"Has a systematic approach to track and pursue emerging clinical questions\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-1a\",\"name\":\"Does not collect accurate historical data\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-1b\",\"name\":\"Does not use physical exam to confirm history\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-1c\",\"name\":\"Relies exclusively on documentation of others to generate own database or differential diagnosis\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-1d\",\"name\":\"Fails to recognize patient\\u00e2\\u0080\\u0099s central clinical problems\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-1e\",\"name\":\"Fails to recognize potentially life threatening problems\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-2a\",\"name\":\"Inconsistently able to acquire accurate historical information in an organized fashion\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-2b\",\"name\":\"Does not perform an appropriately thorough physical exam or misses key physical exam findings\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-2c\",\"name\":\"Does not seek or is overly reliant on secondary data\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-2d\",\"name\":\"Inconsistently recognizes patients' central clinical problem or develops limited differential diagnoses including ACLS\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-3a\",\"name\":\"Consistently acquires accurate and relevant histories from patients\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-3b\",\"name\":\"Seeks and obtains data from secondary sources when needed\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-3c\",\"name\":\"Consistently performs accurate and appropriately thorough physical exams\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-3d\",\"name\":\"Uses collected data to define a patient\\u00e2\\u0080\\u0099s central clinical problem(s)\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-4a\",\"name\":\"Acquires accurate histories from patients in an efficient, prioritized, and hypothesis-driven fashion\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-4b\",\"name\":\"Performs accurate physical exams that are targeted to the patient\\u00e2\\u0080\\u0099s complaints|\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-4c\",\"name\":\"Synthesizes data to generate a prioritized differential diagnosis and problem lis\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-4d\",\"name\":\"Effectively uses history and physical examination skills to minimize the need for further diagnostic testing\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-5a\",\"name\":\"Obtains relevant historical subtleties, including sensitive information that informs the differential diagnosis\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-5b\",\"name\":\"Identifies subtle or unusual physical exam findings\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-5c\",\"name\":\"Efficiently utilizes all sources of secondary data to inform differential diagnosis\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC1-5d\",\"name\":\"Role models and teaches the effective use of history and physical examination skills to minimize the need for further diagnostic testing\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC2-1a\",\"name\":\"Care plans are consistently inappropriate or inaccurate\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC2-1b\",\"name\":\"Does not react to situations that require urgent or emergent care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC2-1c\",\"name\":\"Does not seek additional guidance when needed\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC2-2a\",\"name\":\"Inconsistently develops an appropriate care plan\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC2-2b\",\"name\":\"Inconsistently seeks additional guidance when needed\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC2-3a\",\"name\":\"Consistently develops appropriate care plan\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC2-3b\",\"name\":\"Recognizes situations requiring urgent or emergent care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC2-3c\",\"name\":\"Seeks additional guidance and\\/or consultation as appropriate\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC2-4a\",\"name\":\"Appropriately modifies care plans based on patient\\u00e2\\u0080\\u0099s clinical course, additional data, and patient preferences\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC2-4b\",\"name\":\"Recognizes disease presentations that deviate from common patterns and require complex decision-making\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC2-4c\",\"name\":\"Manages complex acute and chronic diseases\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC2-5a\",\"name\":\"Role models and teaches complex and patient-centered care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC2-5b\",\"name\":\"Develops customized, prioritized care plans for the most complex patients, incorporating diagnostic uncertainty and cost effectiveness principles\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-1a\",\"name\":\"Cannot advance beyond the need for direct supervision in the delivery of patient care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-1b\",\"name\":\"Cannot manage patients who require urgent or emergent care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-1c\",\"name\":\"Does not assume responsibility for patient management decisions\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-2a\",\"name\":\"Requires direct supervision to ensure patient safety and quality care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-2b\",\"name\":\"Inconsistently manages simple ambulatory complaints or common chronic diseases\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-2c\",\"name\":\"Inconsistently provides preventive care in the ambulatory setting\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-2d\",\"name\":\"Inconsistently manages patients with straightforward diagnoses in the inpatient setting\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-2e\",\"name\":\"Unable to manage complex inpatients or patients requiring intensive care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-3a\",\"name\":\"Requires indirect supervision to ensure patient safety and quality care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-3b\",\"name\":\"Provides appropriate preventive care and chronic disease management in the ambulatory setting\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-3c\",\"name\":\"Provides comprehensive care for single or multiple diagnoses in the inpatient setting\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-3d\",\"name\":\"Under supervision, provides appropriate care in the intensive care unit\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-3e\",\"name\":\"Initiates management plans for urgent or emergent care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-3f\",\"name\":\"Cannot independently supervise care provided by junior members of the physician-led\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-4a\",\"name\":\"Independently manages patients across inpatient and ambulatory clinical settings who have a broad spectrum of clinical disorders including undifferentiated syndromes\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-4b\",\"name\":\"Seeks additional guidance and\\/or consultation as appropriate\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-4c\",\"name\":\"Appropriately manages situations requiring urgent or emergent care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-4d\",\"name\":\"Effectively supervises the management decisions of the team\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC3-5a\",\"name\":\"Manages unusual, rare, or complex disorders\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC4-1a\",\"name\":\"Attempts to perform procedures without sufficient technical skill or supervision\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC4-1b\",\"name\":\"Unwilling to perform procedures when qualified and necessary for patient care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC4-2a\",\"name\":\"Possesses insufficient technical skill for safe completion of common procedures\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC4-3a\",\"name\":\"Possesses basic technical skill for the completion of some common procedures\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC4-4a\",\"name\":\"Possesses technical skill and has successfully performed all procedures required for certification\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC4-5a\",\"name\":\"Maximizes patient comfort and safety when performing procedures\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC4-5b\",\"name\":\"Seeks to independently perform additional procedures (beyond those required for certification) that are anticipated for future practice\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC4-5c\",\"name\":\"Teaches and supervises the performance of procedures by junior members of the team\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC5-1a\",\"name\":\"Is unresponsive to questions or concerns of others when acting as a consultant or utilizing consultant services\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC5-1b\",\"name\":\"Unwilling to utilize consultant services when appropriate for patient care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC5-2a\",\"name\":\"Inconsistently manages patients as a consultant to other physicians\\/health care teams\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC5-2b\",\"name\":\"Inconsistently applies risk assessment principles to patients while acting as a consultant\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC5-2c\",\"name\":\"Inconsistently formulates a clinical question for a consultant to address\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC5-3a\",\"name\":\"Provides consultation services for patients with clinical problems requiring basic risk assessment\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC5-3b\",\"name\":\"Asks meaningful clinical questions that guide the input of consultants\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC5-4a\",\"name\":\"Provides consultation services for patients with basic and complex clinical problems requiring detailed risk assessment\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC5-4b\",\"name\":\"Appropriately weighs recommendations from consultants in order to effectively manage patient care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC5-5a\",\"name\":\"Switches between the role of consultant and primary physician with ease\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC5-5b\",\"name\":\"Provides consultation services for patients with very complex clinical problems requiring extensive risk assessment\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PC5-5c\",\"name\":\"Manages discordant recommendations from multiple consultants\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF1-1a\",\"name\":\"Lacks empathy and compassion for patients and caregivers\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF1-1b\",\"name\":\"Disrespectful in interactions with patients, caregivers and members of the interprofessional team\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF1-1c\",\"name\":\"Sacrifices patient needs in favor of own self-interest\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF1-1d\",\"name\":\"Blatantly disregards respect for patient privacy and autonomy\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF1-2a\",\"name\":\"Inconsistently demonstrates empathy, compassion and respect for patients and caregivers\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF1-2b\",\"name\":\"Inconsistently demonstrates responsiveness to patients\\u00e2\\u0080\\u0099 and caregivers\\u00e2\\u0080\\u0099 needs in an appropriate fashion\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF1-2c\",\"name\":\"Inconsistently considers patient privacy and autonomy\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF1-3a\",\"name\":\"Consistently respectful in interactions with patients, caregivers and members of the interprofessional team, even in challenging situations\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF1-3b\",\"name\":\"Is available and responsive to needs and concerns of patients, caregivers and members of the interprofessional team to ensure safe and effective care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF1-3c\",\"name\":\"Emphasizes patient privacy and autonomy in all interactions\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF1-4a\",\"name\":\"Demonstrates empathy, compassion and respect to patients and caregivers in all situations\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF1-4b\",\"name\":\"Anticipates, advocates for, and proactively works to meet the needs of patients and caregivers\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF1-4c\",\"name\":\"Demonstrates a responsiveness to patient needs that supersedes self-interest\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF1-4d\",\"name\":\"Positively acknowledges input of members of the interprofessional team and incorporates that input into plan of care as appropriate\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF1-5a\",\"name\":\"Role models compassion, empathy and respect for patients and caregivers\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF1-5b\",\"name\":\"Role models appropriate anticipation and advocacy for patient and caregiver needs\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF1-5c\",\"name\":\"Fosters collegiality that promotes a high-functioning interprofessional team\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF1-5d\",\"name\":\"Teaches others regarding maintaining patient privacy and respecting patient autonomy\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF2-1a\",\"name\":\"Is consistently unreliable in completing patient care responsibilities or assigned administrative tasks\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF2-1b\",\"name\":\"Shuns responsibilities expected of a physician professional\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF2-2a\",\"name\":\"Completes most assigned tasks in a timely manner but may need multiple reminders or other support\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF2-2b\",\"name\":\"Accepts professional responsibility only when assigned or mandatory\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF2-3a\",\"name\":\"Completes administrative and patient care tasks in a timely manner in accordance with local practice and\\/or policy\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF2-3b\",\"name\":\"Completes assigned professional responsibilities without questioning or the need for reminders\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF2-4a\",\"name\":\"Prioritizes multiple competing demands in order to complete tasks and responsibilities in a timely and effective manner\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF2-4b\",\"name\":\"Willingness to assume professional responsibility regardless of the situation\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF2-5a\",\"name\":\"Role models prioritizing multiple competing demands in order to complete tasks and responsibilities in a timely and effective manner\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF2-5b\",\"name\":\"Assists others to improve their ability to prioritize multiple, competing tasks\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF3-1a\",\"name\":\"Is insensitive to differences related to culture, ethnicity, gender, race, age, and religion in the patient\\/caregiver encounter\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF3-1b\",\"name\":\"Is unwilling to modify care plan to account for a patient\\u00e2\\u0080\\u0099s unique characteristics and needs\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF3-2a\",\"name\":\"Is sensitive to and has basic awareness of differences related to culture, ethnicity, gender, race, age and religion in the patient\\/caregiver encounter\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF3-2b\",\"name\":\"Requires assistance to modify care plan to account for a patient\\u00e2\\u0080\\u0099s unique characteristics and needs\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF3-3a\",\"name\":\"Seeks to fully understand each patient\\u00e2\\u0080\\u0099s unique characteristics and needs based upon culture, ethnicity, gender, religion, and personal preference\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF3-3b\",\"name\":\"Modifies care plan to account for a patient\\u00e2\\u0080\\u0099s unique characteristics and needs with partial success\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF3-4a\",\"name\":\"Recognizes and accounts for the unique characteristics and needs of the patient\\/ caregiver\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF3-4b\",\"name\":\"Appropriately modifies care plan to account for a patient\\u00e2\\u0080\\u0099s unique characteristics and needs\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF3-5a\",\"name\":\"Role models professional interactions to negotiate differences related to a patient\\u00e2\\u0080\\u0099s unique characteristics or needs\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF3-5b\",\"name\":\"Role models consistent respect for patient\\u00e2\\u0080\\u0099s unique characteristics and needs\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF4-1a\",\"name\":\"Dishonest in clinical interactions, documentation, research, or scholarly activity\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF4-1b\",\"name\":\"Refuses to be accountable for personal actions\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF4-1c\",\"name\":\"Does not adhere to basic ethical principles\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF4-1d\",\"name\":\"Blatantly disregards formal policies or procedures.\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF4-2a\",\"name\":\"Honest in clinical interactions, documentation, research, and scholarly activity. Requires oversight for professional actions\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF4-2b\",\"name\":\"Has a basic understanding of ethical principles, formal policies and procedures, and does not intentionally disregard them\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF4-3a\",\"name\":\"Honest and forthright in clinical interactions, documentation, research, and scholarly activity\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF4-3b\",\"name\":\"Demonstrates accountability for the care of patients\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF4-3c\",\"name\":\"Adheres to ethical principles for documentation, follows formal policies and procedures, acknowledges and limits conflict of interest, and upholds ethical expectations of research and scholarly activity\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF4-4a\",\"name\":\"Demonstrates integrity, honesty, and accountability to patients, society and the profession\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF4-4b\",\"name\":\"Actively manages challenging ethical dilemmas and conflicts of interest\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF4-4c\",\"name\":\"Identifies and responds appropriately to lapses of professional conduct among peer group\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF4-5a\",\"name\":\"Assists others in adhering to ethical principles and behaviors including integrity, honesty, and professional responsibility\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF4-5b\",\"name\":\"Role models integrity, honesty, accountability and professional conduct in all aspects of professional life\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"PROF4-5c\",\"name\":\"Regularly reflects on personal professional conduct\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP1-1a\",\"name\":\"Refuses to recognize the contributions of other interprofessional team members\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP1-1b\",\"name\":\"Frustrates team members with inefficiency and errors\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP1-2a\",\"name\":\"Identifies roles of other team members but does not recognize how\\/when to utilize them as resources\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP1-2b\",\"name\":\"Frequently requires reminders from team to complete physician responsibilities (e.g. talk to family, enter orders)\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP1-3a\",\"name\":\"Understands the roles and responsibilities of all team members but uses them ineffectively\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP1-3b\",\"name\":\"Participates in team discussions when required but does not actively seek input from other team members\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP1-4a\",\"name\":\"Understands the roles and responsibilities of and effectively partners with, all members of the team\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP1-4b\",\"name\":\"Actively engages in team meetings and collaborative decision-making\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP1-5a\",\"name\":\"Integrates all members of the team into the care of patients, such that each is able to maximize their skills in the care of the patient\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP1-5b\",\"name\":\"Efficiently coordinates activities of other team members to optimize care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP1-5c\",\"name\":\"Viewed by other team members as a leader in the delivery of high quality care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP2-1a\",\"name\":\"Ignores a risk for error within the system that may impact the care of a patient\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP2-1b\",\"name\":\"Ignores feedback and is unwilling to change behavior in order to reduce the risk for error\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP2-2a\",\"name\":\"Does not recognize the potential for system error\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP2-2b\",\"name\":\"Makes decisions that could lead to error which are otherwise corrected by the system or supervision\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP2-2c\",\"name\":\"Resistant to feedback about decisions that may lead to error or otherwise cause harm\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP2-3a\",\"name\":\"Recognizes the potential for error within the system\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP2-3b\",\"name\":\"Identifies obvious or critical causes of error and notifies supervisor accordingly\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP2-3c\",\"name\":\"Recognizes the potential risk for error in the immediate system and takes necessary steps to mitigate that risk\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP2-3d\",\"name\":\"Willing to receive feedback about decisions that may lead to error or otherwise cause harm\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP2-4a\",\"name\":\"Identifies systemic causes of medical error and navigates them to provide safe patient care|\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP2-4b\",\"name\":\"Advocates for safe patient care and optimal patient care systems\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP2-4c\",\"name\":\"Activates formal system resources to investigate and mitigate real or potential medical error\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP2-4d\",\"name\":\"Reflects upon and learns from own critical incidents that may lead to medical error\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP2-5a\",\"name\":\"Advocates for system leadership to formally engage in quality assurance and quality improvement activities\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP2-5b\",\"name\":\"Viewed as a leader in identifying and advocating for the prevention of medical error\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP2-5c\",\"name\":\"Teaches others regarding the importance of recognizing and mitigating system error\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP3-1a\",\"name\":\"Ignores cost issues in the provision of care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP3-1b\",\"name\":\"Demonstrates no effort to overcome barriers to cost- effective care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP3-2a\",\"name\":\"Lacks awareness of external factors (e.g. socio- economic, cultural, literacy, insurance status) that impact the cost of health care and the role that external stakeholders (e.g. providers, suppliers, financers, purchasers) have on the cost of care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP3-2b\",\"name\":\"Does not consider limited health care resources when ordering diagnostic or therapeutic interventions\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP3-3a\",\"name\":\"Recognizes that external factors influence a patient\\u00e2\\u0080\\u0099s utilization of health care and may act as barriers to cost-effective care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP3-3b\",\"name\":\"Minimizes unnecessary diagnostic and therapeutic tests\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP3-3c\",\"name\":\"Possesses an incomplete understanding of cost- awareness principles for a population of patients (e.g. screening tests)\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP3-4a\",\"name\":\"Consistently works to address patient specific barriers to cost- effective care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP3-4b\",\"name\":\"Advocates for cost-conscious utilization of resources (i.e. emergency department visits, hospital readmissions)\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP3-4c\",\"name\":\"Incorporates cost-awareness principles into standard clinical judgments and decision-making, including screening tests\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP3-5a\",\"name\":\"Teaches patients and healthcare team members to recognize and address common barriers to cost-effective care and appropriate utilization of resources\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP3-5b\",\"name\":\"Actively participates in initiatives and care delivery models designed to overcome or mitigate barriers to cost- effective high quality care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP4-1a\",\"name\":\"Disregards need for communication at time of transition\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP4-1b\",\"name\":\"Does not respond to requests of caregivers in other delivery systems\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP4-2a\",\"name\":\"Inconsistently utilizes available resources to coordinate and ensure safe and effective patient care within and across delivery systems\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP4-2b\",\"name\":\"Written and verbal care plans during times of transition are incomplete or absent\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP4-2c\",\"name\":\"Inefficient transitions of care lead to unnecessary expense or risk to a patient (e.g. duplication of tests readmission)\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP4-3a\",\"name\":\"Recognizes the importance of communication during times of transition\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP4-3b\",\"name\":\"Communication with future caregivers is present but with lapses in pertinent or timely information\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP4-4a\",\"name\":\"Appropriately utilizes available resources to coordinate care and ensures safe and effective patient care within and across delivery systems\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP4-4b\",\"name\":\"Proactively communicates with past and future care givers to ensure continuity of care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP4-5a\",\"name\":\"Coordinates care within and across health delivery systems to optimize patient safety, increase efficiency and ensure high quality patient outcomes\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP4-5b\",\"name\":\"Anticipates needs of patient, caregivers and future care providers and takes appropriate steps to address those needs\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"},{\"abbrev\":\"SBP4-5c\",\"name\":\"Role models and teaches effective transitions of care\",\"average\":null,\"peer\":null,\"range\":null,\"questions\":null,\"achieveStr\":null,\"achieved\":\"na\"}]}"}],"_postman_id":"2c38fa49-0575-49b5-87df-6a4a4e360656"},{"name":"evals/post","id":"72387f33-339b-4b84-8041-cc729f6ad303","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"evaluationID\":\"5419\",\"evaluation_type\":5,\"evaluator_userID\":77116,\"evaluatee_userID\":97927,\"programID\":481,\"answers\":[{\"questionID\":98508,\"answer_optionID\":2199},{\"questionID\":98509,\"answer_optionID\":2200},{\"questionID\":98510,\"answer_text\":\"Example comment about resident.\"}]}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/post","description":"<p>Posts a completed evaluation into the MedHub database. </p>\n<ul><li>This call cannot be used to deliver/submit an incomplete evaluation.</li><li>This call requires valid answers for all evaluation questions marked as required.</li></ul>\n\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>evaluationID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>evaluation_type</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.00</td>\n        <td>Use evals/types to get a list of all available evaluation type IDs.</td>\n    </tr>\n    <tr>\n        <td>evaluator_userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>integer</td>\n        <td>Yes*</td>\n        <td>v1.00</td>\n        <td>Delivering programID required if courseID is not specified.</td>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>integer</td>\n        <td>Yes*</td>\n        <td>v1.06</td>\n        <td>Delivering courseID required if programID is not specified.</td>\n    </tr>\n    <tr>\n        <td>evaluatee_userID</td>\n        <td>integer</td>\n        <td>Yes*</td>\n        <td>v1.00</td>\n        <td>Required for all evaluation types where the target is a person.</td>\n    </tr>\n    <tr>\n        <td>procedureID</td>\n        <td>integer</td>\n        <td>No*</td>\n        <td>v1.00</td>\n        <td>Required only for evaluations of procedures.</td>\n    </tr>\n    <tr>\n        <td>lectureID</td>\n        <td>integer</td>\n        <td>No*</td>\n        <td>v1.00</td>\n        <td>Required only for evaluations of conferences</td>\n    </tr>\n    <tr>\n        <td>globalserviceID</td>\n        <td>integer</td>\n        <td>No*</td>\n        <td>v1.00</td>\n        <td>For evaluations of services, either globalserviceID or clinicnameID is required.</td>\n    </tr>\n    <tr>\n        <td>clinicnameID</td>\n        <td>integer</td>\n        <td>No*</td>\n        <td>v1.00</td>\n        <td>For evaluations of services, either globalserviceID or clinicnameID is required.</td>\n    </tr>\n    <tr>\n        <td>rotation_start_date</td>\n        <td>date</td>\n        <td>No</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>rotation_end_date</td>\n        <td>date</td>\n        <td>No</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>issue_date</td>\n        <td>date</td>\n        <td>No</td>\n        <td>v1.00</td>\n        <td>Defaults to today's date if not provided.</td>\n    </tr>\n    <tr>\n        <td>completion_date</td>\n        <td>date</td>\n        <td>No</td>\n        <td>v1.00</td>\n        <td>Defaults to today's date if not provided.</td>\n    </tr>\n    <tr>\n        <td>signature</td>\n        <td>string</td>\n        <td>No</td>\n        <td>v1.16</td>\n        <td>Electronic signature text, if signed.</td>\n    </tr>\n    <tr>\n        <td>answers</td>\n        <td>array</td>\n        <td>Yes</td>\n        <td>v1.00</td>\n        <td>Array containing answers to the evaluation questions. The array will need to include the following:<ul><li>questionID</li><ul><li><b>Data Type:</b> integer</li><li><b>Version:</b> v1.00</li><li><b>Description:</b> unique identifier for evaluation question. Use evals/questions to get a list of all of the questions on a given evaluation.</li></ul><li>answer_optionID<ul><li><b>Data Type:</b> integer</li><li><b>Version:</b> v1.00</li><li><b>Description:</b> answer to option-based questions (e.g. scale questions). Use evals/questions to get a list of all the options for each question on a given evaluation.</li></ul></li><li>answer_text<ul><li><b>Data Type:</b> string</li><li><b>Version:</b> v1.00</li><li><b>Description:</b> answer for text-based questions (e.g. comments)</li></ul></li></ul></td>\n    </tr>\n    <tr>\n        <td>status</td>\n        <td>integer</td>\n        <td>No</td>\n        <td>v1.06</td>\n        <td>Indentifies the status of the evaluation.  Values:<ul><li>0 = incomplete</li><li>1 = saved</li><li>3 = submitted</li></ul><em>Note, defaults to 3 if not provided.</em></td>\n    </tr>\n    <tr>\n        <td>responseID</td>\n        <td>integer</td>\n        <td>No</td>\n        <td>v1.12</td>\n        <td>Include when submitting answers for a previously delivered evaluation with a known responseID. <em>When passing a responseID, no other input variables are required other than answers and status.</em></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>responseID</td>\n        <td>unique identifier for an evaluation response</td>\n        <td>integer</td>\n        <td>v1.00</td>\n        <td>Value = \"0\" if submission failed.</td>\n    </tr>\n    <tr>\n        <td>status_code</td>\n        <td>identifies the status of the evaluation</td>\n        <td>integer</td>\n        <td>v1.12</td>\n        <td>Values:<ul><li>0 = incomplete</li><li>1 = saved</li><li>3 = submitted</li></ul></td>\n    </tr>\n</table>","urlObject":{"path":["evals","post"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"7cad4b12-a224-497b-8f40-f032acf6d0f5","name":"evals/post","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"evaluationID\":\"5419\",\"evaluation_type\":5,\"evaluator_userID\":77116,\"evaluatee_userID\":97927,\"programID\":481,\"answers\":[{\"questionID\":98508,\"answer_optionID\":2199},{\"questionID\":98509,\"answer_optionID\":2200},{\"questionID\":98510,\"answer_text\":\"Example comment about resident.\"}]}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/post"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 17:25:09 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"responseID\": 661705,\n    \"status_code\": 3,\n    \"status_title\": \"Complete\"\n}"}],"_postman_id":"72387f33-339b-4b84-8041-cc729f6ad303"},{"name":"evals/progress","id":"188d7d8b-c9dc-4717-b629-f96957d70116","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"programID\":481,\"userID\":97927,\"year\":\"2019\",\"half\":\"1\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/progress","description":"<p>Retrieves the progress report scores for a specified resident and review period.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.01</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.01</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>year</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.01</td>\n        <td>Format: 4-digit year (e.g. 2020)</td>\n    </tr>\n    <tr>\n        <td>half</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.01</td>\n        <td>Values: \"1\", \"2\"</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>milestone_refID</td>\n        <td>unique identifier for milestone</td>\n        <td>integer</td>\n        <td>v1.01</td>\n        <td>Use evals/milestones to get a list of all milestones.</td>\n    </tr>\n    <tr>\n        <td>level</td>\n        <td>dreyfus level achieved by user on milestone</td>\n        <td>float</td>\n        <td>v1.01</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>notes</td>\n        <td>evaluation response title</td>\n        <td>string</td>\n        <td>v1.01</td>\n        <td>CCC notes (private).</td>\n    </tr>\n    <tr>\n        <td>status</td>\n        <td>status of report</td>\n        <td>string</td>\n        <td>v1.01</td>\n        <td>Values: \"Draft\" or \"Final\".</td>\n    </tr>\n</table>","urlObject":{"path":["evals","progress"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"be8f5e94-4e39-4567-8a9b-ff07391ed681","name":"evals/progress","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"programID\":481,\"userID\":97927,\"year\":\"2019\",\"half\":\"1\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/progress"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 17:39:42 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"milestone_refID\": null,\n        \"level\": \"3.5\",\n        \"notes\": \"\",\n        \"status\": \"Final\"\n    },\n    {\n        \"milestone_refID\": null,\n        \"level\": \"5.0\",\n        \"notes\": \"\",\n        \"status\": \"Final\"\n    },\n    {\n        \"milestone_refID\": null,\n        \"level\": \"5.0\",\n        \"notes\": \"\",\n        \"status\": \"Final\"\n    },\n    {\n        \"milestone_refID\": null,\n        \"level\": \"5.0\",\n        \"notes\": \"\",\n        \"status\": \"Final\"\n    },\n    {\n        \"milestone_refID\": null,\n        \"level\": \"-1.0\",\n        \"notes\": \"Testing to see if there are notes that are able to be seen by resident.\",\n        \"status\": \"Final\"\n    }\n]"}],"_postman_id":"188d7d8b-c9dc-4717-b629-f96957d70116"},{"name":"evals/status","id":"fdc66cbd-e1b1-4b3c-9d32-6205f07f9887","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"responseID\":654050}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/status","description":"<p>Retrieves the status of an evaluation request.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>responseID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>status_code</td>\n        <td>number representing hte current status of an evaluation request</td>\n        <td>integer</td>\n        <td>v1.00</td>\n        <td>Values:<ul><li>0 = incomplete</li><li>1 = partially complete</li><li>3 = complete</li><li>4 = complete - tiered contributor</li><li>5 = complete - tiered ...</li></ul></td>\n    </tr>\n    <tr>\n        <td>status_title</td>\n        <td>status description</td>\n        <td>string</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n</table></table>","urlObject":{"path":["evals","status"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"a0a9df8c-b676-43b3-94d9-e43c46e3bf5e","name":"evals/status","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"responseID\":654050}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 Oct 2020 13:10:36 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"status_code\": \"0\",\n    \"status_title\": \"Incomplete\"\n}"}],"_postman_id":"fdc66cbd-e1b1-4b3c-9d32-6205f07f9887"},{"name":"evals/incomplete","id":"41773057-b281-4956-8585-0c6cb897357d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\":97927}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/incomplete","description":"<p>Retrieves a list of incomplete evaluations for a specified users.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>yes</td>\n        <td>v0.90</td>\n        <td></td>\n    \n</table>\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>responseID</td>\n        <td>unique response identifier</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>evaluationID</td>\n        <td>unique evaluation identifier</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>eval_type</td>\n        <td>evaluation type identifier</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td>use evals/types to get a list of all available evaluation types</td>\n    </tr>\n    <tr>\n        <td>status</td>\n        <td>status of evaluation</td>\n        <td>string</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>   \n        <td>eval_title</td>\n        <td>title of the evaluation response</td>\n        <td>string</td>\n        <td>v1.16</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>issue_date</td>\n        <td>date the evaluation was issued</td>\n        <td>date</td>\n        <td>v1.16</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>late_date</td>\n        <td>date when the evaluation is considered late</td>\n        <td>date</td>\n        <td>v1.16</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>can_remove</td>\n        <td>evaluation can be deleted</td>\n        <td>boolean</td>\n        <td>v1.16</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>remove_req_comment</td>\n        <td>deletion requires an additional comment</td>\n        <td>boolean</td>\n        <td>v1.16</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>must_sign</td>\n        <td>must be signed electronically</td>\n        <td>boolean</td>\n        <td>v1.16</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["evals","incomplete"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"d465d514-cb20-4276-b180-eb91ed14029b","name":"evals/incomplete","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":97927}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/incomplete"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 Oct 2020 13:06:49 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"responseID\": \"643254\",\n        \"evaluationID\": \"1956\",\n        \"eval_type\": \"0\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Guest Speaker Evaluation\",\n        \"issue_date\": \"2019-04-09\",\n        \"late_date\": \"2019-04-16\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640587\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"1\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Avery, Miyako - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-03-12\",\n        \"late_date\": \"2019-03-19\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640585\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"1\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Avery, Miyako - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-03-08\",\n        \"late_date\": \"2019-03-15\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640586\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"1\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Avery, Miyako - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-03-10\",\n        \"late_date\": \"2019-03-17\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640799\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Armstrong, Mandi - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-03-08\",\n        \"late_date\": \"2019-03-15\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640525\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Armstrong, Mandi - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-03-04\",\n        \"late_date\": \"2019-03-11\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640911\",\n        \"evaluationID\": \"3577\",\n        \"eval_type\": \"1\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Armstrong, Hanna - Resident Evaluation 2016\",\n        \"issue_date\": \"2019-03-19\",\n        \"late_date\": \"2019-03-26\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"643196\",\n        \"evaluationID\": \"3752\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Armstrong, Mandi - Resident of Faculty (milestone scale test) \",\n        \"issue_date\": \"2019-04-05\",\n        \"late_date\": \"2019-04-12\",\n        \"can_remove\": false,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640778\",\n        \"evaluationID\": \"346\",\n        \"eval_type\": \"1\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Boyer, Noel - Peer Evaluation (2014-2015)\",\n        \"issue_date\": \"2019-03-08\",\n        \"late_date\": \"2019-03-15\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"649545\",\n        \"evaluationID\": \"346\",\n        \"eval_type\": \"1\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Armstrong, Hanna - Peer Evaluation (2014-2015)\",\n        \"issue_date\": \"2019-06-18\",\n        \"late_date\": \"2019-06-25\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634112\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Beaman, Jordan - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634184\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burger, Tova - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634220\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burke, Allison - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634256\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burke, Rema - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634292\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Callahan, Jeanne - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634328\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Carlson, Cicely - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634364\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Case, Emi - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634400\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Clark, Nicole - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634436\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Cley, Kimberly - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634580\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Abbott, Selina - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634616\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Alvarez, Mel - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634652\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bowers, Pauletta - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634688\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Abrams, Paige - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634724\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Clemons, Madie - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634760\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Anglind, Jamal - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634796\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Partially Complete\",\n        \"eval_title\": \"Dr. Barnhart, Cole - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634832\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Britt, Adeline - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634873\",\n        \"evaluationID\": \"975\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Abbott, Selina - Behavioral Change Clinic Evaluation\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634900\",\n        \"evaluationID\": \"975\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Alvarez, Mel - Behavioral Change Clinic Evaluation\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634927\",\n        \"evaluationID\": \"975\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Armstrong, Mandi - Behavioral Change Clinic Evaluation\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634954\",\n        \"evaluationID\": \"975\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bowers, Pauletta - Behavioral Change Clinic Evaluation\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"634981\",\n        \"evaluationID\": \"975\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Abrams, Paige - Behavioral Change Clinic Evaluation\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635008\",\n        \"evaluationID\": \"975\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Clemons, Madie - Behavioral Change Clinic Evaluation\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635035\",\n        \"evaluationID\": \"975\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Anglind, Jamal - Behavioral Change Clinic Evaluation\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635062\",\n        \"evaluationID\": \"975\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Barnhart, Cole - Behavioral Change Clinic Evaluation\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635089\",\n        \"evaluationID\": \"975\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Bacone, Terri - Behavioral Change Clinic Evaluation\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635115\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Armstrong, Mandi - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635139\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Bacone, Terri - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635163\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Barney, Leoma - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635187\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Beaman, Jordan - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635211\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Beaman, Jordan - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635235\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bennett, Valerie - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635259\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burger, Tova - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635283\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burke, Allison - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635307\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burke, Rema - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635331\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Callahan, Jeanne - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635355\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Carlson, Cicely - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635379\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Abbott, Selina - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635403\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Alvarez, Mel - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635427\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bowers, Pauletta - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635451\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Abrams, Paige - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635475\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Clemons, Madie - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635499\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Anglind, Jamal - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635523\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Barnhart, Cole - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635547\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Britt, Adeline - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635571\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Case, Emi - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635595\",\n        \"evaluationID\": \"4122\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Clark, Nicole - AOTEST - Didactic Evaluation Form, UW Radiation Oncology\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635627\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Armstrong, Mandi - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635661\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Bacone, Terri - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635695\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Barney, Leoma - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635729\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Beaman, Jordan - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635763\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Beaman, Jordan - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635797\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bennett, Valerie - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635831\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burger, Tova - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635865\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burke, Allison - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635899\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burke, Rema - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635933\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Callahan, Jeanne - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"635967\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Carlson, Cicely - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636001\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Case, Emi - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636069\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Cley, Kimberly - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636103\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Cline, Aki - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636137\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Coburn, Keely - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636171\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Corbett, Particia - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636205\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bowers, Pauletta - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636239\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Abrams, Paige - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636273\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Clemons, Madie - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636307\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Anglind, Jamal - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636341\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Barnhart, Cole - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636375\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Alvarez, Mel - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636409\",\n        \"evaluationID\": \"977\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Britt, Adeline - AMBULATORY - PSYCHIATRY CLINIC (2014-2015) Res of Att\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636529\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Armstrong, Mandi - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636566\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Bacone, Terri - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636603\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Barney, Leoma - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636640\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Beaman, Jordan - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636677\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Beaman, Jordan - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636714\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bennett, Valerie - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636751\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burger, Tova - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636788\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burke, Allison - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636825\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burke, Rema - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636862\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Callahan, Jeanne - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636899\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Abbott, Selina - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636936\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Alvarez, Mel - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"636973\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bowers, Pauletta - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"637010\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Abrams, Paige - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"637047\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Clemons, Madie - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"637084\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Anglind, Jamal - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"637121\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Barnhart, Cole - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"637158\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Britt, Adeline - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"637195\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Carlson, Cicely - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"637232\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Case, Emi - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"637269\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Clark, Nicole - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638051\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Armstrong, Mandi - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638082\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Bacone, Terri - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638113\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Barney, Leoma - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638144\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Beaman, Jordan - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638175\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Beaman, Jordan - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638206\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bennett, Valerie - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638237\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burger, Tova - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638268\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burke, Allison - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638299\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burke, Rema - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638330\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Callahan, Jeanne - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638361\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Carlson, Cicely - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638392\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Case, Emi - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638423\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Clark, Nicole - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638454\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Cley, Kimberly - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638485\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Cline, Aki - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638516\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Coburn, Keely - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638547\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Corbett, Particia - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638578\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Corona, Janean - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638609\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Costello, Madie - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638640\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Cowart, Lucy - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638671\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Curran, Kent - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638702\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Darnell, Cherish - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638733\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Dean, James - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638764\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Abbott, Selina - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638795\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Alvarez, Mel - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638826\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bowers, Pauletta - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638857\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Abrams, Paige - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638888\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Clemons, Madie - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638919\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Anglind, Jamal - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638950\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Barnhart, Cole - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"638981\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Britt, Adeline - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639014\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Armstrong, Mandi - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639045\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Bacone, Terri - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639076\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Barney, Leoma - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639107\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Beaman, Jordan - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639138\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Beaman, Jordan - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639169\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bennett, Valerie - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639200\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burger, Tova - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639231\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burke, Allison - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639262\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burke, Rema - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639293\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Callahan, Jeanne - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639324\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Carlson, Cicely - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639355\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Case, Emi - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639386\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Abbott, Selina - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639417\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Alvarez, Mel - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639448\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bowers, Pauletta - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639510\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Clemons, Madie - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639572\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Barnhart, Cole - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639603\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Britt, Adeline - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639634\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Clark, Nicole - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639666\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Armstrong, Mandi - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639702\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Bacone, Terri - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639738\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Barney, Leoma - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639774\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Beaman, Jordan - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639810\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Beaman, Jordan - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639846\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bennett, Valerie - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639882\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burger, Tova - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639918\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burke, Allison - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639954\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burke, Rema - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"639990\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Abbott, Selina - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640026\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Alvarez, Mel - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640062\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bowers, Pauletta - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640098\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Abrams, Paige - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640134\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Clemons, Madie - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640170\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Anglind, Jamal - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640206\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Barnhart, Cole - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640242\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Britt, Adeline - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640278\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Callahan, Jeanne - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640314\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Carlson, Cicely - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640350\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Case, Emi - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640386\",\n        \"evaluationID\": \"3591\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Clark, Nicole - Anon\",\n        \"issue_date\": \"2019-02-21\",\n        \"late_date\": \"2019-02-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640846\",\n        \"evaluationID\": \"4711\",\n        \"eval_type\": \"2\",\n        \"status\": \"Partially Complete\",\n        \"eval_title\": \" Mandi Armstrong - Test - Bare Minimum\",\n        \"issue_date\": \"2019-03-13\",\n        \"late_date\": \"2019-03-20\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640860\",\n        \"evaluationID\": \"2625\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Armstrong, Mandi - Floors/Units - Resident Evaluation of Attending \",\n        \"issue_date\": \"2019-03-14\",\n        \"late_date\": \"2019-03-21\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640862\",\n        \"evaluationID\": \"2996\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Burke, Rema - Addiction and Recovery Clinic Rotation YPCOC (2014-2015)\",\n        \"issue_date\": \"2019-03-18\",\n        \"late_date\": \"2019-03-25\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640883\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"1\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Adams, Beryl - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-03-18\",\n        \"late_date\": \"2019-03-25\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"653855\",\n        \"evaluationID\": \"3577\",\n        \"eval_type\": \"1\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bell-Cordor, Ashley - Resident Evaluation 2016\",\n        \"issue_date\": \"2019-12-30\",\n        \"late_date\": \"2020-01-06\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640976\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Armstrong, Mandi - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-03-28\",\n        \"late_date\": \"2019-04-04\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"640982\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Barney, Leoma - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-03-28\",\n        \"late_date\": \"2019-04-04\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"643656\",\n        \"evaluationID\": \"4253\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Beaman, Jordan - Becky's Test Evaluation\",\n        \"issue_date\": \"2019-05-06\",\n        \"late_date\": \"2019-05-13\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": true\n    },\n    {\n        \"responseID\": \"643658\",\n        \"evaluationID\": \"4253\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bocian, Matthew - Becky's Test Evaluation\",\n        \"issue_date\": \"2019-05-06\",\n        \"late_date\": \"2019-05-13\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": true\n    },\n    {\n        \"responseID\": \"643654\",\n        \"evaluationID\": \"4253\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Bacone, Terri - Becky's Test Evaluation\",\n        \"issue_date\": \"2019-05-06\",\n        \"late_date\": \"2019-05-13\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": true\n    },\n    {\n        \"responseID\": \"643625\",\n        \"evaluationID\": \"4827\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Armstrong, Mandi - Infection Control\",\n        \"issue_date\": \"2019-04-26\",\n        \"late_date\": \"2019-05-03\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"643630\",\n        \"evaluationID\": \"2806\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Armstrong, Mandi - AMBULATORY - PRE-OP CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2019-05-01\",\n        \"late_date\": \"2019-05-08\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"642941\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Abbott, Selina - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-04-15\",\n        \"late_date\": \"2019-04-22\",\n        \"can_remove\": false,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"642968\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Alvarez, Mel - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-04-15\",\n        \"late_date\": \"2019-04-22\",\n        \"can_remove\": false,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"642995\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Armstrong, Mandi - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-04-15\",\n        \"late_date\": \"2019-04-22\",\n        \"can_remove\": false,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"643022\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bowers, Pauletta - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-04-15\",\n        \"late_date\": \"2019-04-22\",\n        \"can_remove\": false,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"643049\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Abrams, Paige - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-04-15\",\n        \"late_date\": \"2019-04-22\",\n        \"can_remove\": false,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"643076\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Clemons, Madie - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-04-15\",\n        \"late_date\": \"2019-04-22\",\n        \"can_remove\": false,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"643130\",\n        \"evaluationID\": \"4601\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Barnhart, Cole - 'YOU ARE AWESOME!!'  (Copy) (Copy)\",\n        \"issue_date\": \"2019-04-15\",\n        \"late_date\": \"2019-04-22\",\n        \"can_remove\": false,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"644104\",\n        \"evaluationID\": \"417\",\n        \"eval_type\": \"21\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Aaron, Tanya - Faculty/Resident Evaluation of Medical Student \",\n        \"issue_date\": \"2019-05-09\",\n        \"late_date\": \"2019-05-23\",\n        \"can_remove\": true,\n        \"remove_req_comment\": false,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"661811\",\n        \"evaluationID\": \"101\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Armstrong, Mandi - Floors/Units - Resident Evaluation of Attending \",\n        \"issue_date\": \"2020-09-28\",\n        \"late_date\": \"2020-10-05\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"661810\",\n        \"evaluationID\": \"975\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Armstrong, Mandi - Behavioral Change Clinic Evaluation\",\n        \"issue_date\": \"2020-09-28\",\n        \"late_date\": \"2020-10-05\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"661809\",\n        \"evaluationID\": \"4827\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Armstrong, Mandi - Infection Control\",\n        \"issue_date\": \"2020-09-28\",\n        \"late_date\": \"2020-10-05\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"661807\",\n        \"evaluationID\": \"4378\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Armstrong, Mandi - Resident Evaluation of Faculty 2020-2021\",\n        \"issue_date\": \"2020-09-28\",\n        \"late_date\": \"2020-10-05\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"661806\",\n        \"evaluationID\": \"4378\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Armstrong, Mandi - Resident Evaluation of Faculty 2020-2021\",\n        \"issue_date\": \"2020-09-28\",\n        \"late_date\": \"2020-10-05\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"649127\",\n        \"evaluationID\": \"4166\",\n        \"eval_type\": \"21\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Kelly, Cindy - AOTEST 2 - Concern Evaluation\",\n        \"issue_date\": \"2019-05-14\",\n        \"late_date\": \"2019-05-21\",\n        \"can_remove\": true,\n        \"remove_req_comment\": false,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"649129\",\n        \"evaluationID\": \"4166\",\n        \"eval_type\": \"21\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Solo, Han - AOTEST 2 - Concern Evaluation\",\n        \"issue_date\": \"2019-05-14\",\n        \"late_date\": \"2019-05-21\",\n        \"can_remove\": true,\n        \"remove_req_comment\": false,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"649130\",\n        \"evaluationID\": \"4166\",\n        \"eval_type\": \"21\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Student_Outside, Test - AOTEST 2 - Concern Evaluation\",\n        \"issue_date\": \"2019-05-14\",\n        \"late_date\": \"2019-05-21\",\n        \"can_remove\": true,\n        \"remove_req_comment\": false,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"649809\",\n        \"evaluationID\": \"4753\",\n        \"eval_type\": \"21\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Agee, Johnna A - Resident Evaluation of Student TESTx\",\n        \"issue_date\": \"2019-06-19\",\n        \"late_date\": \"2019-06-26\",\n        \"can_remove\": true,\n        \"remove_req_comment\": false,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"649810\",\n        \"evaluationID\": \"4753\",\n        \"eval_type\": \"21\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Junker, Gus - Resident Evaluation of Student TESTx\",\n        \"issue_date\": \"2019-06-19\",\n        \"late_date\": \"2019-06-26\",\n        \"can_remove\": true,\n        \"remove_req_comment\": false,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"649811\",\n        \"evaluationID\": \"4753\",\n        \"eval_type\": \"21\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Kelly, Cindy - Resident Evaluation of Student TESTx\",\n        \"issue_date\": \"2019-06-19\",\n        \"late_date\": \"2019-06-26\",\n        \"can_remove\": true,\n        \"remove_req_comment\": false,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"649812\",\n        \"evaluationID\": \"4753\",\n        \"eval_type\": \"21\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Spaulding, Ninja - Resident Evaluation of Student TESTx\",\n        \"issue_date\": \"2019-06-19\",\n        \"late_date\": \"2019-06-26\",\n        \"can_remove\": true,\n        \"remove_req_comment\": false,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"649813\",\n        \"evaluationID\": \"4753\",\n        \"eval_type\": \"21\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Test, Test - Resident Evaluation of Student TESTx\",\n        \"issue_date\": \"2019-06-19\",\n        \"late_date\": \"2019-06-26\",\n        \"can_remove\": true,\n        \"remove_req_comment\": false,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"649814\",\n        \"evaluationID\": \"4753\",\n        \"eval_type\": \"21\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Thompson, Becky - Resident Evaluation of Student TESTx\",\n        \"issue_date\": \"2019-06-19\",\n        \"late_date\": \"2019-06-26\",\n        \"can_remove\": true,\n        \"remove_req_comment\": false,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"649815\",\n        \"evaluationID\": \"4753\",\n        \"eval_type\": \"21\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Wheeler, Adam - Resident Evaluation of Student TESTx\",\n        \"issue_date\": \"2019-06-19\",\n        \"late_date\": \"2019-06-26\",\n        \"can_remove\": true,\n        \"remove_req_comment\": false,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"649954\",\n        \"evaluationID\": \"3405\",\n        \"eval_type\": \"11\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Abbott, Katrina - Test Conference Form: Morning Reports (06/03/19)\",\n        \"issue_date\": \"2019-07-01\",\n        \"late_date\": \"2019-07-08\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"650635\",\n        \"evaluationID\": \"4249\",\n        \"eval_type\": \"4\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Evaluation of program/hospital test 4/10/17\",\n        \"issue_date\": \"2019-07-31\",\n        \"late_date\": \"2019-08-07\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"650825\",\n        \"evaluationID\": \"5257\",\n        \"eval_type\": \"11\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Friday Morning Conference (06/21/19) - Conf\",\n        \"issue_date\": \"2019-08-28\",\n        \"late_date\": \"2019-09-04\",\n        \"can_remove\": true,\n        \"remove_req_comment\": false,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"654050\",\n        \"evaluationID\": \"101\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bacone, Terri - Floors/Units - Resident Evaluation of Attending \",\n        \"issue_date\": \"2020-02-14\",\n        \"late_date\": \"2020-02-21\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"653806\",\n        \"evaluationID\": \"3577\",\n        \"eval_type\": \"1\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Armstrong, Hanna - Resident Evaluation 2016\",\n        \"issue_date\": \"2019-11-15\",\n        \"late_date\": \"2019-11-22\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"653822\",\n        \"evaluationID\": \"4770\",\n        \"eval_type\": \"1\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. AppTester, Benjamin - **360 Evaluation of Resident**\",\n        \"issue_date\": \"2019-12-03\",\n        \"late_date\": \"2019-12-10\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"654102\",\n        \"evaluationID\": \"3584\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Armstrong, Mandi - Milestone eval Character Limit test\",\n        \"issue_date\": \"2020-03-24\",\n        \"late_date\": \"2020-03-31\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"656659\",\n        \"evaluationID\": \"2062\",\n        \"eval_type\": \"11\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Wednesday Morning Conferences (03/04/20) - Ambulatory Conference \",\n        \"issue_date\": \"2020-04-02\",\n        \"late_date\": \"2020-04-09\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"656717\",\n        \"evaluationID\": \"1430\",\n        \"eval_type\": \"12\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Self Evaluation - Moonlighting Attestation - Primary Care (J-1 Visa)\",\n        \"issue_date\": \"2020-04-02\",\n        \"late_date\": \"2020-04-09\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"658759\",\n        \"evaluationID\": \"2951\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Bowers, Pauletta - AMBULATORY - ADDICTION CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2020-04-27\",\n        \"late_date\": \"2020-05-04\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"658818\",\n        \"evaluationID\": \"2951\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Abrams, Paige - AMBULATORY - ADDICTION CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2020-04-27\",\n        \"late_date\": \"2020-05-04\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"658936\",\n        \"evaluationID\": \"2951\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Anglind, Jamal - AMBULATORY - ADDICTION CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2020-04-27\",\n        \"late_date\": \"2020-05-04\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"658995\",\n        \"evaluationID\": \"2951\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Armstrong, Mandi - AMBULATORY - ADDICTION CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2020-04-27\",\n        \"late_date\": \"2020-05-04\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"659054\",\n        \"evaluationID\": \"2951\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Alvarez, Mel - AMBULATORY - ADDICTION CLINIC (2014-2015) Res of Att \",\n        \"issue_date\": \"2020-04-27\",\n        \"late_date\": \"2020-05-04\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    },\n    {\n        \"responseID\": \"659151\",\n        \"evaluationID\": \"4378\",\n        \"eval_type\": \"2\",\n        \"status\": \"Incomplete\",\n        \"eval_title\": \"Dr. Armstrong, Mandi - Resident Evaluation of Faculty 2018-2019\",\n        \"issue_date\": \"2020-04-21\",\n        \"late_date\": \"2020-04-28\",\n        \"can_remove\": true,\n        \"remove_req_comment\": true,\n        \"must_sign\": false\n    }\n]"}],"_postman_id":"41773057-b281-4956-8585-0c6cb897357d"},{"name":"evals/types","id":"ea6456eb-b755-4b1c-91b5-cae8f3fb8280","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\":97927}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/types","description":"<p>Retrieves a list of all possible evaluation types.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>N/A</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>typeID</td>\n        <td>unique evaluation type identifier</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>type_name</td>\n        <td>name of evaluation type</td>\n        <td>string</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["evals","types"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"780623e9-b6e6-456f-9f54-57f00d8b6de0","name":"evals/types","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":97927}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/evals/types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 02 Oct 2020 13:14:31 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"typeID\": 1,\n        \"type_name\": \"Resident evaluation of other resident (peer)\"\n    },\n    {\n        \"typeID\": 2,\n        \"type_name\": \"Resident evaluation of faculty member\"\n    },\n    {\n        \"typeID\": 3,\n        \"type_name\": \"Resident evaluation of a service/clinic\"\n    },\n    {\n        \"typeID\": 4,\n        \"type_name\": \"Resident evaluation of program/hospital\"\n    },\n    {\n        \"typeID\": 5,\n        \"type_name\": \"Faculty evaluation of a resident\"\n    },\n    {\n        \"typeID\": 6,\n        \"type_name\": \"Faculty evaluation of a service/clinic\"\n    },\n    {\n        \"typeID\": 7,\n        \"type_name\": \"Faculty evaluation of program/hospital\"\n    },\n    {\n        \"typeID\": 8,\n        \"type_name\": \"Patient/staff evaluation of resident\"\n    },\n    {\n        \"typeID\": 9,\n        \"type_name\": \"Patient/staff evaluation of faculty/program/hospital\"\n    },\n    {\n        \"typeID\": 10,\n        \"type_name\": \"Resident/Student/Faculty evaluation of a procedure\"\n    },\n    {\n        \"typeID\": 11,\n        \"type_name\": \"Resident/Student/Faculty evaluation of a conference\"\n    },\n    {\n        \"typeID\": 12,\n        \"type_name\": \"Resident self evaluation\"\n    },\n    {\n        \"typeID\": 13,\n        \"type_name\": \"Faculty self evaluation\"\n    },\n    {\n        \"typeID\": 14,\n        \"type_name\": \"Faculty evaluation of other faculty (peer)\"\n    },\n    {\n        \"typeID\": 15,\n        \"type_name\": \"Learning portfolio evaluation\"\n    },\n    {\n        \"typeID\": 16,\n        \"type_name\": \"Student evaluation of faculty\"\n    },\n    {\n        \"typeID\": 17,\n        \"type_name\": \"Student evaluation of resident\"\n    },\n    {\n        \"typeID\": 18,\n        \"type_name\": \"Faculty evaluation of a student\"\n    },\n    {\n        \"typeID\": 19,\n        \"type_name\": \"Student evaluation of a service/clinic\"\n    },\n    {\n        \"typeID\": 20,\n        \"type_name\": \"Student evaluation of course\"\n    },\n    {\n        \"typeID\": 21,\n        \"type_name\": \"Resident evaluation of student\"\n    },\n    {\n        \"typeID\": 22,\n        \"type_name\": \"Patient/staff evaluation of a student\"\n    },\n    {\n        \"typeID\": 23,\n        \"type_name\": \"Student evaluation of other student (peer)\"\n    },\n    {\n        \"typeID\": 24,\n        \"type_name\": \"Student self evaluation\"\n    },\n    {\n        \"typeID\": 25,\n        \"type_name\": \"Resident evaluation of staff\"\n    },\n    {\n        \"typeID\": 26,\n        \"type_name\": \"Student evaluation of school/hospital\"\n    }\n]"}],"_postman_id":"ea6456eb-b755-4b1c-91b5-cae8f3fb8280"}],"id":"83fe047e-b6cf-4a1e-9348-a2d2b6d25c83","_postman_id":"83fe047e-b6cf-4a1e-9348-a2d2b6d25c83","description":""},{"name":"Portfolios","item":[],"id":"ab509511-0089-4b79-ada2-dce44c030ee3","_postman_id":"ab509511-0089-4b79-ada2-dce44c030ee3","description":""},{"name":"Procedures","item":[{"name":"procedures/appendDiagnosis","id":"9ebf20da-fe4f-49ba-9de3-3e182c391a44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/appendDiagnosis","description":"<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>logID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>y</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use procedures/logs to retrieve existing logIDs by program, user, and/or date.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>typeID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>y</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The diagnosis typeID. Use procedures/diagnosisTypes to retrieve procedure types defined in a given program.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>writein</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>n</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If this is a custom procedure diagnosis without a defined type in the program, use this to populate the procedure name.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>role</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>y</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The role of the resident in this diagnosis. Use procedures/roles to retrieve roleIDs.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>evaluate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>boolean</div><div><div><div><div></div></div></div><div></div></div></td><td><div>n</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Set to \"true\" if this should trigger an evaluation. The evaluation must be configured appropriately in the program's settings.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr></tbody></table>","urlObject":{"path":["procedures","appendDiagnosis"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"9ebf20da-fe4f-49ba-9de3-3e182c391a44"},{"name":"procedures/appendProcedure","id":"7e8b24bf-822a-4457-b811-55d37685b578","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"logID\": 12345, \"typeID\": 6789, \"writein\": \"\", \"role\": 1, \"evaluation\": false}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/appendProcedure","description":"<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>logID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>y</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use procedures/logs to retrieve existing logIDs by program, user, and/or date.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>typeID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>y</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The procedure typeID. Use procedures/procedureTypes to retrieve procedure types defined in a given program.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>writein</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>n</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>If this is a custom procedure without a defined type in the program, use this to populate the procedure name.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>role</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>y</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The role of the resident in this procedure. Use procedures/roles to retrieve roleIDs.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>evaluate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>boolean</div><div><div><div><div></div></div></div><div></div></div></td><td><div>n</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Set to \"true\" if this procedure should trigger an evaluation. The evaluation must be configured appropriately in the program's settings.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr></tr><tr></tr></tbody></table>","urlObject":{"path":["procedures","appendProcedure"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"7e8b24bf-822a-4457-b811-55d37685b578"},{"name":"procedures/deleteDiagnosis","id":"57d97d0d-c121-4b53-865c-1e11edb29965","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/deleteDiagnosis","description":"<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>N/A</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n    </tr>\n    <tr>\n    </tr>\n</table>","urlObject":{"path":["procedures","deleteDiagnosis"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"57d97d0d-c121-4b53-865c-1e11edb29965"},{"name":"procedures/deleteProcedure","id":"a3576b3a-dd5d-4253-904c-f584ced9ba67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/deleteProcedure","description":"<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>N/A</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n    </tr>\n    <tr>\n    </tr>\n</table>","urlObject":{"path":["procedures","deleteProcedure"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"a3576b3a-dd5d-4253-904c-f584ced9ba67"},{"name":"procedures/diagnosisCounts","id":"989b3402-6dfc-4ca0-b233-70b917392e32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/diagnosisCounts","description":"<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>N/A</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n    </tr>\n    <tr>\n    </tr>\n</table>","urlObject":{"path":["procedures","diagnosisCounts"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"989b3402-6dfc-4ca0-b233-70b917392e32"},{"name":"procedures/diagnosisRequirements","id":"abdd6386-2a85-4657-8608-c0e84a81588d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\": 83558, \"programID\": 4}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/diagnosisRequirements","description":"<p>Retrieves a list of all diagnosis requirements for a resident/student in a given program/course.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td>userID</td><td>integer</td><td>yes</td><td>1.21</td><td>userID of resident or student</td></tr><tr><td>programID</td><td>integer</td><td>yes\\*</td><td>1.21</td><td>\\*required if userID is resident</td></tr><tr><td>courseID</td><td>integer</td><td>yes\\*</td><td>1.21</td><td>\\*required is userID is student</td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr></tr><tr></tr></tbody></table>","urlObject":{"path":["procedures","diagnosisRequirements"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"cd6740cb-abe3-4f2e-92a8-3151e93b9947","name":"procedures/diagnosisRequirements","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\": 83558, \"programID\": 4}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/diagnosisRequirements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 21 Jul 2023 15:26:22 GMT"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!vThTHRI3gEtDUzR7WsnXQYG5SzWDjSwqIuauWGwcWD5BYcNUBlSAo7R/igDNgVg9djiCDzdlkqpsKKw=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=16070400; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"requirement_name\": \"Diagnosis Requirement Example: Appendicitis\",\n        \"diagnosis_types\": [\n            {\n                \"typeID\": 684,\n                \"type_name\": \"Appendicitis\"\n            }\n        ],\n        \"levels\": [\n            {\n                \"level\": \"1\"\n            },\n            {\n                \"level\": \"2\"\n            },\n            {\n                \"level\": \"3\"\n            },\n            {\n                \"level\": \"4\"\n            },\n            {\n                \"level\": \"5\"\n            },\n            {\n                \"level\": \"6\"\n            },\n            {\n                \"level\": \"7\"\n            },\n            {\n                \"level\": \"8\"\n            },\n            {\n                \"level\": \"9\"\n            }\n        ],\n        \"requirements\": [\n            {\n                \"role_title\": \"Total Logged\",\n                \"count\": \"1\"\n            }\n        ]\n    }\n]"}],"_postman_id":"abdd6386-2a85-4657-8608-c0e84a81588d"},{"name":"procedures/diagnosisRequirementsProgress","id":"2ab56710-3bad-4af1-8b10-d5f2f8d46029","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/diagnosisRequirementsProgress","description":"<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>N/A</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n    </tr>\n    <tr>\n    </tr>\n</table>","urlObject":{"path":["procedures","diagnosisRequirementsProgress"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ab56710-3bad-4af1-8b10-d5f2f8d46029"},{"name":"procedures/diagnosisTypes","id":"1cfe7c49-409c-4836-91f8-2f4bba8e9a80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/diagnosisTypes","description":"<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>N/A</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n    </tr>\n    <tr>\n    </tr>\n</table>","urlObject":{"path":["procedures","diagnosisTypes"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"1cfe7c49-409c-4836-91f8-2f4bba8e9a80"},{"name":"procedures/certifications","id":"0b4a6039-2fb3-47f7-9a0a-9524044fcbcf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/certifications","description":"<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>N/A</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n    </tr>\n    <tr>\n    </tr>\n</table>","urlObject":{"path":["procedures","certifications"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b4a6039-2fb3-47f7-9a0a-9524044fcbcf"},{"name":"procedures/procedureCounts","id":"f09eabea-4d9c-4358-91af-21ab47e8e750","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/procedureCounts","description":"<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>N/A</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n    </tr>\n    <tr>\n    </tr>\n</table>","urlObject":{"path":["procedures","procedureCounts"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"f09eabea-4d9c-4358-91af-21ab47e8e750"},{"name":"procedures/locations","id":"5c24378d-1165-4297-af7b-b0d31b8ad287","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/locations","description":"<p>Returns a list of all available procedure locations.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>integer</td>\n        <td>yes*</td>\n        <td>v1.17</td>\n        <td>*required if courseID not provided</td>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>integer</td>\n        <td>yes*</td>\n        <td>v1.17</td>\n        <td>*required if programID not provided</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>locationID</td>\n        <td>unique identifier of location</td>\n        <td>integer</td>\n        <td>v1.17</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>location_name</td>\n        <td>name of location</td>\n        <td>string</td>\n        <td>v1.17</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>default</td>\n        <td>identifies if the location is set as the default location for the program/course</td>\n        <td>boolean</td>\n        <td>v1.19</td>\n        <td>optional field; appears when location is the default</td>\n    </tr>\n</table>","urlObject":{"path":["procedures","locations"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"f2517e1a-29e6-4b01-a70d-45edccb70abf","name":"procedures/locations","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"programID\":\"481\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/locations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Nov 2020 15:44:47 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"locationID\": \"56\",\n        \"location_name\": \"MedHub Sandbox\"\n    },\n    {\n        \"locationID\": \"170\",\n        \"location_name\": \"Sams Test Location\"\n    },\n    {\n        \"locationID\": \"173\",\n        \"location_name\": \"dearborn, mi\",\n        \"default\": true\n    },\n    {\n        \"locationID\": \"164\",\n        \"location_name\": \"Green Clinic\"\n    },\n    {\n        \"locationID\": \"172\",\n        \"location_name\": \"Las Vegas\"\n    },\n    {\n        \"locationID\": \"134\",\n        \"location_name\": \"SRC Units\"\n    },\n    {\n        \"locationID\": \"169\",\n        \"location_name\": \"test\"\n    },\n    {\n        \"locationID\": \"165\",\n        \"location_name\": \"Testing for Becky\"\n    },\n    {\n        \"locationID\": \"24\",\n        \"location_name\": \"VA - Cohen\"\n    },\n    {\n        \"locationID\": \"25\",\n        \"location_name\": \"VA - Coleman\"\n    },\n    {\n        \"locationID\": \"26\",\n        \"location_name\": \"VA - Hayslett\"\n    },\n    {\n        \"locationID\": \"27\",\n        \"location_name\": \"VA ED\"\n    },\n    {\n        \"locationID\": \"28\",\n        \"location_name\": \"VA Hospitalist Service\"\n    },\n    {\n        \"locationID\": \"29\",\n        \"location_name\": \"VA MICU\"\n    },\n    {\n        \"locationID\": \"30\",\n        \"location_name\": \"Waterbury Hospital Floors\"\n    },\n    {\n        \"locationID\": \"31\",\n        \"location_name\": \"Waterbury Hospital ICU\"\n    },\n    {\n        \"locationID\": \"32\",\n        \"location_name\": \"YNHH - Atkins Firm\"\n    },\n    {\n        \"locationID\": \"33\",\n        \"location_name\": \"YNHH - CCU\"\n    },\n    {\n        \"locationID\": \"34\",\n        \"location_name\": \"YNHH - Donaldson Firm\"\n    },\n    {\n        \"locationID\": \"35\",\n        \"location_name\": \"YNHH - ED\"\n    },\n    {\n        \"locationID\": \"36\",\n        \"location_name\": \"YNHH - Fitkin Firm\"\n    },\n    {\n        \"locationID\": \"37\",\n        \"location_name\": \"YNHH - Generalist Firm\"\n    },\n    {\n        \"locationID\": \"38\",\n        \"location_name\": \"YNHH - Goodyer Firm\"\n    },\n    {\n        \"locationID\": \"39\",\n        \"location_name\": \"YNHH - Hematology\"\n    },\n    {\n        \"locationID\": \"40\",\n        \"location_name\": \"YNHH - I-Team\"\n    },\n    {\n        \"locationID\": \"41\",\n        \"location_name\": \"YNHH - Klatskin Firm\"\n    },\n    {\n        \"locationID\": \"42\",\n        \"location_name\": \"YNHH - Kushlan Firm\"\n    },\n    {\n        \"locationID\": \"43\",\n        \"location_name\": \"YNHH - MICU\"\n    },\n    {\n        \"locationID\": \"44\",\n        \"location_name\": \"YNHH - Oncology\"\n    },\n    {\n        \"locationID\": \"45\",\n        \"location_name\": \"YNHH - Peters Firm\"\n    },\n    {\n        \"locationID\": \"46\",\n        \"location_name\": \"YNHH - Stepdown\"\n    }\n]"}],"_postman_id":"5c24378d-1165-4297-af7b-b0d31b8ad287"},{"name":"procedures/logs","id":"2be865ee-f8df-474e-90e0-dd34d705db4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/logs","description":"<p>Returns a list of procedure/diagnosis logs limited by date, program, and/or user.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>yes*</td>\n        <td>v1.18</td>\n        <td>*required if programID or courseID is not provided</td>\n    </tr>\n    <tr>\n        <td>start_date</td>\n        <td>date</td>\n        <td>yes*</td>\n        <td>v1.18</td>\n        <td>*required if userID is not provided</td>\n    </tr>\n    <tr>\n        <td>end_date</td>\n        <td>date</td>\n        <td>yes*</td>\n        <td>v1.18</td>\n        <td>*required if userID is not provided</td>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>integer</td>\n        <td>yes*</td>\n        <td>v1.18</td>\n        <td>*required if userID or courseID is not provided, otherwise optional</td>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>integer</td>\n        <td>yes*</td>\n        <td>v1.18</td>\n        <td>*required if userID or programID is not provided, otherwise optional</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>logID</td>\n        <td>unique identifier of procedure log</td>\n        <td>integer</td>\n        <td>v1.18</td>\n        \n    </tr>\n    <tr>\n        <td>locationID</td>\n        <td>unique identifier of procedure location</td>\n        <td>integer</td>\n        <td>v1.18</td>\n        <td>use procedures/locations to get a list of all available locations</td>\n    </tr>\n    <tr>\n        <td>location</td>\n        <td>location name associated with locationID</td>\n        <td>string</td>\n        <td>v1.18</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>date</td>\n        <td>date of procedure log</td>\n        <td>date</td>\n        <td>v1.18</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>supervisorID</td>\n        <td>unique identifier of selected procedure supervisor</td>\n        <td>integer</td>\n        <td>v1.18</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>supervisor</td>\n        <td>supervisor name associated with supervisorID</td>\n        <td>string</td>\n        <td>v1.18</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>unique identifier of program in which the log was recorded</td>\n        <td>integer</td>\n        <td>v1.18</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>unique identifier of course in which the log was recorded</td>\n        <td>integer</td>\n        <td>v1.18</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>mobile</td>\n        <td>identifies if the log was recorded on a mobile device</td>\n        <td>boolean</td>\n        <td>v1.18</td>\n        <td>TRUE if the log was recorded on a mobile device</td>\n    </tr>\n    <tr>\n        <td>fields</td>\n        <td>set of metadata fields included in the log</td>\n        <td>array</td>\n        <td>v1.18</td>\n        <td>fields may vary by program/course</td>\n    </tr>\n    <tr>\n        <td>procedures</td>\n        <td>set of procedures selected in the log</td>\n        <td>array</td>\n        <td>v1.18</td>\n        <td>the following data will be included for each selected procedure: <ul><li>procedureID<ul><li><b>Description: </b>unique identifier for the procedure</li><li><b>Data Type: </b>integer</li><li><b>Version: </b>v1.18</li></ul></li><li>typeID</li><ul><li><b>Description: </b>unique identifier for procedure type</li><li><b>Data Type: </b>integer</li><li><b>Version: </b>v1.18</li><li><b>Notes: </b>use procedures/procedureTypes for a list of all defined procedure types</li></ul><li>writein</li><ul><li><b>Description: </b>write-in procedure name provided in log</li><li><b>Data Type: </b>string</li><li><b>Version: </b>v1.18</li><li><b>Notes: </b>this capability is optional and must be allowed by the program/course</li></ul><li>role<ul><li><b>Description: </b>unique identifier for selected role in procedure</li><li><b>Data Type: </b>integer</li><li><b>Version: </b>v1.18</li><li><b>Notes: </b>use procedures/roles to get a list of all availalbe roles</li></ul></li><li>verified<ul><li><b>Description: </b>whether log has been verified by supervisor</li><li><b>Data Type: </b>string</li><li><b>Version: </b>v1.18</li><li><b>Notes: </b>possible values include: \"Pending\", \"Confirmed\", \"Rejected\", \"N/A\"</li></ul></li><li>qty<ul><li><b>Description: </b>quantity of procedure logged</li><li><b>Data Type: </b>integer</li><li><b>Version: </b>v1.18</li></ul></li><li>evaluation<ul><li><b>Description: </b>responseID of an evaluation (if the log triggered an evaluation</li><li><b>Data Type: </b>integer</li><li><b>Version: </b>v1.18</li><li><b>Notes: </b>NULL if no evaluation was generated</li></ul></li></ul></td>\n    </tr>\n    <tr>\n        <td>diagnoses</td>\n        <td>set of diagnoses selected in the log</td>\n        <td>array</td>\n        <td>v1.18</td>\n        <td>data provided is the same as the above for procedures, however the first field will be diagnosisID</td>\n    </tr>\n</table>","urlObject":{"path":["procedures","logs"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"bf8ca32e-3d3d-4c8a-81b3-b089d83583a8","name":"procedures/logs","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":\"97927\",\"start_date\":\"2020-01-01\",\"end_date\":\"2020-10-30\",\"programID\":\"481\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/logs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Nov 2020 15:38:47 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"logID\": 92121,\n        \"userID\": 97927,\n        \"locationID\": 173,\n        \"location\": \"dearborn, mi\",\n        \"date\": \"2020-01-08\",\n        \"supervisorID\": 77116,\n        \"supervisor\": null,\n        \"programID\": 481,\n        \"courseID\": null,\n        \"mobile\": false,\n        \"fields\": {\n            \"complications\": null,\n            \"notes\": null,\n            \"procedure_visit\": null,\n            \"patientID\": null,\n            \"patient_gender\": null,\n            \"patient_age\": null,\n            \"field-24\": \"\",\n            \"field-32\": \"\",\n            \"field-35\": \"\",\n            \"field-62\": \"\"\n        },\n        \"procedures\": [\n            {\n                \"procedureID\": 108928,\n                \"typeID\": 58,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"Confirmed\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 0\n            },\n            {\n                \"procedureID\": 108929,\n                \"typeID\": 2874,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"Pending\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 0\n            },\n            {\n                \"procedureID\": 108930,\n                \"typeID\": 2870,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"Confirmed\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 0\n            },\n            {\n                \"procedureID\": 108931,\n                \"typeID\": 3097,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"Confirmed\",\n                \"confirmation_notes\": \"HISTORY\",\n                \"qty\": 1,\n                \"evaluation\": 0\n            },\n            {\n                \"procedureID\": 108932,\n                \"typeID\": 2883,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"Rejected\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 0\n            }\n        ],\n        \"diagnoses\": []\n    },\n    {\n        \"logID\": 92123,\n        \"userID\": 97927,\n        \"locationID\": 56,\n        \"location\": \"MedHub Sandbox\",\n        \"date\": \"2020-01-09\",\n        \"supervisorID\": 77116,\n        \"supervisor\": null,\n        \"programID\": 481,\n        \"courseID\": null,\n        \"mobile\": false,\n        \"fields\": {\n            \"complications\": \"Complication notes example text\",\n            \"notes\": \"procedure notes example test.\",\n            \"procedure_visit\": null,\n            \"patientID\": null,\n            \"patient_gender\": null,\n            \"patient_age\": null,\n            \"field-24\": \"Yes\",\n            \"field-32\": \"\",\n            \"field-35\": \"O2\",\n            \"field-62\": \"\"\n        },\n        \"procedures\": [\n            {\n                \"procedureID\": 108934,\n                \"typeID\": 2881,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"Confirmed\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 653888\n            },\n            {\n                \"procedureID\": 109035,\n                \"typeID\": 2869,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"Confirmed\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 0\n            },\n            {\n                \"procedureID\": 109036,\n                \"typeID\": 2870,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"Confirmed\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 0\n            }\n        ],\n        \"diagnoses\": []\n    },\n    {\n        \"logID\": 92124,\n        \"userID\": 97927,\n        \"locationID\": 56,\n        \"location\": \"MedHub Sandbox\",\n        \"date\": \"2020-01-09\",\n        \"supervisorID\": 77116,\n        \"supervisor\": null,\n        \"programID\": 481,\n        \"courseID\": null,\n        \"mobile\": false,\n        \"fields\": {\n            \"complications\": \"Complication notes example text\",\n            \"notes\": \"procedure notes example test.\",\n            \"procedure_visit\": null,\n            \"patientID\": null,\n            \"patient_gender\": null,\n            \"patient_age\": null,\n            \"field-24\": \"Yes\",\n            \"field-32\": \"\",\n            \"field-35\": \"O2\",\n            \"field-62\": \"\"\n        },\n        \"procedures\": [\n            {\n                \"procedureID\": 108935,\n                \"typeID\": 2881,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"Confirmed\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 653889\n            }\n        ],\n        \"diagnoses\": []\n    },\n    {\n        \"logID\": 92125,\n        \"userID\": 97927,\n        \"locationID\": 165,\n        \"location\": \"Testing for Becky\",\n        \"date\": \"2020-01-09\",\n        \"supervisorID\": 77116,\n        \"supervisor\": null,\n        \"programID\": 481,\n        \"courseID\": null,\n        \"mobile\": false,\n        \"fields\": {\n            \"complications\": \"notes 1\",\n            \"notes\": \"notes 2\",\n            \"procedure_visit\": null,\n            \"patientID\": null,\n            \"patient_gender\": null,\n            \"patient_age\": null,\n            \"field-24\": \"\",\n            \"field-32\": \"\",\n            \"field-35\": \"\",\n            \"field-62\": \"\"\n        },\n        \"procedures\": [\n            {\n                \"procedureID\": 108936,\n                \"typeID\": 2880,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"Confirmed\",\n                \"confirmation_notes\": \"Test comments\",\n                \"qty\": 1,\n                \"evaluation\": 0\n            }\n        ],\n        \"diagnoses\": []\n    },\n    {\n        \"logID\": 92126,\n        \"userID\": 97927,\n        \"locationID\": 173,\n        \"location\": \"dearborn, mi\",\n        \"date\": \"2020-01-09\",\n        \"supervisorID\": 77116,\n        \"supervisor\": null,\n        \"programID\": 481,\n        \"courseID\": null,\n        \"mobile\": true,\n        \"fields\": {\n            \"complications\": null,\n            \"notes\": \"Nites\",\n            \"procedure_visit\": null,\n            \"patientID\": null,\n            \"patient_gender\": null,\n            \"patient_age\": null,\n            \"field-24\": \"Yes\",\n            \"field-32\": \"\",\n            \"field-35\": \"\",\n            \"field-62\": \"\"\n        },\n        \"procedures\": [\n            {\n                \"procedureID\": 108937,\n                \"typeID\": 2879,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"Confirmed\",\n                \"confirmation_notes\": \"test\",\n                \"qty\": 1,\n                \"evaluation\": 653890\n            },\n            {\n                \"procedureID\": 108938,\n                \"typeID\": 2870,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"Rejected\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 0\n            },\n            {\n                \"procedureID\": 108939,\n                \"typeID\": 3017,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"Confirmed\",\n                \"confirmation_notes\": \"Test verify comment\",\n                \"qty\": 1,\n                \"evaluation\": 653891\n            },\n            {\n                \"procedureID\": 108940,\n                \"typeID\": 3017,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"Confirmed\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 0\n            }\n        ],\n        \"diagnoses\": []\n    },\n    {\n        \"logID\": 92194,\n        \"userID\": 97927,\n        \"locationID\": 173,\n        \"location\": \"dearborn, mi\",\n        \"date\": \"2020-02-12\",\n        \"supervisorID\": 77116,\n        \"supervisor\": null,\n        \"programID\": 481,\n        \"courseID\": null,\n        \"mobile\": false,\n        \"fields\": {\n            \"complications\": null,\n            \"notes\": null,\n            \"procedure_visit\": null,\n            \"patientID\": null,\n            \"patient_gender\": null,\n            \"patient_age\": null,\n            \"field-24\": \"\",\n            \"field-32\": \"\",\n            \"field-35\": \"\",\n            \"field-62\": \"\"\n        },\n        \"procedures\": [\n            {\n                \"procedureID\": 109037,\n                \"typeID\": 2869,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"Confirmed\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 0\n            }\n        ],\n        \"diagnoses\": []\n    },\n    {\n        \"logID\": 92210,\n        \"userID\": 97927,\n        \"locationID\": 56,\n        \"location\": \"MedHub Sandbox\",\n        \"date\": \"2020-02-19\",\n        \"supervisorID\": 119686,\n        \"supervisor\": null,\n        \"programID\": 481,\n        \"courseID\": null,\n        \"mobile\": false,\n        \"fields\": {\n            \"complications\": null,\n            \"notes\": null,\n            \"procedure_visit\": \"1\",\n            \"patientID\": null,\n            \"patient_gender\": null,\n            \"patient_age\": null,\n            \"field-24\": \"\",\n            \"field-32\": \"\",\n            \"field-35\": \"\",\n            \"field-62\": \"\"\n        },\n        \"procedures\": [\n            {\n                \"procedureID\": 109054,\n                \"typeID\": 2605,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"Pending\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 0\n            }\n        ],\n        \"diagnoses\": [\n            {\n                \"diagnosisID\": 43587,\n                \"typeID\": 120,\n                \"writein\": null,\n                \"role\": 1,\n                \"qty\": 1\n            }\n        ]\n    },\n    {\n        \"logID\": 92212,\n        \"userID\": 97927,\n        \"locationID\": 173,\n        \"location\": \"dearborn, mi\",\n        \"date\": \"2020-02-23\",\n        \"supervisorID\": 116596,\n        \"supervisor\": null,\n        \"programID\": 481,\n        \"courseID\": null,\n        \"mobile\": false,\n        \"fields\": {\n            \"complications\": null,\n            \"notes\": null,\n            \"procedure_visit\": null,\n            \"patientID\": \"21647454546564\",\n            \"patient_gender\": null,\n            \"patient_age\": null,\n            \"field-24\": \"\",\n            \"field-32\": \"\",\n            \"field-35\": \"\",\n            \"field-62\": \"\"\n        },\n        \"procedures\": [\n            {\n                \"procedureID\": 109056,\n                \"typeID\": 2869,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"N/A\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 654067\n            }\n        ],\n        \"diagnoses\": []\n    },\n    {\n        \"logID\": 92214,\n        \"userID\": 97927,\n        \"locationID\": 1,\n        \"location\": \"Waterbury Hospital Floors\",\n        \"date\": \"2020-02-20\",\n        \"supervisorID\": null,\n        \"supervisor\": null,\n        \"programID\": 481,\n        \"courseID\": null,\n        \"mobile\": false,\n        \"fields\": {\n            \"complications\": null,\n            \"notes\": \"(imported 2/24/20 - 191)\",\n            \"procedure_visit\": null,\n            \"patientID\": null,\n            \"patient_gender\": null,\n            \"patient_age\": null\n        },\n        \"procedures\": [\n            {\n                \"procedureID\": 109058,\n                \"typeID\": 2758,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"N/A\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 0\n            }\n        ],\n        \"diagnoses\": [\n            {\n                \"diagnosisID\": 43588,\n                \"typeID\": 864,\n                \"writein\": null,\n                \"role\": 0,\n                \"qty\": 1\n            }\n        ]\n    },\n    {\n        \"logID\": 92215,\n        \"userID\": 97927,\n        \"locationID\": 1,\n        \"location\": \"Waterbury Hospital Floors\",\n        \"date\": \"2020-02-19\",\n        \"supervisorID\": null,\n        \"supervisor\": null,\n        \"programID\": 481,\n        \"courseID\": null,\n        \"mobile\": false,\n        \"fields\": {\n            \"complications\": null,\n            \"notes\": \"(imported 2/24/20 - 191)\",\n            \"procedure_visit\": null,\n            \"patientID\": null,\n            \"patient_gender\": null,\n            \"patient_age\": null\n        },\n        \"procedures\": [\n            {\n                \"procedureID\": 109059,\n                \"typeID\": null,\n                \"writein\": \"Test diagnosis with no procedure\",\n                \"role\": 1,\n                \"verified\": \"N/A\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 0\n            }\n        ],\n        \"diagnoses\": [\n            {\n                \"diagnosisID\": 43589,\n                \"typeID\": 865,\n                \"writein\": null,\n                \"role\": 0,\n                \"qty\": 1\n            }\n        ]\n    },\n    {\n        \"logID\": 92219,\n        \"userID\": 97927,\n        \"locationID\": 173,\n        \"location\": \"dearborn, mi\",\n        \"date\": \"2020-03-04\",\n        \"supervisorID\": 116883,\n        \"supervisor\": null,\n        \"programID\": 481,\n        \"courseID\": null,\n        \"mobile\": false,\n        \"fields\": {\n            \"complications\": null,\n            \"notes\": null,\n            \"procedure_visit\": null,\n            \"patientID\": \"321315644\",\n            \"patient_gender\": null,\n            \"patient_age\": null,\n            \"field-24\": \"\",\n            \"field-32\": \"\",\n            \"field-35\": \"\",\n            \"field-62\": \"\"\n        },\n        \"procedures\": [\n            {\n                \"procedureID\": 109062,\n                \"typeID\": 2869,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"N/A\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 0\n            }\n        ],\n        \"diagnoses\": []\n    },\n    {\n        \"logID\": 92241,\n        \"userID\": 97927,\n        \"locationID\": 173,\n        \"location\": \"dearborn, mi\",\n        \"date\": \"2020-07-02\",\n        \"supervisorID\": null,\n        \"supervisor\": null,\n        \"programID\": 481,\n        \"courseID\": null,\n        \"mobile\": false,\n        \"fields\": {\n            \"complications\": null,\n            \"notes\": null,\n            \"procedure_visit\": null,\n            \"patientID\": null,\n            \"patient_gender\": null,\n            \"patient_age\": null\n        },\n        \"procedures\": [\n            {\n                \"procedureID\": 109086,\n                \"typeID\": 2603,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"N/A\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 0\n            }\n        ],\n        \"diagnoses\": [\n            {\n                \"diagnosisID\": 43592,\n                \"typeID\": 178,\n                \"writein\": null,\n                \"role\": 1,\n                \"qty\": 1\n            }\n        ]\n    },\n    {\n        \"logID\": 92243,\n        \"userID\": 97927,\n        \"locationID\": 173,\n        \"location\": \"dearborn, mi\",\n        \"date\": \"2020-07-30\",\n        \"supervisorID\": 77116,\n        \"supervisor\": null,\n        \"programID\": 481,\n        \"courseID\": null,\n        \"mobile\": false,\n        \"fields\": {\n            \"complications\": null,\n            \"notes\": null,\n            \"procedure_visit\": null,\n            \"patientID\": null,\n            \"patient_gender\": null,\n            \"patient_age\": null,\n            \"field-24\": \"\",\n            \"field-32\": \"\",\n            \"field-35\": \"\",\n            \"field-62\": \"\"\n        },\n        \"procedures\": [\n            {\n                \"procedureID\": 109088,\n                \"typeID\": 2873,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"Confirmed\",\n                \"confirmation_notes\": \"Good job kiddo\",\n                \"qty\": 1,\n                \"evaluation\": 661768\n            }\n        ],\n        \"diagnoses\": []\n    },\n    {\n        \"logID\": 92244,\n        \"userID\": 97927,\n        \"locationID\": 173,\n        \"location\": \"dearborn, mi\",\n        \"date\": \"2020-07-30\",\n        \"supervisorID\": 77116,\n        \"supervisor\": null,\n        \"programID\": 481,\n        \"courseID\": null,\n        \"mobile\": false,\n        \"fields\": {\n            \"complications\": null,\n            \"notes\": null,\n            \"procedure_visit\": null,\n            \"patientID\": null,\n            \"patient_gender\": null,\n            \"patient_age\": null,\n            \"field-24\": \"\",\n            \"field-32\": \"\",\n            \"field-35\": \"\",\n            \"field-62\": \"\"\n        },\n        \"procedures\": [\n            {\n                \"procedureID\": 109089,\n                \"typeID\": 2873,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"Pending\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 661769\n            }\n        ],\n        \"diagnoses\": []\n    },\n    {\n        \"logID\": 92251,\n        \"userID\": 97927,\n        \"locationID\": 173,\n        \"location\": \"dearborn, mi\",\n        \"date\": \"2020-10-02\",\n        \"supervisorID\": 77116,\n        \"supervisor\": null,\n        \"programID\": 481,\n        \"courseID\": null,\n        \"mobile\": false,\n        \"fields\": {\n            \"complications\": null,\n            \"notes\": null,\n            \"procedure_visit\": null,\n            \"patientID\": null,\n            \"patient_gender\": null,\n            \"patient_age\": null,\n            \"field-24\": \"\",\n            \"field-32\": \"\",\n            \"field-35\": \"\",\n            \"field-62\": \"\"\n        },\n        \"procedures\": [\n            {\n                \"procedureID\": 109095,\n                \"typeID\": 2870,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"N/A\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 661825\n            }\n        ],\n        \"diagnoses\": []\n    },\n    {\n        \"logID\": 92253,\n        \"userID\": 97927,\n        \"locationID\": 173,\n        \"location\": \"dearborn, mi\",\n        \"date\": \"2020-10-29\",\n        \"supervisorID\": 77116,\n        \"supervisor\": null,\n        \"programID\": 481,\n        \"courseID\": null,\n        \"mobile\": false,\n        \"fields\": {\n            \"complications\": null,\n            \"notes\": null,\n            \"procedure_visit\": null,\n            \"patientID\": null,\n            \"patient_gender\": null,\n            \"patient_age\": null,\n            \"field-24\": \"\",\n            \"field-32\": \"\",\n            \"field-35\": \"\",\n            \"field-62\": \"\"\n        },\n        \"procedures\": [\n            {\n                \"procedureID\": 109098,\n                \"typeID\": 2869,\n                \"writein\": null,\n                \"role\": 1,\n                \"verified\": \"N/A\",\n                \"confirmation_notes\": null,\n                \"qty\": 1,\n                \"evaluation\": 661850\n            }\n        ],\n        \"diagnoses\": []\n    }\n]"}],"_postman_id":"2be865ee-f8df-474e-90e0-dd34d705db4e"},{"name":"procedures/record","id":"ee49293d-4a8e-458e-abf3-075c44c41673","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\":114615,\"programID\":481,\"locationID\":56,\"supervisorID\":77116,\"date\":\"2022-03-14\",\"mobile\":false,\"fields\":{\"patient_age\":\"21\",\"patient_gender\":\"F\"}}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/record","description":"<p>Create a new log or update an existing one. You cannot add procedures or diagnoses to a log from this call; to do that use procedures/appendProcedure and/or procedures/appendDiagnosis.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td>logID</td><td>integer</td><td>no\\*</td><td>v1.18</td><td>\\\\*required when updating an existing log, otherwise a new logID is created</td></tr><tr><td>locationID</td><td>integer</td><td>no</td><td>v1.18</td><td></td></tr><tr><td>location</td><td>string</td><td>no</td><td>v1.18</td><td></td></tr><tr><td>date</td><td>date</td><td>yes</td><td>v1.18</td><td></td></tr><tr><td>supervisorID</td><td>integer</td><td>no</td><td>v1.18</td><td>supervisor userID</td></tr><tr><td>supervisor</td><td>string</td><td>no</td><td>v1.18</td><td>supervisor name</td></tr><tr><td>programID</td><td>integer</td><td>no</td><td>v1.18</td><td></td></tr><tr><td>courseID</td><td>integer</td><td>no</td><td>v1.18</td><td></td></tr><tr><td>mobile</td><td>boolean</td><td>no</td><td>v1.18</td><td>set to TRUE if procedure was recorded on a mobile device</td></tr><tr><td>fields</td><td>array</td><td>no</td><td>v1.18</td><td><ul><li><p>use procedures/settings to get defined procedure fields</p></li><li><p>array should be formatted as follows: \"fields\": {\"field1\": \"value1\", \"field2\": \"value2\"}</p></li></ul></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td>logID</td><td>unique log identifier</td><td>integer</td><td>v1.18</td></tr></tbody></table>","urlObject":{"path":["procedures","record"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"760fac22-d4bd-407d-bb9f-2398b6d5f586","name":"procedures/record","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":114615,\"programID\":481,\"locationID\":56,\"supervisorID\":77116,\"date\":\"2022-03-14\",\"mobile\":false,\"fields\":[{\"patient_age\":\"21\",\"patient_gender\":\"F\"}]}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/record"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 15 Mar 2022 18:17:59 GMT"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!K86SnUZuaJwrbt9slylYbJax7QpKFEwoyLZUBG5ri9LJaZGuYRd5vrAROgksBWVJ8ou2X1PbRQSjRQI=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=16070400; includeSubDomains"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"logID\": 92374\n}"}],"_postman_id":"ee49293d-4a8e-458e-abf3-075c44c41673"},{"name":"procedures/procedureRequirements","id":"bdd28024-f4e3-40fd-ad82-7c559b5ab9be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\": 82136, \"programID\": 4}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/procedureRequirements","description":"<p>Retrieves list of all procedure requirements for a resident/student in a given program/course.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td>userID</td><td>integer</td><td>yes</td><td>1.21</td><td>userID of resident or student</td></tr><tr><td>programID</td><td>integer</td><td>yes\\\\*</td><td>1.21</td><td>\\\\*required if userID is resident</td></tr><tr><td>courseID</td><td>integer</td><td>yes\\\\*</td><td>1.21</td><td>\\\\*required is userID is student</td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr></tr><tr></tr></tbody></table>","urlObject":{"path":["procedures","procedureRequirements"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"6f87ead1-b21c-48e8-834c-996a839187b9","name":"procedures/procedureRequirements","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\": 82136, \"programID\": 4}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/procedureRequirements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 07 Feb 2023 14:42:33 GMT"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!Ud+HxzheQP+AgjJ7WsnXQYG5SzWDjUeOTFAVtW41/t2EMYrD/Uho692HXTZIZSbdKW+dEIsOZS+mWDU=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=16070400; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"requirement_name\": \"Lumbar Puncture: Lumbar Puncture\",\n        \"procedure_types\": [\n            {\n                \"typeID\": 2419,\n                \"type_name\": \"Lumbar Puncture\"\n            }\n        ],\n        \"levels\": [\n            {\n                \"level\": \"3\"\n            },\n            {\n                \"level\": \"4\"\n            }\n        ],\n        \"requirements\": [\n            {\n                \"role_title\": \"Performed\",\n                \"count\": 2\n            },\n            {\n                \"role_title\": \"Assisted\",\n                \"count\": 4\n            }\n        ]\n    },\n    {\n        \"requirement_name\": \"EEG\",\n        \"procedure_types\": [\n            {\n                \"typeID\": 1471,\n                \"type_name\": \"EEG\"\n            }\n        ],\n        \"levels\": [\n            {\n                \"level\": \"5\"\n            }\n        ],\n        \"requirements\": [\n            {\n                \"role_title\": \"Performed\",\n                \"count\": 3\n            }\n        ]\n    },\n    {\n        \"requirement_name\": \"Continuity Visit\",\n        \"procedure_types\": [\n            {\n                \"typeID\": 2424,\n                \"type_name\": \"Continuity Visit\"\n            }\n        ],\n        \"levels\": [\n            {\n                \"level\": \"1\"\n            },\n            {\n                \"level\": \"2\"\n            },\n            {\n                \"level\": \"3\"\n            },\n            {\n                \"level\": \"4\"\n            },\n            {\n                \"level\": \"5\"\n            },\n            {\n                \"level\": \"6\"\n            },\n            {\n                \"level\": \"7\"\n            },\n            {\n                \"level\": \"8\"\n            },\n            {\n                \"level\": \"9\"\n            }\n        ],\n        \"requirements\": [\n            {\n                \"role_title\": \"Total Logged\",\n                \"count\": \"1600\"\n            }\n        ]\n    },\n    {\n        \"requirement_name\": \"OB/GYN Rotation: UBC (OB/GYN) (Null)\",\n        \"procedure_types\": [\n            {\n                \"typeID\": 2425,\n                \"type_name\": \"UBC (OB/GYN) (Null)\"\n            }\n        ],\n        \"levels\": [\n            {\n                \"level\": \"3\"\n            },\n            {\n                \"level\": \"4\"\n            }\n        ],\n        \"requirements\": [\n            {\n                \"role_title\": \"Performed\",\n                \"count\": 2\n            }\n        ]\n    },\n    {\n        \"requirement_name\": \"Lumbar Puncture\",\n        \"procedure_types\": [\n            {\n                \"typeID\": 2419,\n                \"type_name\": \"Lumbar Puncture\"\n            }\n        ],\n        \"levels\": [\n            {\n                \"level\": \"5\"\n            }\n        ],\n        \"requirements\": [\n            {\n                \"role_title\": \"Performed\",\n                \"count\": 6\n            }\n        ]\n    },\n    {\n        \"requirement_name\": \"Lumbar Puncture\",\n        \"procedure_types\": [\n            {\n                \"typeID\": 2419,\n                \"type_name\": \"Lumbar Puncture\"\n            }\n        ],\n        \"levels\": [\n            {\n                \"level\": \"1\"\n            },\n            {\n                \"level\": \"2\"\n            },\n            {\n                \"level\": \"3\"\n            }\n        ],\n        \"requirements\": [\n            {\n                \"role_title\": \"Total Logged\",\n                \"count\": \"10\"\n            }\n        ]\n    }\n]"}],"_postman_id":"bdd28024-f4e3-40fd-ad82-7c559b5ab9be"},{"name":"procedures/procedureRequirementsProgress","id":"e5566734-1ef7-491e-aa3f-206b2e1c8925","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\": 83558, \"programID\": 4}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/procedureRequirementsProgress","description":"<p>Retrieves a resident's/student's progress towards a program's defined procedure requirements.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td>userID</td><td>integer</td><td>yes</td><td>1.21</td><td>userID of resident or student</td></tr><tr><td>programID</td><td>integer</td><td>yes\\*</td><td>1.21</td><td>\\\\\\\\\\*required if userID is resident</td></tr><tr><td>courseID</td><td>integer</td><td>yes\\*</td><td>1.21</td><td>\\\\\\\\\\*required if userID is student</td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td>requirement_name</td><td>procedure requirement name</td><td>string</td><td>1.21</td><td></td></tr><tr><td>logged</td><td>total number of logged procedures of type</td><td>integer</td><td>1.21</td><td></td></tr><tr><td>requirements</td><td>number of times the procedure type must logged with specified role to fulfill requirement</td><td>array</td><td>1.21</td><td>array will include:<br />\"role_title\" and \"count\" for each role required.<br /></td><td></td><td></td></tr><tr></tr></tbody></table>","urlObject":{"path":["procedures","procedureRequirementsProgress"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"be22d678-fa8c-43dd-869e-bc3a0c82cbf1","name":"procedures/procedureRequirementsProgress","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\": 83558, \"programID\": 4}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/procedureRequirementsProgress"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 07 Feb 2023 14:48:35 GMT"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!1oB8l33IqDWmmmB7WsnXQYG5SzWDjfw7PQVZ9YAsU2yHWRjdsM1/vfO+BHvw1i+gS6/xkTLbAKuncjA=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=16070400; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"requirement_name\": \"Lumbar Puncture: Lumbar Puncture\",\n        \"logged\": [],\n        \"requirements\": [\n            {\n                \"role_title\": \"Performed\",\n                \"count\": 13\n            },\n            {\n                \"role_title\": \"Assisted\",\n                \"count\": 4\n            }\n        ]\n    },\n    {\n        \"requirement_name\": \"EEG\",\n        \"logged\": [],\n        \"requirements\": [\n            {\n                \"role_title\": \"Performed\",\n                \"count\": 0\n            }\n        ]\n    },\n    {\n        \"requirement_name\": \"Continuity Visit\",\n        \"logged\": [],\n        \"requirements\": [\n            {\n                \"role_title\": \"Total Logged\",\n                \"count\": 4\n            }\n        ]\n    },\n    {\n        \"requirement_name\": \"OB/GYN Rotation: UBC (OB/GYN) (Null)\",\n        \"logged\": [],\n        \"requirements\": [\n            {\n                \"role_title\": \"Performed\",\n                \"count\": 0\n            }\n        ]\n    },\n    {\n        \"requirement_name\": \"Lumbar Puncture\",\n        \"logged\": [],\n        \"requirements\": [\n            {\n                \"role_title\": \"Performed\",\n                \"count\": 0\n            }\n        ]\n    },\n    {\n        \"requirement_name\": \"Lumbar Puncture\",\n        \"logged\": [],\n        \"requirements\": [\n            {\n                \"role_title\": \"Total Logged\",\n                \"count\": 55\n            }\n        ]\n    }\n]"}],"_postman_id":"e5566734-1ef7-491e-aa3f-206b2e1c8925"},{"name":"procedures/roles","id":"89719853-78b8-4a4f-965a-7e06b666c162","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"scope\": \"gme\", \"type\": \"procedure\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/roles","description":"<p>Retrieves a list of all active procedure or diagnosis roles for given scope (gme/ume).</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td>scope</td><td>string</td><td>yes</td><td>1.10</td><td>values include: \"ume\" or \"gme\"</td></tr><tr><td>type</td><td>string</td><td>yes</td><td>1.10</td><td>values include: \"procedure\", \"diagnosis\"</td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td>roleID</td><td>unique role identifier</td><td>integer</td><td>0.90</td><td></td></tr><tr><td>role_title</td><td>role title</td><td>string</td><td>0.90</td><td></td></tr></tbody></table>","urlObject":{"path":["procedures","roles"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"052eb59f-286d-4902-8af5-bf0b2b75f969","name":"procedures/roles","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"scope\": \"gme\", \"type\": \"procedure\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/roles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 07 Feb 2023 14:38:35 GMT"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!Xe8Vo61tcKRE8VV7WsnXQYG5SzWDjWnX6rHusSN9ODSiFrXWBrZBPslI0r2nJNHqYXbVTBRaLeWeIhk=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=16070400; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"roleID\": \"1\",\n        \"role_title\": \"Performed\"\n    },\n    {\n        \"roleID\": \"2\",\n        \"role_title\": \"Assisted\"\n    },\n    {\n        \"roleID\": \"3\",\n        \"role_title\": \"Observed\"\n    },\n    {\n        \"roleID\": \"4\",\n        \"role_title\": \"Supervised\"\n    },\n    {\n        \"roleID\": \"5\",\n        \"role_title\": \"Read & Interpreted\"\n    },\n    {\n        \"roleID\": \"6\",\n        \"role_title\": \"Simulated\"\n    }\n]"}],"_postman_id":"89719853-78b8-4a4f-965a-7e06b666c162"},{"name":"procedures/settings","id":"ab482a4f-08c0-4958-b81c-8ee4cd4b8a4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/settings","description":"<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>N/A</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n    </tr>\n    <tr>\n    </tr>\n</table>","urlObject":{"path":["procedures","settings"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"ab482a4f-08c0-4958-b81c-8ee4cd4b8a4d"},{"name":"procedures/supervisors","id":"4d14de55-74b9-4904-b63a-0ec6a8da99d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/supervisors","description":"<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td>ProgramID</td><td></td><td>yes\\*</td><td></td><td></td><td></td></tr><tr><td>CourseID</td><td></td><td>yes\\*</td><td></td><td></td><td></td></tr><tr><td>Offset</td><td></td><td>yes</td><td></td><td>Response is limited to 3000 users. Use this parameter to offset the users returned by n to get users beyond the first 3000</td><td></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<p><br /><br /></p><table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr></tr><tr></tr></tbody></table><p></p>\n","urlObject":{"path":["procedures","supervisors"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"4d14de55-74b9-4904-b63a-0ec6a8da99d7"},{"name":"procedures/supervisorsCount","id":"f98f4d12-a7a5-4059-a520-0ebb4944e4f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/supervisorsCount","description":"<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>N/A</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n    </tr>\n    <tr>\n    </tr>\n</table>","urlObject":{"path":["procedures","supervisorsCount"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"f98f4d12-a7a5-4059-a520-0ebb4944e4f6"},{"name":"procedures/procedureTypes","id":"70ba3ae1-68f8-4839-8b56-c243737c6d26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/procedureTypes","description":"<p>Retrieves a list of all available procedure types in a given program or course.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>integer</td>\n        <td>yes\\*</td>\n        <td></td>\n        <td>required if courseID not specified</td>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>integer</td>\n        <td>yes\\*</td>\n        <td></td>\n        <td>required if programID not specified</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>typeID</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>procedure name</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>cpt_code</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>can_evaluate</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["procedures","procedureTypes"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"70ba3ae1-68f8-4839-8b56-c243737c6d26"},{"name":"procedures/verificationsPending","id":"b8b6dfb3-867d-4897-ab83-f83f8d88909f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/verificationsPending","description":"<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>N/A</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n    </tr>\n    <tr>\n    </tr>\n</table>","urlObject":{"path":["procedures","verificationsPending"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"b8b6dfb3-867d-4897-ab83-f83f8d88909f"},{"name":"procedures/supervisionLevels","id":"2f839ed8-ec05-4dc5-8a31-a5ef75a8d778","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/supervisionLevels","description":"<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>N/A</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n    </tr>\n    <tr>\n    </tr>\n</table>","urlObject":{"path":["procedures","supervisionLevels"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"2f839ed8-ec05-4dc5-8a31-a5ef75a8d778"},{"name":"procedures/verify","id":"6284b633-f3ed-4b2e-805b-252f416d6388","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"procedureID\":\"108928\",\"supervisorID\":\"77116\",\"status\":\"1\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/procedures/verify","description":"<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>procedureID</td>\n        <td>integer</td>\n        <td>yes</td>\n        <td>v1.22</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>supervisorID</td>\n        <td>integer</td>\n        <td>yes</td>\n        <td>v1.22</td>\n        <td>should match supervisorID assigned to the log</td>\n    </tr>\n    <tr>\n        <td>status</td>\n        <td>integer</td>\n        <td>yes</td>\n        <td>v1.22</td>\n        <td>pass \"1\" as verified, \"2\" as rejected</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>n/a</td>\n        <td>n/a</td>\n        <td>n/a</td>\n        <td>v1.22</td>\n        <td>response will appear as \"true\" when request is successfully sent</td>\n    </tr>\n</table>","urlObject":{"path":["procedures","verify"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"6284b633-f3ed-4b2e-805b-252f416d6388"}],"id":"0b19222f-9fc9-43a3-b1b8-8f2806ce4514","_postman_id":"0b19222f-9fc9-43a3-b1b8-8f2806ce4514","description":""},{"name":"Programs","item":[{"name":"programs/all","id":"4a62c42d-4886-4a1b-beb8-f3057b8da3ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>no input required</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/programs/all","description":"<p>Retrieves a list of all active programs within the institution, regardless of access.</p>\n<h6>Input Variables</h6>\nNone\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>unique identifer for program</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>program_name</td>\n        <td>full name of program</td>\n        <td>string</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>program_abbrev</td>\n        <td>abbreviation of program name</td>\n        <td>string</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>program_level</td>\n        <td>heirarchy level of program</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td>Values: 1 = department, 2 = subprogram</td>\n    </tr>\n    <tr>\n        <td>dept_programID</td>\n        <td>unique identifer for this program's department</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["programs","all"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"446e51e2-f710-4695-aa19-d7cfedf21af1","name":"programs/all","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"no input required","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/programs/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 19:36:35 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"programID\": \"991\",\n        \"program_name\": \"\",\n        \"program_abbrev\": \"\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"991\"\n    },\n    {\n        \"programID\": \"576\",\n        \"program_name\": \"*Medical School*\",\n        \"program_abbrev\": \"MED-SCHL\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"887\",\n        \"program_name\": \"1. For Training - Please Do Not Modify\",\n        \"program_abbrev\": \"Training\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"887\"\n    },\n    {\n        \"programID\": \"939\",\n        \"program_name\": \"2018 UC Training\",\n        \"program_abbrev\": \"UC2018\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"1024\",\n        \"program_name\": \"AAA Test Program\",\n        \"program_abbrev\": \"ATP\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"582\",\n        \"program_name\": \"Acute Care Surgery\",\n        \"program_abbrev\": \"S-AcuteCare\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"602\",\n        \"program_name\": \"Addiction Medicine\",\n        \"program_abbrev\": \"ADM\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"518\",\n        \"program_name\": \"Addiction Psychiatry\",\n        \"program_abbrev\": \"ADDICT\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"895\",\n        \"program_name\": \"Admin 1\",\n        \"program_abbrev\": \"AW1\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"898\",\n        \"program_name\": \"Admin 4\",\n        \"program_abbrev\": \"AW4\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"658\"\n    },\n    {\n        \"programID\": \"899\",\n        \"program_name\": \"Admin 5\",\n        \"program_abbrev\": \"AW5\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"658\"\n    },\n    {\n        \"programID\": \"900\",\n        \"program_name\": \"Admin 6\",\n        \"program_abbrev\": \"AW6\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"901\",\n        \"program_name\": \"Admin 7\",\n        \"program_abbrev\": \"AW7\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"902\",\n        \"program_name\": \"Admin 8\",\n        \"program_abbrev\": \"AW8\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"658\"\n    },\n    {\n        \"programID\": \"925\",\n        \"program_name\": \"Admin Program 1\",\n        \"program_abbrev\": \"AP1\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"924\"\n    },\n    {\n        \"programID\": \"934\",\n        \"program_name\": \"Admin Program 10\",\n        \"program_abbrev\": \"AP10\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"924\"\n    },\n    {\n        \"programID\": \"926\",\n        \"program_name\": \"Admin Program 2\",\n        \"program_abbrev\": \"AP2\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"924\"\n    },\n    {\n        \"programID\": \"927\",\n        \"program_name\": \"Admin Program 3\",\n        \"program_abbrev\": \"AP3\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"924\"\n    },\n    {\n        \"programID\": \"928\",\n        \"program_name\": \"Admin Program 4\",\n        \"program_abbrev\": \"AP4\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"924\"\n    },\n    {\n        \"programID\": \"929\",\n        \"program_name\": \"Admin Program 5\",\n        \"program_abbrev\": \"AP5\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"924\"\n    },\n    {\n        \"programID\": \"930\",\n        \"program_name\": \"Admin Program 6 - Testing\",\n        \"program_abbrev\": \"AP6\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"931\",\n        \"program_name\": \"Admin Program 7\",\n        \"program_abbrev\": \"AP7\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"924\"\n    },\n    {\n        \"programID\": \"932\",\n        \"program_name\": \"Admin Program 8\",\n        \"program_abbrev\": \"AP8\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"924\"\n    },\n    {\n        \"programID\": \"603\",\n        \"program_name\": \"Administrative Radiology Fellowship\",\n        \"program_abbrev\": \"AdminRads\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"446\"\n    },\n    {\n        \"programID\": \"896\",\n        \"program_name\": \"Administrator Number Two\",\n        \"program_abbrev\": \"AW2\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"454\",\n        \"program_name\": \"Adult Cardiothoracic Anesthesiology\",\n        \"program_abbrev\": \"ANES-CARD\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"436\"\n    },\n    {\n        \"programID\": \"466\",\n        \"program_name\": \"Advanced Heart Failure and Transplant Cardiology\",\n        \"program_abbrev\": \"IM-AHF\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"1017\",\n        \"program_name\": \"Allergy and Immunology\",\n        \"program_abbrev\": \"AI - HH\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"1017\"\n    },\n    {\n        \"programID\": \"467\",\n        \"program_name\": \"Allergy and Immunology\",\n        \"program_abbrev\": \"IM-AI\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"453\",\n        \"program_name\": \"Ambulatory Anesthesia\",\n        \"program_abbrev\": \"ANES-AmB\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"436\"\n    },\n    {\n        \"programID\": \"619\",\n        \"program_name\": \"Anatomic Pathology CWS\",\n        \"program_abbrev\": \"AnatPath\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"444\"\n    },\n    {\n        \"programID\": \"436\",\n        \"program_name\": \"Anesthesiology\",\n        \"program_abbrev\": \"ANES\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"455\",\n        \"program_name\": \"Anesthesiology - Critical Care\",\n        \"program_abbrev\": \"ANES-CRITICAL\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"636\",\n        \"program_name\": \"Bariatric Surgery\",\n        \"program_abbrev\": \"BARI SURG\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"447\"\n    },\n    {\n        \"programID\": \"1018\",\n        \"program_name\": \"Becky Test Program\",\n        \"program_abbrev\": \"BTP\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"1018\"\n    },\n    {\n        \"programID\": \"592\",\n        \"program_name\": \"Behavioral Neurology (Dementia)\",\n        \"program_abbrev\": \"Behav Neuro\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"440\"\n    },\n    {\n        \"programID\": \"459\",\n        \"program_name\": \"Bi Coastal Anesthesia\",\n        \"program_abbrev\": \"BICA\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"436\"\n    },\n    {\n        \"programID\": \"498\",\n        \"program_name\": \"Blood Banking Pathology\",\n        \"program_abbrev\": \"PATH-BBTM\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"444\"\n    },\n    {\n        \"programID\": \"587\",\n        \"program_name\": \"Body Fellowship\",\n        \"program_abbrev\": \"Rads-Body\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"1021\",\n        \"program_name\": \"Branden's Test Program\",\n        \"program_abbrev\": \"BSM\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"1021\"\n    },\n    {\n        \"programID\": \"525\",\n        \"program_name\": \"Breast Fellowship\",\n        \"program_abbrev\": \"RADS-MAMMO\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"446\"\n    },\n    {\n        \"programID\": \"533\",\n        \"program_name\": \"Breast Surgery\",\n        \"program_abbrev\": \"S-BREAST\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"447\"\n    },\n    {\n        \"programID\": \"499\",\n        \"program_name\": \"Breast/GYN\",\n        \"program_abbrev\": \"PATH-GYN\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"444\"\n    },\n    {\n        \"programID\": \"1020\",\n        \"program_name\": \"Cardiothoracic Surgery\",\n        \"program_abbrev\": \"CS\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"1020\"\n    },\n    {\n        \"programID\": \"468\",\n        \"program_name\": \"Cardiovascular Disease\",\n        \"program_abbrev\": \"IM-CD\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"992\",\n        \"program_name\": \"Carlie Program Start Date Test\",\n        \"program_abbrev\": \"ProgStartDate\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"531\",\n        \"program_name\": \"Chest Fellowship\",\n        \"program_abbrev\": \"RADS-THORACIC\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"446\"\n    },\n    {\n        \"programID\": \"519\",\n        \"program_name\": \"Child and Adolescent Psychiatry\",\n        \"program_abbrev\": \"PSYCH-CHILD-AD\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"435\"\n    },\n    {\n        \"programID\": \"893\",\n        \"program_name\": \"Child Epilepsy\",\n        \"program_abbrev\": \"PED EPI\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"440\"\n    },\n    {\n        \"programID\": \"469\",\n        \"program_name\": \"Clinical Cardiac Electrophysiology\",\n        \"program_abbrev\": \"IM-CCE\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"999\",\n        \"program_name\": \"Clinical Cardiac Electrophysiology\",\n        \"program_abbrev\": \"CCE-BTH\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"632\",\n        \"program_name\": \"Clinical Informatics\",\n        \"program_abbrev\": \"IM-CI\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"589\",\n        \"program_name\": \"Clinical Neurophysiology\",\n        \"program_abbrev\": \"Cl Neurophys\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"440\"\n    },\n    {\n        \"programID\": \"618\",\n        \"program_name\": \"Clinical Pathology CWS\",\n        \"program_abbrev\": \"ClinPath\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"444\"\n    },\n    {\n        \"programID\": \"588\",\n        \"program_name\": \"College Mental Health\",\n        \"program_abbrev\": \"CollegeMental\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"435\"\n    },\n    {\n        \"programID\": \"557\",\n        \"program_name\": \"Community Pediatrics Fellowship\",\n        \"program_abbrev\": \"CommPeds\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"445\"\n    },\n    {\n        \"programID\": \"551\",\n        \"program_name\": \"Congestive Heart Failure\",\n        \"program_abbrev\": \"Cards-CHF\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"658\",\n        \"program_name\": \"Coordinator Training\",\n        \"program_abbrev\": \"CT\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"658\"\n    },\n    {\n        \"programID\": \"607\",\n        \"program_name\": \"Critical Care EEG\",\n        \"program_abbrev\": \"ICU-EEG\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"440\"\n    },\n    {\n        \"programID\": \"935\",\n        \"program_name\": \"Critical Care Medicine (2)\",\n        \"program_abbrev\": \"CCM-1\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"436\"\n    },\n    {\n        \"programID\": \"500\",\n        \"program_name\": \"Cytopathology\",\n        \"program_abbrev\": \"PATH-CYTO\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"444\"\n    },\n    {\n        \"programID\": \"937\",\n        \"program_name\": \"Defense Against the Dark Arts\",\n        \"program_abbrev\": \"DADA\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"936\"\n    },\n    {\n        \"programID\": \"645\",\n        \"program_name\": \"Demo - Complete\",\n        \"program_abbrev\": \"Demo-Complete\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"481\"\n    },\n    {\n        \"programID\": \"1010\",\n        \"program_name\": \"Demo Program\",\n        \"program_abbrev\": \"DEMO\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"451\",\n        \"program_name\": \"Dentistry\",\n        \"program_abbrev\": \"DEN\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"451\"\n    },\n    {\n        \"programID\": \"1006\",\n        \"program_name\": \"Dentistry - Peds\",\n        \"program_abbrev\": \"DENT - PEDS\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"1006\"\n    },\n    {\n        \"programID\": \"620\",\n        \"program_name\": \"Department of Emergency Medicine\",\n        \"program_abbrev\": \"DPTEM\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"620\"\n    },\n    {\n        \"programID\": \"438\",\n        \"program_name\": \"Dermatology\",\n        \"program_abbrev\": \"DERM\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"571\",\n        \"program_name\": \"Dermatology/Neonatology\",\n        \"program_abbrev\": \"Derm/Neonat\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"462\",\n        \"program_name\": \"Dermatopathology\",\n        \"program_abbrev\": \"DERM-PATH\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"438\"\n    },\n    {\n        \"programID\": \"517\",\n        \"program_name\": \"Developmental-Behavioral Pediatrics\",\n        \"program_abbrev\": \"PEDS DEV-BEHAV\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"445\"\n    },\n    {\n        \"programID\": \"446\",\n        \"program_name\": \"Diagnostic Radiology\",\n        \"program_abbrev\": \"DR\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"446\"\n    },\n    {\n        \"programID\": \"567\",\n        \"program_name\": \"Diagnostic Radiology/Nuclear Cardiology\",\n        \"program_abbrev\": \"Nuc Card\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"568\",\n        \"program_name\": \"Diagnostic Radiology/Vascular Surgery\",\n        \"program_abbrev\": \"Rad/Vasc Surg\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"1007\",\n        \"program_name\": \"Do Not Touch\",\n        \"program_abbrev\": \"DNT\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"560\",\n        \"program_name\": \"ECHO Cardiology\",\n        \"program_abbrev\": \"IM-ECHO\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"553\",\n        \"program_name\": \"Elbow & Shoulder Orthopaedics\",\n        \"program_abbrev\": \"Elb&Shoul\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"495\"\n    },\n    {\n        \"programID\": \"464\",\n        \"program_name\": \"Emergency Medical Services\",\n        \"program_abbrev\": \"EMS\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"620\"\n    },\n    {\n        \"programID\": \"437\",\n        \"program_name\": \"Emergency Medicine\",\n        \"program_abbrev\": \"EM\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"620\"\n    },\n    {\n        \"programID\": \"613\",\n        \"program_name\": \"Emergency Medicine Physician Assistant Residency Program\",\n        \"program_abbrev\": \"EMPA\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"620\"\n    },\n    {\n        \"programID\": \"1025\",\n        \"program_name\": \"Emma's test\",\n        \"program_abbrev\": \"ET\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"1025\"\n    },\n    {\n        \"programID\": \"535\",\n        \"program_name\": \"Endocrine Surgery\",\n        \"program_abbrev\": \"S-ENDO\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"447\"\n    },\n    {\n        \"programID\": \"470\",\n        \"program_name\": \"Endocrinology, Diabetes, Metabolism\",\n        \"program_abbrev\": \"IM-EDM\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"471\",\n        \"program_name\": \"Endoscopic Ultrasound\",\n        \"program_abbrev\": \"IM-EU\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"485\",\n        \"program_name\": \"Epilepsy\",\n        \"program_abbrev\": \"N-EP\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"440\"\n    },\n    {\n        \"programID\": \"487\",\n        \"program_name\": \"Epilepsy Surgery\",\n        \"program_abbrev\": \"NS-EP\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"441\"\n    },\n    {\n        \"programID\": \"986\",\n        \"program_name\": \"Epilepsy Surgery\",\n        \"program_abbrev\": \"EPSURG1\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"985\"\n    },\n    {\n        \"programID\": \"635\",\n        \"program_name\": \"Family Medicine\",\n        \"program_abbrev\": \"FM\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"635\"\n    },\n    {\n        \"programID\": \"1014\",\n        \"program_name\": \"Family Medicine - HH\",\n        \"program_abbrev\": \"FMHH\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"605\",\n        \"program_name\": \"Family Planning Fellowship\",\n        \"program_abbrev\": \"FamPlan\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"443\"\n    },\n    {\n        \"programID\": \"492\",\n        \"program_name\": \"Female Pelvic Medicine and Reconstructive Surgery\",\n        \"program_abbrev\": \"OB-URO\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"443\"\n    },\n    {\n        \"programID\": \"1008\",\n        \"program_name\": \"Firm Test 2\",\n        \"program_abbrev\": \"Firm Test 2\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"1008\"\n    },\n    {\n        \"programID\": \"916\",\n        \"program_name\": \"Firms - Testing\",\n        \"program_abbrev\": \"FT\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"916\"\n    },\n    {\n        \"programID\": \"917\",\n        \"program_name\": \"Firms Testing\",\n        \"program_abbrev\": \"FT1\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"917\"\n    },\n    {\n        \"programID\": \"520\",\n        \"program_name\": \"Forensic Psychiatry\",\n        \"program_abbrev\": \"FORENSIC\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"435\"\n    },\n    {\n        \"programID\": \"562\",\n        \"program_name\": \"Gastroenterology\",\n        \"program_abbrev\": \"S-GASTRO\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"447\"\n    },\n    {\n        \"programID\": \"472\",\n        \"program_name\": \"Gastroenterology\",\n        \"program_abbrev\": \"IM-GASTRO\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"473\",\n        \"program_name\": \"Geriatric Medicine\",\n        \"program_abbrev\": \"IM-GER\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"521\",\n        \"program_name\": \"Geriatric Psychiatry\",\n        \"program_abbrev\": \"PSYCH-GERI\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"435\"\n    },\n    {\n        \"programID\": \"502\",\n        \"program_name\": \"GI Pathology\",\n        \"program_abbrev\": \"PATH-GI\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"444\"\n    },\n    {\n        \"programID\": \"883\",\n        \"program_name\": \"GME Brown Bags\",\n        \"program_abbrev\": \"TRAIN-BB\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"918\",\n        \"program_name\": \"GME Office Workshop\",\n        \"program_abbrev\": \"GOW\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"918\"\n    },\n    {\n        \"programID\": \"919\",\n        \"program_name\": \"GME Program 1\",\n        \"program_abbrev\": \"GP1\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"918\"\n    },\n    {\n        \"programID\": \"920\",\n        \"program_name\": \"GME Program 2\",\n        \"program_abbrev\": \"GP2\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"918\"\n    },\n    {\n        \"programID\": \"921\",\n        \"program_name\": \"GME Program 3\",\n        \"program_abbrev\": \"GP3\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"918\"\n    },\n    {\n        \"programID\": \"489\",\n        \"program_name\": \"Gynecologic Oncology\",\n        \"program_abbrev\": \"OB-ONC\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"443\"\n    },\n    {\n        \"programID\": \"540\",\n        \"program_name\": \"Hand Surgery - Plastics\",\n        \"program_abbrev\": \"S-HAND\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"447\"\n    },\n    {\n        \"programID\": \"593\",\n        \"program_name\": \"Headache Medicine\",\n        \"program_abbrev\": \"Headache\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"440\"\n    },\n    {\n        \"programID\": \"503\",\n        \"program_name\": \"Hematology\",\n        \"program_abbrev\": \"PATH-HEM\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"474\",\n        \"program_name\": \"Hematology-Oncology\",\n        \"program_abbrev\": \"IM-HO\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"600\",\n        \"program_name\": \"Hospice and Palliative Medicine\",\n        \"program_abbrev\": \"Palliative Care\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"1022\",\n        \"program_name\": \"How to be a Doctor\",\n        \"program_abbrev\": \"HJ\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"1022\"\n    },\n    {\n        \"programID\": \"616\",\n        \"program_name\": \"Hyperbaric Emergency Medicine\",\n        \"program_abbrev\": \"HEM\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"620\"\n    },\n    {\n        \"programID\": \"923\",\n        \"program_name\": \"IM (Internal Medicine)\",\n        \"program_abbrev\": \"IM_\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"923\"\n    },\n    {\n        \"programID\": \"476\",\n        \"program_name\": \"Infectious Diseases\",\n        \"program_abbrev\": \"IM-ID\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"434\",\n        \"program_name\": \"Internal Medicine\",\n        \"program_abbrev\": \"IM\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"890\",\n        \"program_name\": \"Internal Medicine - Demo \",\n        \"program_abbrev\": \"TP3\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"887\"\n    },\n    {\n        \"programID\": \"1011\",\n        \"program_name\": \"Internal Medicine - HH\",\n        \"program_abbrev\": \"IMHH\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"1011\"\n    },\n    {\n        \"programID\": \"481\",\n        \"program_name\": \"Internal Medicine - PRIMARY CARE\",\n        \"program_abbrev\": \"IM-PC\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"608\",\n        \"program_name\": \"Internal Medicine - Waterbury Hospital\",\n        \"program_abbrev\": \"IM-WH\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"608\"\n    },\n    {\n        \"programID\": \"586\",\n        \"program_name\": \"Internal Medicine - YSR\",\n        \"program_abbrev\": \"IM-YSR\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"586\"\n    },\n    {\n        \"programID\": \"617\",\n        \"program_name\": \"INTERNAL MEDICINE TEST PROGRAM\",\n        \"program_abbrev\": \"IM TP\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"439\",\n        \"program_name\": \"Internal Medicine/Pediatrics\",\n        \"program_abbrev\": \"MED-PEDS\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"439\"\n    },\n    {\n        \"programID\": \"477\",\n        \"program_name\": \"Interventional Cardiology\",\n        \"program_abbrev\": \"IM-IC\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"989\",\n        \"program_name\": \"JJTEST\",\n        \"program_abbrev\": \"JJTEST\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"989\"\n    },\n    {\n        \"programID\": \"996\",\n        \"program_name\": \"Junker44 Test IM\",\n        \"program_abbrev\": \"Junker44 Test I\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"997\",\n        \"program_name\": \"Junker44 Test P\",\n        \"program_abbrev\": \"Junker44 Test P\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"881\",\n        \"program_name\": \"Knowledge Distribution\",\n        \"program_abbrev\": \"KD\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"577\",\n        \"program_name\": \"Laboratory Medicine\",\n        \"program_abbrev\": \"LAB\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"490\",\n        \"program_name\": \"Maternal-Fetal Medicine\",\n        \"program_abbrev\": \"OB-MFM\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"443\"\n    },\n    {\n        \"programID\": \"504\",\n        \"program_name\": \"Medical Microbiology\",\n        \"program_abbrev\": \"PATH-MICRO\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"444\"\n    },\n    {\n        \"programID\": \"536\",\n        \"program_name\": \"Minimally Invasive Surgery\",\n        \"program_abbrev\": \"S;MINIMAL\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"447\"\n    },\n    {\n        \"programID\": \"880\",\n        \"program_name\": \"Mobile App Demo Program\",\n        \"program_abbrev\": \"MobileApp\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"481\"\n    },\n    {\n        \"programID\": \"505\",\n        \"program_name\": \"Molecular Genetic Pathology\",\n        \"program_abbrev\": \"PATH-GEN\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"444\"\n    },\n    {\n        \"programID\": \"594\",\n        \"program_name\": \"Movement Disorders\",\n        \"program_abbrev\": \"MovDis\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"440\"\n    },\n    {\n        \"programID\": \"526\",\n        \"program_name\": \"MRI Fellowship\",\n        \"program_abbrev\": \"RADS-MRI\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"446\"\n    },\n    {\n        \"programID\": \"527\",\n        \"program_name\": \"Musculoskeletal Radiology\",\n        \"program_abbrev\": \"RADS-MUSC\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"446\"\n    },\n    {\n        \"programID\": \"508\",\n        \"program_name\": \"Neonatal-Perinatal Medicine\",\n        \"program_abbrev\": \"PEDS-NPM\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"445\"\n    },\n    {\n        \"programID\": \"1002\",\n        \"program_name\": \"Neonatal-Perinatal Medicine\",\n        \"program_abbrev\": \"NPM-BTH\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"1002\"\n    },\n    {\n        \"programID\": \"479\",\n        \"program_name\": \"Nephrology\",\n        \"program_abbrev\": \"IM-NEPH\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"556\",\n        \"program_name\": \"Neuro Multiple Sclerosis\",\n        \"program_abbrev\": \"Neuro-MS\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"440\"\n    },\n    {\n        \"programID\": \"552\",\n        \"program_name\": \"Neuro-Oncology\",\n        \"program_abbrev\": \"Neuro-Onc\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"440\"\n    },\n    {\n        \"programID\": \"611\",\n        \"program_name\": \"Neuro-Ophthalmology\",\n        \"program_abbrev\": \"NeuroOph\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"595\",\n        \"program_name\": \"Neurocritical Care\",\n        \"program_abbrev\": \"NeuroICU\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"440\"\n    },\n    {\n        \"programID\": \"440\",\n        \"program_name\": \"Neurology\",\n        \"program_abbrev\": \"NEURO\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"440\"\n    },\n    {\n        \"programID\": \"572\",\n        \"program_name\": \"Neurology/Neurophysiology\",\n        \"program_abbrev\": \"NeuroPhys\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"486\",\n        \"program_name\": \"Neuromuscular Medicine\",\n        \"program_abbrev\": \"N-NM\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"440\"\n    },\n    {\n        \"programID\": \"506\",\n        \"program_name\": \"Neuropathology\",\n        \"program_abbrev\": \"PATH-NEURO\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"444\"\n    },\n    {\n        \"programID\": \"528\",\n        \"program_name\": \"Neuroradiology\",\n        \"program_abbrev\": \"RADS-Neuro\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"446\"\n    },\n    {\n        \"programID\": \"441\",\n        \"program_name\": \"Neurosurgery\",\n        \"program_abbrev\": \"NS\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"441\"\n    },\n    {\n        \"programID\": \"985\",\n        \"program_name\": \"Neurosurgery (TINA)\",\n        \"program_abbrev\": \"NEURSURG\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"985\"\n    },\n    {\n        \"programID\": \"488\",\n        \"program_name\": \"Neurovascular Surgery\",\n        \"program_abbrev\": \"NS-NVS\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"441\"\n    },\n    {\n        \"programID\": \"561\",\n        \"program_name\": \"Nuclear Cardiology\",\n        \"program_abbrev\": \"Cards-Nuc\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"529\",\n        \"program_name\": \"Nuclear Radiology\",\n        \"program_abbrev\": \"RADS-NUC\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"446\"\n    },\n    {\n        \"programID\": \"457\",\n        \"program_name\": \"Obstetrical Anesthesiology\",\n        \"program_abbrev\": \"ANES-OB\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"436\"\n    },\n    {\n        \"programID\": \"573\",\n        \"program_name\": \"Obstetrics & Gynecology/Urology/Gynecology\",\n        \"program_abbrev\": \"OBGYN/URO/GYN\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"443\",\n        \"program_name\": \"Obstetrics and Gynecology\",\n        \"program_abbrev\": \"OB\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"443\"\n    },\n    {\n        \"programID\": \"639\",\n        \"program_name\": \"Oculoplastics\",\n        \"program_abbrev\": \"OCULO\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"450\"\n    },\n    {\n        \"programID\": \"450\",\n        \"program_name\": \"Ophthalmology\",\n        \"program_abbrev\": \"OPHTH\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"450\"\n    },\n    {\n        \"programID\": \"585\",\n        \"program_name\": \"Oral Maxillofacial Surgery\",\n        \"program_abbrev\": \"OMFS\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"451\"\n    },\n    {\n        \"programID\": \"495\",\n        \"program_name\": \"Orthopaedic Surgery\",\n        \"program_abbrev\": \"ORTHO\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"495\"\n    },\n    {\n        \"programID\": \"497\",\n        \"program_name\": \"Orthopaedic Surgery of the Spine\",\n        \"program_abbrev\": \"ORTH-SPINE\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"495\"\n    },\n    {\n        \"programID\": \"570\",\n        \"program_name\": \"Orthopedics/Oncology\",\n        \"program_abbrev\": \"Ortho/Onc\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"634\",\n        \"program_name\": \"Osteopathic Family Medicine (MJD)\",\n        \"program_abbrev\": \"OFM-MJD\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"634\"\n    },\n    {\n        \"programID\": \"537\",\n        \"program_name\": \"Otolaryngology\",\n        \"program_abbrev\": \"S-ENT\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"447\"\n    },\n    {\n        \"programID\": \"924\",\n        \"program_name\": \"PA TRAINING (20180809)\",\n        \"program_abbrev\": \"PA_TRAIN\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"924\"\n    },\n    {\n        \"programID\": \"458\",\n        \"program_name\": \"Pain Medicine\",\n        \"program_abbrev\": \"ANES-PAIN\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"444\",\n        \"program_name\": \"Pathology - Anatomic & Clinical\",\n        \"program_abbrev\": \"PATH-AP/CP\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"444\"\n    },\n    {\n        \"programID\": \"460\",\n        \"program_name\": \"Pediatric Anesthesiology\",\n        \"program_abbrev\": \"ANES-PEDS\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"436\"\n    },\n    {\n        \"programID\": \"509\",\n        \"program_name\": \"Pediatric Cardiology\",\n        \"program_abbrev\": \"PEDS-CARD\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"445\"\n    },\n    {\n        \"programID\": \"510\",\n        \"program_name\": \"Pediatric Critical Care\",\n        \"program_abbrev\": \"PEDS-PCC\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"445\"\n    },\n    {\n        \"programID\": \"461\",\n        \"program_name\": \"Pediatric Dentistry\",\n        \"program_abbrev\": \"DENT-PED\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"451\"\n    },\n    {\n        \"programID\": \"579\",\n        \"program_name\": \"Pediatric Dermatology\",\n        \"program_abbrev\": \"PediDerm\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"438\"\n    },\n    {\n        \"programID\": \"507\",\n        \"program_name\": \"Pediatric Emergency Medicine\",\n        \"program_abbrev\": \"PEDS-EM\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"445\"\n    },\n    {\n        \"programID\": \"511\",\n        \"program_name\": \"Pediatric Endocrinology\",\n        \"program_abbrev\": \"PEDS-ENDO\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"445\"\n    },\n    {\n        \"programID\": \"512\",\n        \"program_name\": \"Pediatric Gastroenterology\",\n        \"program_abbrev\": \"PEDS-GASTR\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"445\"\n    },\n    {\n        \"programID\": \"513\",\n        \"program_name\": \"Pediatric Hematology-Oncology\",\n        \"program_abbrev\": \"PEDS-HEM\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"445\"\n    },\n    {\n        \"programID\": \"514\",\n        \"program_name\": \"Pediatric Infectious Diseases\",\n        \"program_abbrev\": \"PEDS-ID\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"445\"\n    },\n    {\n        \"programID\": \"998\",\n        \"program_name\": \"Pediatric Medicine\",\n        \"program_abbrev\": \"PED-MH\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"998\"\n    },\n    {\n        \"programID\": \"515\",\n        \"program_name\": \"Pediatric Nephrology\",\n        \"program_abbrev\": \"PEDS-NEPH\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"445\"\n    },\n    {\n        \"programID\": \"516\",\n        \"program_name\": \"Pediatric Pulmonology\",\n        \"program_abbrev\": \"PEDS-PULM\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"445\"\n    },\n    {\n        \"programID\": \"530\",\n        \"program_name\": \"Pediatric Radiology\",\n        \"program_abbrev\": \"RADS-PEDI\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"446\"\n    },\n    {\n        \"programID\": \"538\",\n        \"program_name\": \"Pediatric Surgery\",\n        \"program_abbrev\": \"S-PEDI\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"447\"\n    },\n    {\n        \"programID\": \"445\",\n        \"program_name\": \"Pediatrics\",\n        \"program_abbrev\": \"PEDS\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"445\"\n    },\n    {\n        \"programID\": \"1016\",\n        \"program_name\": \"Pediatrics - HH\",\n        \"program_abbrev\": \"Peds-HH\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"1016\"\n    },\n    {\n        \"programID\": \"566\",\n        \"program_name\": \"Pediatrics/Ambulatory\",\n        \"program_abbrev\": \"Peds/Amb\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"565\",\n        \"program_name\": \"Pediatrics/Immunology\",\n        \"program_abbrev\": \"Peds/Immun\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"575\",\n        \"program_name\": \"Pediatrics/Neurology (PED-HSO)\",\n        \"program_abbrev\": \"Peds/Neuro\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"569\",\n        \"program_name\": \"Pediatrics/Pulmonary & Critical Care\",\n        \"program_abbrev\": \"Peds/Pulm CC\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"598\",\n        \"program_name\": \"Peripheral Vascular Cardiology\",\n        \"program_abbrev\": \"Periph Vasc\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"548\",\n        \"program_name\": \"Plastic Surgery\",\n        \"program_abbrev\": \"S-PLS-ind\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"447\"\n    },\n    {\n        \"programID\": \"879\",\n        \"program_name\": \"Plastics surgery-burn\",\n        \"program_abbrev\": \"ps burn\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"447\"\n    },\n    {\n        \"programID\": \"496\",\n        \"program_name\": \"Podiatry\",\n        \"program_abbrev\": \"POD\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"496\"\n    },\n    {\n        \"programID\": \"523\",\n        \"program_name\": \"Post  Tramatic Stress Disorder\",\n        \"program_abbrev\": \"Psych-PTSD\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"435\"\n    },\n    {\n        \"programID\": \"480\",\n        \"program_name\": \"Preventive Medicine (Occupational)\",\n        \"program_abbrev\": \"IM-PM\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"463\",\n        \"program_name\": \"Procedural Dermatology\",\n        \"program_abbrev\": \"DERM-PROC\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"438\"\n    },\n    {\n        \"programID\": \"435\",\n        \"program_name\": \"Psychiatry\",\n        \"program_abbrev\": \"PSYCH\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"435\"\n    },\n    {\n        \"programID\": \"581\",\n        \"program_name\": \"Psychology\",\n        \"program_abbrev\": \"Psychology\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"581\"\n    },\n    {\n        \"programID\": \"604\",\n        \"program_name\": \"Psychology VA\",\n        \"program_abbrev\": \"Psychology VA\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"604\"\n    },\n    {\n        \"programID\": \"559\",\n        \"program_name\": \"Psychopharmacology\",\n        \"program_abbrev\": \"Psych-Pharm\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"435\"\n    },\n    {\n        \"programID\": \"522\",\n        \"program_name\": \"Psychosomatic Medicine\",\n        \"program_abbrev\": \"PSYCH0-MED\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"435\"\n    },\n    {\n        \"programID\": \"558\",\n        \"program_name\": \"Public Psychiatry\",\n        \"program_abbrev\": \"PubPsych\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"435\"\n    },\n    {\n        \"programID\": \"482\",\n        \"program_name\": \"Pulmonary and Critical Care Medicine\",\n        \"program_abbrev\": \"IM-PCCM\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"988\",\n        \"program_name\": \"QA Program\",\n        \"program_abbrev\": \"QAP\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"988\"\n    },\n    {\n        \"programID\": \"448\",\n        \"program_name\": \"Radiation Oncology\",\n        \"program_abbrev\": \"RAD ONC\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"448\"\n    },\n    {\n        \"programID\": \"578\",\n        \"program_name\": \"Renal/GU\",\n        \"program_abbrev\": \"renalgu\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"444\"\n    },\n    {\n        \"programID\": \"491\",\n        \"program_name\": \"Reproductive & Endocrine-Infertility Medicine  (REI)\",\n        \"program_abbrev\": \"OB-REI\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"443\"\n    },\n    {\n        \"programID\": \"494\",\n        \"program_name\": \"Retina\",\n        \"program_abbrev\": \"OPHTH-RET\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"450\"\n    },\n    {\n        \"programID\": \"483\",\n        \"program_name\": \"Rheumatology\",\n        \"program_abbrev\": \"IM-RHEUM\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"637\",\n        \"program_name\": \"Rural Medicine for the Family\",\n        \"program_abbrev\": \"RULM\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"637\"\n    },\n    {\n        \"programID\": \"614\",\n        \"program_name\": \"Sandbox API Test Program\",\n        \"program_abbrev\": \"QPSF\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"435\"\n    },\n    {\n        \"programID\": \"484\",\n        \"program_name\": \"Sleep Medicine\",\n        \"program_abbrev\": \"IM-SLEEP\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"1003\",\n        \"program_name\": \"Split Example - IM\",\n        \"program_abbrev\": \"IM Split\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"1003\"\n    },\n    {\n        \"programID\": \"591\",\n        \"program_name\": \"Stereotactic Radiosurgery\",\n        \"program_abbrev\": \"ST Rads\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"441\"\n    },\n    {\n        \"programID\": \"597\",\n        \"program_name\": \"Structural Heart Disease\",\n        \"program_abbrev\": \"Structral Heart\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"447\",\n        \"program_name\": \"Surgery\",\n        \"program_abbrev\": \"S\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"447\"\n    },\n    {\n        \"programID\": \"1015\",\n        \"program_name\": \"Surgery (Demo)\",\n        \"program_abbrev\": \"SURG\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"1015\"\n    },\n    {\n        \"programID\": \"1001\",\n        \"program_name\": \"Surgery - BTH\",\n        \"program_abbrev\": \"S-BTH\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"1001\"\n    },\n    {\n        \"programID\": \"1013\",\n        \"program_name\": \"Surgery - HH\",\n        \"program_abbrev\": \"SHH\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"1013\"\n    },\n    {\n        \"programID\": \"534\",\n        \"program_name\": \"Surgery Critical Care\",\n        \"program_abbrev\": \"S-CRITCARE\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"447\"\n    },\n    {\n        \"programID\": \"564\",\n        \"program_name\": \"Surgery/Oral Surgery\",\n        \"program_abbrev\": \"Surg/Oral\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"574\",\n        \"program_name\": \"Surgery/PA Program\",\n        \"program_abbrev\": \"SURG/PA\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"580\",\n        \"program_name\": \"Surgical Pathology\",\n        \"program_abbrev\": \"SurgPath\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"444\"\n    },\n    {\n        \"programID\": \"909\",\n        \"program_name\": \"Survey ABC\",\n        \"program_abbrev\": \"Survey\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"1009\",\n        \"program_name\": \"Test 1\",\n        \"program_abbrev\": \"TP31\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"1005\",\n        \"program_name\": \"Test Program (ALC)\",\n        \"program_abbrev\": \"ALC\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"1004\",\n        \"program_name\": \"Test Program (SSALC)\",\n        \"program_abbrev\": \"ACS\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"884\",\n        \"program_name\": \"Test Training\",\n        \"program_abbrev\": \"TTTrain\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"1019\",\n        \"program_name\": \"Testing Program because IUSM\",\n        \"program_abbrev\": \"TPIUSM\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"1019\"\n    },\n    {\n        \"programID\": \"590\",\n        \"program_name\": \"Thoracic Surg Fellowship\",\n        \"program_abbrev\": \"Thoracic Fellow\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"447\"\n    },\n    {\n        \"programID\": \"541\",\n        \"program_name\": \"Thoracic Surgery - Independent\",\n        \"program_abbrev\": \"S-THORACIC\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"447\"\n    },\n    {\n        \"programID\": \"601\",\n        \"program_name\": \"Thoracic Surgery - Integrated\",\n        \"program_abbrev\": \"Thoracic I-6\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"447\"\n    },\n    {\n        \"programID\": \"886\",\n        \"program_name\": \"Tina Redd Program\",\n        \"program_abbrev\": \"TR\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"646\",\n        \"program_name\": \"Tom's Rhinoplasty Institute of Colorado (TRIC)\",\n        \"program_abbrev\": \"TRIC\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"646\"\n    },\n    {\n        \"programID\": \"888\",\n        \"program_name\": \"Training Program 1\",\n        \"program_abbrev\": \"TP1\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"887\"\n    },\n    {\n        \"programID\": \"889\",\n        \"program_name\": \"Training Program 2\",\n        \"program_abbrev\": \"TP2\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"887\"\n    },\n    {\n        \"programID\": \"938\",\n        \"program_name\": \"Transfiguration\",\n        \"program_abbrev\": \"TRF\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"936\"\n    },\n    {\n        \"programID\": \"584\",\n        \"program_name\": \"Transitional Year\",\n        \"program_abbrev\": \"TY\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"584\"\n    },\n    {\n        \"programID\": \"475\",\n        \"program_name\": \"Transplant Hepatology\",\n        \"program_abbrev\": \"IM-HEP\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"434\"\n    },\n    {\n        \"programID\": \"542\",\n        \"program_name\": \"Transplant Surgery\",\n        \"program_abbrev\": \"S-TRANSPLANT\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"447\"\n    },\n    {\n        \"programID\": \"940\",\n        \"program_name\": \"UC Program 1\",\n        \"program_abbrev\": \"UCP1\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"949\",\n        \"program_name\": \"UC Program 10\",\n        \"program_abbrev\": \"UCP10\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"950\",\n        \"program_name\": \"UC Program 11\",\n        \"program_abbrev\": \"UCP11\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"951\",\n        \"program_name\": \"UC Program 12\",\n        \"program_abbrev\": \"UCP12\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"952\",\n        \"program_name\": \"UC Program 13\",\n        \"program_abbrev\": \"UCP13\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"953\",\n        \"program_name\": \"UC Program 14\",\n        \"program_abbrev\": \"UCP14\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"954\",\n        \"program_name\": \"UC Program 15\",\n        \"program_abbrev\": \"UCP15\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"955\",\n        \"program_name\": \"UC Program 16\",\n        \"program_abbrev\": \"UCP16\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"956\",\n        \"program_name\": \"UC Program 17\",\n        \"program_abbrev\": \"UCP17\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"957\",\n        \"program_name\": \"UC Program 18\",\n        \"program_abbrev\": \"UCP18\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"958\",\n        \"program_name\": \"UC Program 19\",\n        \"program_abbrev\": \"UCP19\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"941\",\n        \"program_name\": \"UC Program 2\",\n        \"program_abbrev\": \"UCP2\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"959\",\n        \"program_name\": \"UC Program 20\",\n        \"program_abbrev\": \"UCP20\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"960\",\n        \"program_name\": \"UC Program 21\",\n        \"program_abbrev\": \"UCP21\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"961\",\n        \"program_name\": \"UC Program 22\",\n        \"program_abbrev\": \"UCP22\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"962\",\n        \"program_name\": \"UC Program 23\",\n        \"program_abbrev\": \"UCP23\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"963\",\n        \"program_name\": \"UC Program 24\",\n        \"program_abbrev\": \"UCP24\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"964\",\n        \"program_name\": \"UC Program 25\",\n        \"program_abbrev\": \"UCP25\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"965\",\n        \"program_name\": \"UC Program 26\",\n        \"program_abbrev\": \"UCP26\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"966\",\n        \"program_name\": \"UC Program 27\",\n        \"program_abbrev\": \"UCP27\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"967\",\n        \"program_name\": \"UC Program 28\",\n        \"program_abbrev\": \"UCP28\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"942\",\n        \"program_name\": \"UC Program 3\",\n        \"program_abbrev\": \"UCP3\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"943\",\n        \"program_name\": \"UC Program 4\",\n        \"program_abbrev\": \"UCP4\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"944\",\n        \"program_name\": \"UC Program 5\",\n        \"program_abbrev\": \"UCP5\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"945\",\n        \"program_name\": \"UC Program 6\",\n        \"program_abbrev\": \"UCP6\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"946\",\n        \"program_name\": \"UC Program 7\",\n        \"program_abbrev\": \"UCP7\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"947\",\n        \"program_name\": \"UC Program 8\",\n        \"program_abbrev\": \"UCP8\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"948\",\n        \"program_name\": \"UC Program 9\",\n        \"program_abbrev\": \"UCP9\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"968\",\n        \"program_name\": \"UCTW Program 1\",\n        \"program_abbrev\": \"UCTW1\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"977\",\n        \"program_name\": \"UCTW Program 10\",\n        \"program_abbrev\": \"UCTW10\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"978\",\n        \"program_name\": \"UCTW Program 11\",\n        \"program_abbrev\": \"UCTW11\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"979\",\n        \"program_name\": \"UCTW Program 12\",\n        \"program_abbrev\": \"UCTW12\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"980\",\n        \"program_name\": \"UCTW Program 13\",\n        \"program_abbrev\": \"UCTW13\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"981\",\n        \"program_name\": \"UCTW Program 14\",\n        \"program_abbrev\": \"UCTW14\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"982\",\n        \"program_name\": \"UCTW Program 15\",\n        \"program_abbrev\": \"UCTW15\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"983\",\n        \"program_name\": \"UCTW Program 16\",\n        \"program_abbrev\": \"UCTW16\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"984\",\n        \"program_name\": \"UCTW Program 17\",\n        \"program_abbrev\": \"UCTW17\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"969\",\n        \"program_name\": \"UCTW Program 2\",\n        \"program_abbrev\": \"UCTW2\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"970\",\n        \"program_name\": \"UCTW Program 3\",\n        \"program_abbrev\": \"UCTW3\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"971\",\n        \"program_name\": \"UCTW Program 4\",\n        \"program_abbrev\": \"UCTW4\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"972\",\n        \"program_name\": \"UCTW Program 5\",\n        \"program_abbrev\": \"UCTW5\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"973\",\n        \"program_name\": \"UCTW Program 6\",\n        \"program_abbrev\": \"UCTW6\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"974\",\n        \"program_name\": \"UCTW Program 7\",\n        \"program_abbrev\": \"UCTW7\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"975\",\n        \"program_name\": \"UCTW Program 8\",\n        \"program_abbrev\": \"UCTW8\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"976\",\n        \"program_name\": \"UCTW Program 9\",\n        \"program_abbrev\": \"UCTW9\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"939\"\n    },\n    {\n        \"programID\": \"465\",\n        \"program_name\": \"Ultrasound\",\n        \"program_abbrev\": \"EM-US\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"620\"\n    },\n    {\n        \"programID\": \"885\",\n        \"program_name\": \"UME Brown Bags\",\n        \"program_abbrev\": \"UMEBB\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"1023\",\n        \"program_name\": \"Undergraduate Medical Education\",\n        \"program_abbrev\": \"UME\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"1023\"\n    },\n    {\n        \"programID\": \"532\",\n        \"program_name\": \"Vascular and Interventional Radiology\",\n        \"program_abbrev\": \"RADS-VIR\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"446\"\n    },\n    {\n        \"programID\": \"596\",\n        \"program_name\": \"Vascular Neurology\",\n        \"program_abbrev\": \"N-Stroke\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"440\"\n    },\n    {\n        \"programID\": \"544\",\n        \"program_name\": \"Vascular Surgery - Independent\",\n        \"program_abbrev\": \"S-VS-fellow\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"447\"\n    },\n    {\n        \"programID\": \"545\",\n        \"program_name\": \"Vascular Surgery - Integrated\",\n        \"program_abbrev\": \"S-VS-resident\",\n        \"program_level\": \"2\",\n        \"dept_programID\": \"447\"\n    },\n    {\n        \"programID\": \"563\",\n        \"program_name\": \"X-Legacy Programs\",\n        \"program_abbrev\": \"LEGACY\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"563\"\n    },\n    {\n        \"programID\": \"993\",\n        \"program_name\": \"xyz-Internal Medicine\",\n        \"program_abbrev\": \"xyz-Internal Me\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"0\"\n    },\n    {\n        \"programID\": \"915\",\n        \"program_name\": \"Z-Internal Medicine-JJ\",\n        \"program_abbrev\": \"Z-IM-JJ\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"915\"\n    },\n    {\n        \"programID\": \"922\",\n        \"program_name\": \"ztest\",\n        \"program_abbrev\": \"zt\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"922\"\n    },\n    {\n        \"programID\": \"878\",\n        \"program_name\": \"_Firm Based Program\",\n        \"program_abbrev\": \"FBP\",\n        \"program_level\": \"1\",\n        \"dept_programID\": \"878\"\n    }\n]"}],"_postman_id":"4a62c42d-4886-4a1b-beb8-f3057b8da3ac"},{"name":"programs/info","id":"af07039d-96f2-4ff1-a7a1-205fb08952fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>no input required</p>\n","key":"request","type":"text","value":"{\"programID\":4}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/programs/info","description":"<p>Get information about a given program.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td>programID</td><td>integer</td><td>yes</td><td></td><td></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td>programID</td><td>unique identifer for program</td><td>integer</td><td></td><td></td></tr><tr><td>program_name</td><td>full name of program</td><td>string</td><td></td><td></td></tr><tr><td>program_abbrev</td><td>abbreviation of program name</td><td>string</td><td></td><td></td></tr><tr><td>program_level</td><td>heirarchy level of program</td><td>integer</td><td></td><td></td></tr><tr><td>dept_programID</td><td>unique identifer for this program's department</td><td>integer</td><td></td><td></td></tr><tr><td>admin_userID</td><td>unique identifier (userID) of program admin user</td><td>integer</td><td></td><td></td></tr><tr><td>director_userID</td><td>unique identifier (userID) of program director</td><td>integer</td><td></td><td>userID will match a faculty userID, use users/faculty, users/facultyInfo, or users/facultySearch for more user details</td></tr><tr><td>associate_director_userIDs</td><td>userIDs for all associate program directors</td><td>array</td><td></td><td>userID will match a faculty userID, use users/faculty, users/facultyInfo, or users/facultySearch for more user details</td></tr></tbody></table>","urlObject":{"path":["programs","info"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"6f1fbd5f-210a-4775-891f-f5b57e5b1ee1","name":"programs/info","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"no input required","key":"request","type":"text","value":"{\"programID\":4}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/programs/info"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Thu, 10 Nov 2022 20:19:25 GMT"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!O3kWpEU9hi1FLQx7WsnXQYG5SzWDjfpCi4aNLjzAF+5mQPOHVzIuuTkRF0oBmYHfjdDc3ZBU/1xiNNk=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=16070400; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\"programID\":4,\"program_name\":\"Neurology\",\"program_abbrev\":\"NEURO\",\"program_level\":1,\"dept_programID\":4,\"admin_userID\":77369,\"director_userID\":85118,\"associate_director_userIDs\":[72987]}"}],"_postman_id":"af07039d-96f2-4ff1-a7a1-205fb08952fe"}],"id":"550de5ac-9bbe-473c-8695-2070e3e35d8b","_postman_id":"550de5ac-9bbe-473c-8695-2070e3e35d8b","description":""},{"name":"Resources","item":[],"id":"9b3e3316-293a-45c9-ba34-5e9d4187ab56","_postman_id":"9b3e3316-293a-45c9-ba34-5e9d4187ab56","description":""},{"name":"Schedules","item":[{"name":"schedules/enrollment","id":"0cdff2b3-6207-468a-8741-634639ce26ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"courseID\":616,\"periodID\":1861}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/enrollment","description":"<p>Retrieves a list of the students enrolled in a given course for a given period; includes recorded final grades.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>periodID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.06</td>\n        <td>Use schedules/periods to get a list of course period IDs. Use enrollmentperiods/periods to get more information about each periodID.</td>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>unique identifer for student</td>\n        <td>integer</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>first_name</td>\n        <td>first name of student</td>\n        <td>string</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>last_name</td>\n        <td>last name of student</td>\n        <td>string</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>grade</td>\n        <td>final grade recorded for student in the given course</td>\n        <td>string</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["schedules","enrollment"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"b27763ad-5857-4041-b9b2-106594319f26","name":"schedules/enrollment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"courseID\":616,\"periodID\":1861}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/enrollment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Jun 2020 16:08:49 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userID\": \"82751\",\n        \"first_name\": \"Johnna\",\n        \"last_name\": \"Agee\",\n        \"grade\": \"A\",\n        \"enrollmentID\": \"26322\"\n    },\n    {\n        \"userID\": \"95936\",\n        \"first_name\": \"Jill\",\n        \"last_name\": \"Anderson\",\n        \"grade\": null,\n        \"enrollmentID\": \"26323\"\n    }\n]"}],"_postman_id":"0cdff2b3-6207-468a-8741-634639ce26ea"},{"name":"schedules/years","id":"c85e2246-2d14-4ad9-bc0d-3f55b6a6b3ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>no input required</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/years","description":"<p>Retrieves a list of academic years and their IDs.</p>\n<h6>Input Variables</h6>\nNone\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>rotationsetID</td>\n        <td>unique identifier for academic year</td>\n        <td>integer</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>start_date</td>\n        <td>academic year start date</td>\n        <td>date</td>\n        <td>v1.00</td>\n        <td>Format: YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>end_date</td>\n        <td>academic year end date</td>\n        <td>date</td>\n        <td>v1.00</td>\n        <td>Format: YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>rotationset_title</td>\n        <td>title of academic year</td>\n        <td>string</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["schedules","years"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"773b6ff9-a3bb-4b96-b14f-03a1aa026c25","name":"schedules/years","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"no input required","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/years"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 18:55:01 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"rotationsetID\": \"11\",\n        \"start_date\": \"2011-07-01\",\n        \"end_date\": \"2012-06-30\",\n        \"rotationset_title\": \"July 1, 2011 - June 30, 2012\"\n    },\n    {\n        \"rotationsetID\": \"12\",\n        \"start_date\": \"2012-07-01\",\n        \"end_date\": \"2013-06-30\",\n        \"rotationset_title\": \"July 1, 2012 - June 30, 2013\"\n    },\n    {\n        \"rotationsetID\": \"13\",\n        \"start_date\": \"2013-07-01\",\n        \"end_date\": \"2014-06-30\",\n        \"rotationset_title\": \"July 1, 2013 - June 30, 2014\"\n    },\n    {\n        \"rotationsetID\": \"14\",\n        \"start_date\": \"2014-07-01\",\n        \"end_date\": \"2015-06-30\",\n        \"rotationset_title\": \"July 1, 2014 - June 30, 2015\"\n    },\n    {\n        \"rotationsetID\": \"15\",\n        \"start_date\": \"2015-07-01\",\n        \"end_date\": \"2016-06-30\",\n        \"rotationset_title\": \"July 1, 2015 - June 30, 2016\"\n    },\n    {\n        \"rotationsetID\": \"16\",\n        \"start_date\": \"2016-07-01\",\n        \"end_date\": \"2017-06-30\",\n        \"rotationset_title\": \"July 1, 2016 - June 30, 2017\"\n    },\n    {\n        \"rotationsetID\": \"17\",\n        \"start_date\": \"2017-07-01\",\n        \"end_date\": \"2018-06-30\",\n        \"rotationset_title\": \"July 1, 2017 - June 30, 2018\"\n    },\n    {\n        \"rotationsetID\": \"18\",\n        \"start_date\": \"2018-07-01\",\n        \"end_date\": \"2019-06-30\",\n        \"rotationset_title\": \"July 1, 2018 - June 30, 2019\"\n    },\n    {\n        \"rotationsetID\": \"19\",\n        \"start_date\": \"2019-07-01\",\n        \"end_date\": \"2020-06-30\",\n        \"rotationset_title\": \"July 1, 2019 - June 30, 2020\"\n    },\n    {\n        \"rotationsetID\": \"20\",\n        \"start_date\": \"2020-07-01\",\n        \"end_date\": \"2021-06-30\",\n        \"rotationset_title\": \"July 1, 2020 - June 30, 2021\"\n    },\n    {\n        \"rotationsetID\": \"21\",\n        \"start_date\": \"2021-07-01\",\n        \"end_date\": \"2022-06-30\",\n        \"rotationset_title\": \"July 1, 2021 - June 30, 2022\"\n    },\n    {\n        \"rotationsetID\": \"22\",\n        \"start_date\": \"2022-07-01\",\n        \"end_date\": \"2023-06-30\",\n        \"rotationset_title\": \"July 1, 2022 - June 30, 2023\"\n    },\n    {\n        \"rotationsetID\": \"23\",\n        \"start_date\": \"2023-07-01\",\n        \"end_date\": \"2024-06-30\",\n        \"rotationset_title\": \"July 1, 2023 - June 30, 2024\"\n    },\n    {\n        \"rotationsetID\": \"24\",\n        \"start_date\": \"2024-07-01\",\n        \"end_date\": \"2025-06-30\",\n        \"rotationset_title\": \"July 1, 2024 - June 30, 2025\"\n    },\n    {\n        \"rotationsetID\": \"25\",\n        \"start_date\": \"2025-07-01\",\n        \"end_date\": \"2026-06-30\",\n        \"rotationset_title\": \"July 1, 2025 - June 30, 2026\"\n    },\n    {\n        \"rotationsetID\": \"26\",\n        \"start_date\": \"2026-07-01\",\n        \"end_date\": \"2027-06-30\",\n        \"rotationset_title\": \"July 1, 2026 - June 30, 2027\"\n    },\n    {\n        \"rotationsetID\": \"27\",\n        \"start_date\": \"2027-07-01\",\n        \"end_date\": \"2028-06-30\",\n        \"rotationset_title\": \"July 1, 2027 - June 30, 2028\"\n    },\n    {\n        \"rotationsetID\": \"28\",\n        \"start_date\": \"2028-07-01\",\n        \"end_date\": \"2029-06-30\",\n        \"rotationset_title\": \"July 1, 2028 - June 30, 2029\"\n    },\n    {\n        \"rotationsetID\": \"29\",\n        \"start_date\": \"2029-07-01\",\n        \"end_date\": \"2030-06-30\",\n        \"rotationset_title\": \"July 1, 2029 - June 30, 2030\"\n    },\n    {\n        \"rotationsetID\": \"30\",\n        \"start_date\": \"2030-07-01\",\n        \"end_date\": \"2031-06-30\",\n        \"rotationset_title\": \"July 1, 2030 - June 30, 2031\"\n    },\n    {\n        \"rotationsetID\": \"31\",\n        \"start_date\": \"2031-07-01\",\n        \"end_date\": \"2032-06-30\",\n        \"rotationset_title\": \"July 1, 2031 - June 30, 2032\"\n    },\n    {\n        \"rotationsetID\": \"32\",\n        \"start_date\": \"2032-07-01\",\n        \"end_date\": \"2033-06-30\",\n        \"rotationset_title\": \"July 1, 2032 - June 30, 2033\"\n    },\n    {\n        \"rotationsetID\": \"33\",\n        \"start_date\": \"2033-07-01\",\n        \"end_date\": \"2034-06-30\",\n        \"rotationset_title\": \"July 1, 2033 - June 30, 2034\"\n    }\n]"}],"_postman_id":"c85e2246-2d14-4ad9-bc0d-3f55b6a6b3ca"},{"name":"schedules/clinics","id":"5b49e7ff-19d8-430e-a2a5-3f76a486f373","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"programID\":441}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/clinics","description":"<p>Retrieves a list of clinic definitions for a specified program.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>integer</td>\n        <td>Yes*</td>\n        <td>v0.90</td>\n        <td>Required if courseID not specified</td>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>integer</td>\n        <td>Yes*</td>\n        <td>v1.06</td>\n        <td>Required if courseID not specified</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>clinicnameID</td>\n        <td>unique identifier for clinic</td>\n        <td>integer</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>clinic_name</td>\n        <td>full name of clinic</td>\n        <td>string</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>clinic_abbrev</td>\n        <td>abbreviation of clinic name</td>\n        <td>string</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>clinic_status</td>\n        <td>status of clinic</td>\n        <td>integer</td>\n        <td>v1.00</td>\n        <td>Values: 1 = active, 0 = inactive</td>\n    </tr>\n</table>","urlObject":{"path":["schedules","clinics"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"f03c50c1-6bc8-4d40-8464-95c23611b652","name":"schedules/clinics","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"programID\":441}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/clinics"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 19:03:12 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"clinicnameID\": \"2392\",\n        \"clinic_name\": \"Neuro Clinic B\",\n        \"clinic_abbrev\": \"NCB\",\n        \"clinic_status\": \"1\"\n    },\n    {\n        \"clinicnameID\": \"1849\",\n        \"clinic_name\": \"Neurosurgery/Epilepsy\",\n        \"clinic_abbrev\": \"Epilepsy\",\n        \"clinic_status\": \"1\"\n    },\n    {\n        \"clinicnameID\": \"1374\",\n        \"clinic_name\": \"Residents Spine Clinic \",\n        \"clinic_abbrev\": \"Spine Clin\",\n        \"clinic_status\": \"1\"\n    },\n    {\n        \"clinicnameID\": \"1838\",\n        \"clinic_name\": \"VA Clinic\",\n        \"clinic_abbrev\": \"VA Clinic\",\n        \"clinic_status\": \"1\"\n    }\n]"}],"_postman_id":"5b49e7ff-19d8-430e-a2a5-3f76a486f373"},{"name":"schedules/clinicAssign","id":"7465e7e1-7601-40d1-b17f-705a5d96a5c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"programID\":441}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/clinicAssign","description":"<p>Adds a clinic to the schedule.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>clinicnameID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Resident, Faculty, or Student</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>periodID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>??</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["schedules","clinicAssign"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"57262bd1-9a52-4226-b55c-8d7c1dc7ec3f","name":"schedules/clinicAssign","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"programID\":441}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/clinicAssign"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7465e7e1-7601-40d1-b17f-705a5d96a5c6"},{"name":"schedules/clinicUnassign","id":"1986df85-3c13-4c36-93dd-61329cbfe5d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"programID\":441}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/clinicUnassign","description":"<p>Supports clicID as part of the request.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>clinicnameID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Resident, Faculty, or Student</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>periodID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Confirm clinic assigment removed</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["schedules","clinicUnassign"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"fe39fd0d-b7c1-4d24-ba11-022e0cec1627","name":"schedules/clinicAssign","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"programID\":441}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/clinicAssign"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1986df85-3c13-4c36-93dd-61329cbfe5d4"},{"name":"schedules/clinicCreate","id":"7ccc96d8-de2c-4a64-915f-77a241c82bb3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"programID\":441}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/clinicCreate","description":"<p>Adds a clinic to the schedule.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>clinicName</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>clinicAbbreviation</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>residentSlots</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>facultySlots</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>studentSlots</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>siteID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>programID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Resident, Faculty, or Student</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sharedprogramID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sharedclerkshipID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Confirm item created with clinicnameID</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["schedules","clinicCreate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"924a7700-3b88-485e-a506-82fd734509ce","name":"schedules/clinicCreate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"programID\":441}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/clinicAssign"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7ccc96d8-de2c-4a64-915f-77a241c82bb3"},{"name":"schedules/clinicPeriodCreate","id":"423aa29f-a4c3-402f-96a6-2351659f7fe5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"programID\":441}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/clinicPeriodCreate","description":"<p>Adds a new work period for our clinic.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>programID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>periodName</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>startTime</div><div><div><div><div></div></div></div><div></div></div></td><td><div>time</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Resident, Faculty, or Student</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>endTime</div><div><div><div><div></div></div></div><div></div></div></td><td><div>time</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Confirm item created with periodID</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["schedules","clinicPeriodCreate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"423aa29f-a4c3-402f-96a6-2351659f7fe5"},{"name":"schedules/clinicPeriods","id":"1497c85e-064d-4068-b3ab-623eae7fba05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"programID\":441}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/clinicPeriods","description":"<p>Retrieves a list of clinic work periods.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>programID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>periodID</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>periodName</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>startTime</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>time</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>endTime</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>time</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["schedules","clinicPeriods"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"1497c85e-064d-4068-b3ab-623eae7fba05"},{"name":"schedules/clinicAssignments","id":"6eabd784-30ad-4efd-b740-fce35746996e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"programID\":441}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/clinicAssignments","description":"<p>Retrieves a list of clinic assignments.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>dateRange</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>programID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>clinicnameID</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>periodID</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>programID</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["schedules","clinicAssignments"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"6eabd784-30ad-4efd-b740-fce35746996e"},{"name":"schedules/servicegroups","id":"037b2362-0174-439b-b38d-6cd851e8b3a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"programID\":441}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/services","description":"<p>Retrieves a list of service definitions for a specified program.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>globalserviceID</td>\n        <td>unique identifier for service</td>\n        <td>integer</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>globalservice_name</td>\n        <td>full name of clinic</td>\n        <td>string</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n    <tr>\n    <td>globalservice_abbrev</td>\n        <td>abbreviation of service name</td>\n        <td>string</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>status</td>\n        <td>status of service</td>\n        <td>integer</td>\n        <td>v1.00</td>\n        <td>Values: 1 = active, 0 = inactive</td>\n    </tr>\n</table>","urlObject":{"path":["schedules","services"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"0a93a0cf-e752-4f9c-99dd-f431dd582020","name":"schedules/services","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"programID\":441}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/services"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Wed, 29 Sep 2021 10:51:59 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[{\"globalserviceID\":\"5916\",\"globalservice_name\":\"Boston Childrens Hospital\",\"globalservice_abbrev\":\"Boston\",\"status\":\"1\"},{\"globalserviceID\":\"5498\",\"globalservice_name\":\"Day Float\",\"globalservice_abbrev\":\"DF\",\"status\":\"1\"},{\"globalserviceID\":\"3833\",\"globalservice_name\":\"Elective - Away\",\"globalservice_abbrev\":\"E\",\"status\":\"1\"},{\"globalserviceID\":\"6109\",\"globalservice_name\":\"Functional\",\"globalservice_abbrev\":\"F\",\"status\":\"1\"},{\"globalserviceID\":\"3823\",\"globalservice_name\":\"Functional Spine\",\"globalservice_abbrev\":\"F\\/S\",\"status\":\"1\"},{\"globalserviceID\":\"4873\",\"globalservice_name\":\"Hospital of St. Raphael - HSR\",\"globalservice_abbrev\":\"HSR\",\"status\":\"1\"},{\"globalserviceID\":\"5788\",\"globalservice_name\":\"Hospital of St. Raphael Campus beg. 9\\/12\\/2012\",\"globalservice_abbrev\":\"SR\",\"status\":\"1\"},{\"globalserviceID\":\"3829\",\"globalservice_name\":\"Lab - YNHH - Bench Research\",\"globalservice_abbrev\":\"Lab-B-Y\",\"status\":\"1\"},{\"globalserviceID\":\"3832\",\"globalservice_name\":\"Lab Away\",\"globalservice_abbrev\":\"Lab - Away\",\"status\":\"1\"},{\"globalserviceID\":\"3830\",\"globalservice_name\":\"Lab-YNHH - Clinical Research\",\"globalservice_abbrev\":\"LAB-C-Y\",\"status\":\"1\"},{\"globalserviceID\":\"6509\",\"globalservice_name\":\"Mt. Sinai Neurosurgery\",\"globalservice_abbrev\":\"Mt Sinai\",\"status\":\"1\"},{\"globalserviceID\":\"6105\",\"globalservice_name\":\"Neuro-Anesthesia\",\"globalservice_abbrev\":\"Neuro-Anes\",\"status\":\"1\"},{\"globalserviceID\":\"5496\",\"globalservice_name\":\"Neurology NICU\\/Epilepsy\",\"globalservice_abbrev\":\"NICU\\/Epilepsy\",\"status\":\"1\"},{\"globalserviceID\":\"5497\",\"globalservice_name\":\"Neurology NICU\\/Epilepsy\",\"globalservice_abbrev\":\"NICU\\/Epilepsy\",\"status\":\"1\"},{\"globalserviceID\":\"3817\",\"globalservice_name\":\"Neurosurgery\",\"globalservice_abbrev\":\"NS\",\"status\":\"1\"},{\"globalserviceID\":\"5499\",\"globalservice_name\":\"NICU\",\"globalservice_abbrev\":\"NICU\",\"status\":\"1\"},{\"globalserviceID\":\"5500\",\"globalservice_name\":\"Night Float\",\"globalservice_abbrev\":\"NF\",\"status\":\"1\"},{\"globalserviceID\":\"3827\",\"globalservice_name\":\"Night Float\",\"globalservice_abbrev\":\"NF\",\"status\":\"1\"},{\"globalserviceID\":\"3825\",\"globalservice_name\":\"Operating Room\",\"globalservice_abbrev\":\"OR\",\"status\":\"1\"},{\"globalserviceID\":\"4163\",\"globalservice_name\":\"Orientation-YNHH\",\"globalservice_abbrev\":\"Orient-Y\",\"status\":\"1\"},{\"globalserviceID\":\"4874\",\"globalservice_name\":\"Pediatric Neurosurgery\",\"globalservice_abbrev\":\"Pedi Neuro\",\"status\":\"1\"},{\"globalserviceID\":\"5789\",\"globalservice_name\":\"Spine Rotation\",\"globalservice_abbrev\":\"Spine\",\"status\":\"1\"},{\"globalserviceID\":\"5790\",\"globalservice_name\":\"St. Raphael Campus beg. 9\\/12\\/12\",\"globalservice_abbrev\":\"SR\",\"status\":\"1\"},{\"globalserviceID\":\"3819\",\"globalservice_name\":\"Trauma\",\"globalservice_abbrev\":\"Trauma\",\"status\":\"1\"},{\"globalserviceID\":\"3822\",\"globalservice_name\":\"Tumor\\/Spine Surgery\",\"globalservice_abbrev\":\"T\\/S\",\"status\":\"1\"},{\"globalserviceID\":\"6108\",\"globalservice_name\":\"Tumor\\/Vascular\",\"globalservice_abbrev\":\"T\\/V\",\"status\":\"1\"},{\"globalserviceID\":\"3820\",\"globalservice_name\":\"VA Intern\",\"globalservice_abbrev\":\"VA Intern\",\"status\":\"1\"},{\"globalserviceID\":\"5787\",\"globalservice_name\":\"Vascular\\/Functional\",\"globalservice_abbrev\":\"Vasc\\/Functional\",\"status\":\"1\"},{\"globalserviceID\":\"3828\",\"globalservice_name\":\"West Haven V.A.\",\"globalservice_abbrev\":\"VA\",\"status\":\"1\"},{\"globalserviceID\":\"3831\",\"globalservice_name\":\"West Haven VA - Lab\",\"globalservice_abbrev\":\"Lab-VA\",\"status\":\"1\"}]"}],"_postman_id":"037b2362-0174-439b-b38d-6cd851e8b3a3"},{"name":"schedules/periods","id":"b227ef8d-9b7b-49b6-ad08-b95af07a72f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"courseID\":356,\"rotationsetID\":20}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/periods","description":"<p>Retrieves a list of open course date periods for a specified course and academic year.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td>courseID</td><td>integer</td><td>Yes</td><td>v1.06</td><td>Required if courseID not specified</td></tr><tr><td>rotationsetID</td><td>integer</td><td>Yes</td><td>v1.06</td><td>DUse schedules/years to get a list of all academic year rotationsetIDs.</td></tr><tr><td>status</td><td>string</td><td>No</td><td></td><td>Defaults to \"open\", other values include: \"closed\", \"all\"</td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td>periodID</td><td>unique identifier for date period</td><td>integer</td><td>v1.06</td><td></td></tr><tr><td>start_date</td><td>start date of date period</td><td>date</td><td>v1.06</td><td>Format: YYYY-MM-DD</td></tr><tr><td>end_date</td><td>end date of date period</td><td>date</td><td>v1.06</td><td>Format: YYYY-MM-DD</td></tr></tbody></table>","urlObject":{"path":["schedules","periods"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"521e0b6c-5118-4008-8e37-79e51938c2d7","name":"schedules/periods","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"courseID\":356,\"rotationsetID\":20}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/periods"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 19:11:52 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"periodID\": \"1923\",\n        \"start_date\": \"2020-08-01\",\n        \"end_date\": \"2020-08-30\"\n    },\n    {\n        \"periodID\": \"1903\",\n        \"start_date\": \"2020-07-06\",\n        \"end_date\": \"2020-08-07\"\n    },\n    {\n        \"periodID\": \"1904\",\n        \"start_date\": \"2020-08-10\",\n        \"end_date\": \"2020-09-04\"\n    },\n    {\n        \"periodID\": \"1905\",\n        \"start_date\": \"2020-09-07\",\n        \"end_date\": \"2020-10-02\"\n    },\n    {\n        \"periodID\": \"1906\",\n        \"start_date\": \"2020-10-05\",\n        \"end_date\": \"2020-10-30\"\n    }\n]"}],"_postman_id":"b227ef8d-9b7b-49b6-ad08-b95af07a72f3"},{"name":"schedules/rotations","id":"7687f6bb-d40c-4371-a831-b9e93dc52d63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"scheduleID\":1106,\"rotationsetID\":19}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/rotations","description":"<p>Retrieves a list of course date periods for a specified course and academic year.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>scheduleID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.00</td>\n        <td>Use schedules/view to get a list of all schedules for a specified program</td>\n    </tr>\n    <tr>\n        <td>rotationsetID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.00</td>\n        <td>Use schedules/years to get a list of all academic year rotationsetIDs.</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>rotationID</td>\n        <td>unique identifier for a rotation period</td>\n        <td>integer</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>rotation_name</td>\n        <td>name of rotation period</td>\n        <td>string</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>start_date</td>\n        <td>start date of rotation period</td>\n        <td>date</td>\n        <td>v1.00</td>\n        <td>Format: YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>end_date</td>\n        <td>end date of rotation period</td>\n        <td>date</td>\n        <td>v1.00</td>\n        <td>Format: YYYY-MM-DD</td>\n    </tr>\n</table>","urlObject":{"path":["schedules","rotations"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"feca57e8-0f63-44d4-a7b8-4a296282b363","name":"schedules/rotations","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"scheduleID\":1106,\"rotationsetID\":19}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/rotations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 19:20:28 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"rotationID\": \"21157\",\n        \"rotation_name\": \"July\",\n        \"start_date\": \"2019-07-01\",\n        \"end_date\": \"2019-07-31\"\n    },\n    {\n        \"rotationID\": \"21158\",\n        \"rotation_name\": \"August\",\n        \"start_date\": \"2019-08-01\",\n        \"end_date\": \"2019-08-31\"\n    },\n    {\n        \"rotationID\": \"21159\",\n        \"rotation_name\": \"September\",\n        \"start_date\": \"2019-09-01\",\n        \"end_date\": \"2019-09-30\"\n    },\n    {\n        \"rotationID\": \"21160\",\n        \"rotation_name\": \"October\",\n        \"start_date\": \"2019-10-01\",\n        \"end_date\": \"2019-10-31\"\n    },\n    {\n        \"rotationID\": \"21161\",\n        \"rotation_name\": \"November\",\n        \"start_date\": \"2019-11-01\",\n        \"end_date\": \"2019-11-30\"\n    },\n    {\n        \"rotationID\": \"21162\",\n        \"rotation_name\": \"December\",\n        \"start_date\": \"2019-12-01\",\n        \"end_date\": \"2019-12-31\"\n    },\n    {\n        \"rotationID\": \"21163\",\n        \"rotation_name\": \"January\",\n        \"start_date\": \"2020-01-01\",\n        \"end_date\": \"2020-01-31\"\n    },\n    {\n        \"rotationID\": \"21164\",\n        \"rotation_name\": \"February\",\n        \"start_date\": \"2020-02-01\",\n        \"end_date\": \"2020-02-29\"\n    },\n    {\n        \"rotationID\": \"21165\",\n        \"rotation_name\": \"March\",\n        \"start_date\": \"2020-03-01\",\n        \"end_date\": \"2020-03-31\"\n    },\n    {\n        \"rotationID\": \"21166\",\n        \"rotation_name\": \"April\",\n        \"start_date\": \"2020-04-01\",\n        \"end_date\": \"2020-04-30\"\n    },\n    {\n        \"rotationID\": \"21167\",\n        \"rotation_name\": \"May\",\n        \"start_date\": \"2020-05-01\",\n        \"end_date\": \"2020-05-31\"\n    },\n    {\n        \"rotationID\": \"21168\",\n        \"rotation_name\": \"June\",\n        \"start_date\": \"2020-06-01\",\n        \"end_date\": \"2020-06-30\"\n    }\n]"}],"_postman_id":"7687f6bb-d40c-4371-a831-b9e93dc52d63"},{"name":"schedules/view","id":"560df310-3050-4df5-ad9c-6b443dcb7bf7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"programID\":481,\"rotationsetID\":19}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/view","description":"<p>Retrieves a list of course date periods for a specified course and academic year.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.00</td>\n        <td>Use programs/all to get a list of all programs</td>\n    </tr>\n    <tr>\n        <td>rotationsetID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.00</td>\n        <td>Use schedules/years to get a list of all academic year rotationsetIDs.</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>scheduleID</td>\n        <td>unique identifier for a schedule</td>\n        <td>integer</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>schedule_name</td>\n        <td>name of schedule</td>\n        <td>string</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>levels</td>\n        <td>array of applicable PGY levels (integers) that are assigned to the schedule</td>\n        <td>array</td>\n        <td>v1.00</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["schedules","view"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"f7b0c430-6642-41ae-bda6-19fd9b1fbfed","name":"schedules/view","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"programID\":481,\"rotationsetID\":19}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/view"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 19:26:02 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"scheduleID\": \"980\",\n        \"schedule_name\": \"IM-Primary\",\n        \"levels\": [\n            \"0\",\n            \"1\",\n            \"2\",\n            \"3\",\n            \"4\",\n            \"5\",\n            \"6\",\n            \"7\",\n            \"8\",\n            \"9\",\n            \"10\"\n        ]\n    }\n]"}],"_postman_id":"560df310-3050-4df5-ad9c-6b443dcb7bf7"},{"name":"schedules/shifts","id":"6b4c7e1a-5896-4af4-8104-21d409235bc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"programID\": 176, \"rotationsetID\": 23}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/shifts","description":"<p>Retrieves shift/call definitions for a given program, shift, and/or academic year.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>programID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes\\\\\\*</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div>\\\\\\*Either programID or shiftID is required</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shiftID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes\\\\\\*</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div>\\\\\\*Either programID or shiftID is required</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>rotationsetID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Defaults to current academic year if not specified</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>shiftID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique shift identifier</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shift_title</div><div><div><div><div></div></div></div><div></div></div></td><td><div>shift name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shift_abbrev</div><div><div><div><div></div></div></div><div></div></div></td><td><div>shift abbreviation</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shift_type</div><div><div><div><div></div></div></div><div></div></div></td><td><div>shift type</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div>values 3=home call, 4=on-site shift/call</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shift_status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>shift status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div>values 1=active, 0=inactive</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>call_flag</div><div><div><div><div></div></div></div><div></div></div></td><td><div>call designator</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div>values 1=call, 0=non-call</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>limit_startDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>start date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div>format YYYY:MM:DD</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>limit_endDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>end date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div>format YYYY:MM:DD</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>slots_residents</div><div><div><div><div></div></div></div><div></div></div></td><td><div>max number of residents that can be assigned per day</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>slots_faculty</div><div><div><div><div></div></div></div><div></div></div></td><td><div>max number of faculty that can be assigned per day</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>slots_students</div><div><div><div><div></div></div></div><div></div></div></td><td><div>max number of students that can be assigned per day</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sites</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array of linked sites</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array contains the following key - value pairs:<br />\"siteID\":\"value\"<br />\"percent\":\"value\"</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>times</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array of times by day of week</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>array contains the following key-value pairs:<br /></p><ul><li><p>day</p><ul><li><p><b>Description:</b> Day of week</p></li><li><p><b>Data Type: </b>integer</p></li><li><p><b>Notes:</b> Values include 0=Sunday...6=Saturday</p></li></ul></li><li><p>startTime</p><ul><li><p><b>Description: </b>shift start time</p></li><li><p><b>Data Type: </b>time</p></li><li><p><b>Notes: </b>format HH:MM:SS</p></li></ul></li><li><p>endTime</p><ul><li><p><b>Description: </b>shift end time</p></li><li><p><b>Data Type: </b>time</p></li><li><p><b>Notes: </b>format HH:MM:SS</p></li></ul></li><li><p>endDay</p><ul><li><p><b>Description: </b>end day increment</p></li><li><p><b>Data Type: </b>integer</p></li><li><p><b>Notes: </b>values 0=ends same day, 1=ends next day</p></li></ul></li></ul></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["schedules","shifts"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"f5403454-95b8-4ba1-b81a-b72c1561f2fd","name":"schedules/shifts","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"programID\": 608, \"rotationsetID\": 24}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/shifts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 May 2025 17:23:49 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!QhtO1FH6Iq//9YQqRqNhVZ9BpnNL5uBORhGLGIz3dd2Qg1y/d54BhRju3zzn0SE8WmSdd2/pqeQbiU8=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"942548c67cfada7a-ORD"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"shiftID\": \"3969\",\n        \"shift_title\": \"Example Shift A\",\n        \"shift_abbrev\": \"EShA\",\n        \"shift_type\": \"3\",\n        \"shift_status\": \"1\",\n        \"call_flag\": \"0\",\n        \"limit_startDate\": \"2024-07-01\",\n        \"limit_endDate\": \"2025-06-30\",\n        \"slots_residents\": \"1\",\n        \"slots_faculty\": \"0\",\n        \"slots_students\": \"0\",\n        \"sites\": [\n            {\n                \"siteID\": \"1150\",\n                \"percent\": \"1.00\"\n            }\n        ],\n        \"times\": [\n            {\n                \"day\": \"1\",\n                \"startTime\": \"08:00:00\",\n                \"endTime\": \"18:00:00\",\n                \"endDay\": \"0\",\n                \"hours\": \"10.00\"\n            },\n            {\n                \"day\": \"2\",\n                \"startTime\": \"08:00:00\",\n                \"endTime\": \"18:00:00\",\n                \"endDay\": \"0\",\n                \"hours\": \"10.00\"\n            },\n            {\n                \"day\": \"3\",\n                \"startTime\": \"08:00:00\",\n                \"endTime\": \"18:00:00\",\n                \"endDay\": \"0\",\n                \"hours\": \"10.00\"\n            },\n            {\n                \"day\": \"4\",\n                \"startTime\": \"08:00:00\",\n                \"endTime\": \"18:00:00\",\n                \"endDay\": \"0\",\n                \"hours\": \"10.00\"\n            },\n            {\n                \"day\": \"6\",\n                \"startTime\": \"08:00:00\",\n                \"endTime\": \"18:00:00\",\n                \"endDay\": \"0\",\n                \"hours\": \"10.00\"\n            }\n        ]\n    }\n]"}],"_postman_id":"6b4c7e1a-5896-4af4-8104-21d409235bc7"},{"name":"schedules/shiftsSchedule","id":"1988aaf2-5fd9-4b9f-8fff-de1ca29b9e02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"startDate\": \"2024-07-01\", \"endDate\": \"2025-06-30\", \"programID\": 608}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/shiftsSchedule","description":"<p>Retrieves a populated shift/call schedule for a given date period.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>startDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div>format YYYY:MM:DD</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>endDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div>format YYYY:MM:DD</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>programID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes\\\\*</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div>\\\\*Either programID, shiftID, and/or userID is required</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shiftID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes\\\\*</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div>\\\\*Either programID, shiftID, and/or userID is required</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes\\\\*</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div>\\\\*Either programID, shiftID, and/or userID is required</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shiftID</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["schedules","shiftsSchedule"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"c638dd7b-e9a1-4cbc-9ecb-dd2089fc5e09","name":"schedules/shiftsSchedule","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"startDate\": \"2024-07-01\", \"endDate\": \"2025-06-30\", \"programID\": 608}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{{abbrev}}.medhub.com/functions/api/schedules/shiftsSchedule"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 May 2025 17:28:28 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!HbqLwG8z3aeC3OoqRqNhVZ9BpnNL5gT4sXlLlgtcs8oxh+7uiXEaPQSUCVqXre3loi2OYzsRRMfHfWY=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"94254f99ccffeae3-ORD"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"shiftID\": \"3969\",\n        \"userID\": \"120115\",\n        \"date\": \"2025-06-02\"\n    },\n    {\n        \"shiftID\": \"3969\",\n        \"userID\": \"120115\",\n        \"date\": \"2025-06-04\"\n    }\n]"}],"_postman_id":"1988aaf2-5fd9-4b9f-8fff-de1ca29b9e02"},{"name":"schedules/services","id":"48867f91-1b3f-4bcb-9e4f-9695dbbb76e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"programID\":436,\"rotationsetID\":23}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/services","description":"<p>Retrieves a list of service definitions for a given program and/or schedule for a given academic year.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>scheduleID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes\\\\\\*</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>\\\\\\*Either scheduleID or programID is required</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>programID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes\\\\\\*</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>\\\\\\*Either scheduleID or programID is required</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>rotationsetID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.09</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Identifies academic year</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>serviceName</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serviceAbbreviation</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serviceId</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serviceGroup</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serviceType</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>site</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>description</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>programId</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>scheduleId</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>rotationSetId</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["schedules","services"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"e346b426-5ea3-449e-b550-2df564289b37","name":"schedules/services","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"programID\":481,\"rotationsetID\":24}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{{abbrev}}.medhub.com/functions/api/schedules/services"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Mon, 19 May 2025 16:45:52 GMT"},{"key":"Content-Type","value":"text/html;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!upGmWT8/riFD2z4qRqNhVZ9BpnNL5jvO37SjvTfgOpLbu2RviqORa9aSO9gvAUldMLQmO2ft4+S7uQY=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9425113388582986-ORD"}],"cookie":[],"responseTime":null,"body":"[{\"serviceName\":\"The Orange Service 2\",\"serviceAbbreviation\":\"TOS2\",\"serviceId\":21822,\"serviceGroup\":8683,\"serviceType\":3,\"site\":[\"1\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"The Orange Service\",\"serviceAbbreviation\":\"TOS\",\"serviceId\":21823,\"serviceGroup\":8683,\"serviceType\":3,\"site\":[\"1\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"Phoenix Children's Hospital\",\"serviceAbbreviation\":\"PCH\",\"serviceId\":21824,\"serviceGroup\":8666,\"serviceType\":3,\"site\":[\"1150\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"Test 2\",\"serviceAbbreviation\":\"Tst2\",\"serviceId\":21825,\"serviceGroup\":8662,\"serviceType\":1,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"Test 1\",\"serviceAbbreviation\":\"tst1\",\"serviceId\":21826,\"serviceGroup\":8662,\"serviceType\":3,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"Blue\",\"serviceAbbreviation\":\"Blue\",\"serviceId\":21827,\"serviceGroup\":8662,\"serviceType\":3,\"site\":[\"1139\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"demo 1\",\"serviceAbbreviation\":\"dm1\",\"serviceId\":21828,\"serviceGroup\":8657,\"serviceType\":2,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"Apple Service\",\"serviceAbbreviation\":\"Apple\",\"serviceId\":21829,\"serviceGroup\":8754,\"serviceType\":3,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"Cardiology (can you find me)\",\"serviceAbbreviation\":\"CAR\",\"serviceId\":21830,\"serviceGroup\":8655,\"serviceType\":3,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"Test Service\",\"serviceAbbreviation\":\"TS\",\"serviceId\":21831,\"serviceGroup\":8594,\"serviceType\":3,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"Test Service Weekday\",\"serviceAbbreviation\":\"TSWD\",\"serviceId\":21832,\"serviceGroup\":8652,\"serviceType\":3,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"Test XYZ Service\",\"serviceAbbreviation\":\"XYZ\",\"serviceId\":21833,\"serviceGroup\":8591,\"serviceType\":3,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"ServiceA\",\"serviceAbbreviation\":\"SA\",\"serviceId\":21834,\"serviceGroup\":8650,\"serviceType\":3,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"kathys after call\",\"serviceAbbreviation\":\"KC\",\"serviceId\":21835,\"serviceGroup\":8649,\"serviceType\":3,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"General Medicine Orange\",\"serviceAbbreviation\":\"GMO\",\"serviceId\":21836,\"serviceGroup\":8647,\"serviceType\":3,\"site\":[\"1128\",\"1134\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"Test Service 7\",\"serviceAbbreviation\":\"TS7\",\"serviceId\":21837,\"serviceGroup\":8646,\"serviceType\":3,\"site\":[\"1150\",\"881\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"MICU\",\"serviceAbbreviation\":\"MICU\",\"serviceId\":21838,\"serviceGroup\":8367,\"serviceType\":3,\"site\":[\"1158\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"Test Service 6\",\"serviceAbbreviation\":\"TS6\",\"serviceId\":21839,\"serviceGroup\":8641,\"serviceType\":2,\"site\":[\"1166\",\"1150\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"Year 1\",\"serviceAbbreviation\":\"Y1 G\",\"serviceId\":21840,\"serviceGroup\":8475,\"serviceType\":1,\"site\":[\"1194\",\"1195\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"Test Service 6\",\"serviceAbbreviation\":\"TS6\",\"serviceId\":21841,\"serviceGroup\":8449,\"serviceType\":2,\"site\":[\"1166\",\"1150\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"VA Service\",\"serviceAbbreviation\":\"VA\",\"serviceId\":21842,\"serviceGroup\":8394,\"serviceType\":3,\"site\":[\"881\",\"1155\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"Inpatient - Team B\",\"serviceAbbreviation\":\"INP-B\",\"serviceId\":21843,\"serviceGroup\":8367,\"serviceType\":3,\"site\":[\"1166\",\"1139\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"exempt\",\"serviceAbbreviation\":\"ex\",\"serviceId\":21844,\"serviceGroup\":8884,\"serviceType\":3,\"site\":[\"1150\"],\"description\":\"\",\"programId\":481,\"scheduleId\":951,\"rotationSetId\":24},{\"serviceName\":\"The Orange Service 2\",\"serviceAbbreviation\":\"TOS2\",\"serviceId\":21845,\"serviceGroup\":8683,\"serviceType\":3,\"site\":[\"1\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"The Orange Service\",\"serviceAbbreviation\":\"TOS\",\"serviceId\":21846,\"serviceGroup\":8683,\"serviceType\":3,\"site\":[\"1\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"Phoenix Children's Hospital\",\"serviceAbbreviation\":\"PCH\",\"serviceId\":21847,\"serviceGroup\":8666,\"serviceType\":3,\"site\":[\"1150\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"Test 2\",\"serviceAbbreviation\":\"Tst2\",\"serviceId\":21848,\"serviceGroup\":8662,\"serviceType\":1,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"Test 1\",\"serviceAbbreviation\":\"tst1\",\"serviceId\":21849,\"serviceGroup\":8662,\"serviceType\":3,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"Blue\",\"serviceAbbreviation\":\"Blue\",\"serviceId\":21850,\"serviceGroup\":8662,\"serviceType\":3,\"site\":[\"1139\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"demo 1\",\"serviceAbbreviation\":\"dm1\",\"serviceId\":21851,\"serviceGroup\":8657,\"serviceType\":2,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"Apple Service\",\"serviceAbbreviation\":\"Apple\",\"serviceId\":21852,\"serviceGroup\":8754,\"serviceType\":3,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"Cardiology (can you find me)\",\"serviceAbbreviation\":\"CAR\",\"serviceId\":21853,\"serviceGroup\":8655,\"serviceType\":3,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"Test Service\",\"serviceAbbreviation\":\"TS\",\"serviceId\":21854,\"serviceGroup\":8594,\"serviceType\":3,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"Test Service Weekday\",\"serviceAbbreviation\":\"TSWD\",\"serviceId\":21855,\"serviceGroup\":8652,\"serviceType\":3,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"Test XYZ Service\",\"serviceAbbreviation\":\"XYZ\",\"serviceId\":21856,\"serviceGroup\":8591,\"serviceType\":3,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"ServiceA\",\"serviceAbbreviation\":\"SA\",\"serviceId\":21857,\"serviceGroup\":8650,\"serviceType\":3,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"kathys after call\",\"serviceAbbreviation\":\"KC\",\"serviceId\":21858,\"serviceGroup\":8649,\"serviceType\":3,\"site\":[\"1129\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"General Medicine Orange\",\"serviceAbbreviation\":\"GMO\",\"serviceId\":21859,\"serviceGroup\":8647,\"serviceType\":3,\"site\":[\"1128\",\"1134\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"Test Service 7\",\"serviceAbbreviation\":\"TS7\",\"serviceId\":21860,\"serviceGroup\":8646,\"serviceType\":3,\"site\":[\"1150\",\"881\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"MICU\",\"serviceAbbreviation\":\"MICU\",\"serviceId\":21861,\"serviceGroup\":8367,\"serviceType\":3,\"site\":[\"1158\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"Test Service 6\",\"serviceAbbreviation\":\"TS6\",\"serviceId\":21862,\"serviceGroup\":8641,\"serviceType\":2,\"site\":[\"1166\",\"1150\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"Year 1\",\"serviceAbbreviation\":\"Y1 G\",\"serviceId\":21863,\"serviceGroup\":8475,\"serviceType\":1,\"site\":[\"1194\",\"1195\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"Test Service 6\",\"serviceAbbreviation\":\"TS6\",\"serviceId\":21864,\"serviceGroup\":8449,\"serviceType\":2,\"site\":[\"1166\",\"1150\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"VA Service\",\"serviceAbbreviation\":\"VA\",\"serviceId\":21865,\"serviceGroup\":8394,\"serviceType\":3,\"site\":[\"881\",\"1155\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"Inpatient - Team B\",\"serviceAbbreviation\":\"INP-B\",\"serviceId\":21866,\"serviceGroup\":8367,\"serviceType\":3,\"site\":[\"1166\",\"1139\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24},{\"serviceName\":\"exempt\",\"serviceAbbreviation\":\"ex\",\"serviceId\":21867,\"serviceGroup\":8884,\"serviceType\":3,\"site\":[\"1150\"],\"description\":\"\",\"programId\":481,\"scheduleId\":980,\"rotationSetId\":24}]"}],"_postman_id":"48867f91-1b3f-4bcb-9e4f-9695dbbb76e7"},{"name":"schedules/serviceCreate","id":"fae4b661-4440-4430-9e7b-fc6d0353c073","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"serviceName\": \"Example Service C\", \"serviceAbbrev\":\"ESC\",\"serviceGroup\":8182, \"serviceType\":2, \"scheduleID\":910, \"rotationsetID\":24, \"siteID\":\"\", \"description\":\"This is an example service created by API.\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/serviceCreate","description":"<p>Create a new service.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>serviceName</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serviceAbbrev</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serviceGroup</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serviceType</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>Possible values include:</p><ul><li><div>1 = Patient Care - Inpatient</div></li><li><div>2 = Patient Care - Outpatient</div></li><li><div>3 = Patient Care - Mixed/Other</div></li><li><div>4 = Research</div></li></ul></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>scheduleID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use schedules/view to retrieve scheduleIDs.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>rotationsetID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Identifies academic year. Use schedules/years to retrieve list of rotationsetIDs.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>siteID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>no</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use sites/list to retireve list of sites.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>description</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>no</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>serviceID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifer of newly created service</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["schedules","serviceCreate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"4d290e4f-d6ba-4b74-9d2f-9217f3927bbb","name":"schedules/serviceCreate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"serviceName\": \"Example Service C\", \"serviceAbbrev\":\"ESC\",\"serviceGroup\":8182, \"serviceType\":2, \"scheduleID\":910, \"rotationsetID\":24, \"siteID\":\"\", \"description\":\"This is an example service created by API.\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"},{"key":"verbose","value":"true","type":"text","uuid":"54348f03-04fd-45c0-bbac-239371892bb6"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/serviceCreate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 23 May 2025 15:17:45 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!nHaAVV2wXIGmDIwqRqNhVZ9BpnNL5uCiFNaJSEM+1qUT6WcSDoUAqsYG0D2FRNejCFQuWdF9RY3SZfY=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9445859c4b941b3c-ORD"}],"cookie":[],"responseTime":null,"body":"{\n    \"serviceID\": 21954\n}"}],"_postman_id":"fae4b661-4440-4430-9e7b-fc6d0353c073"},{"name":"schedules/serviceGroupCreate","id":"82532efe-0248-4ca5-b431-2421d838de03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"serviceName\": \"Example Service C\", \"serviceAbbrev\":\"ESC\",\"serviceGroup\":8182, \"serviceType\":2, \"scheduleID\":910, \"rotationsetID\":24, \"siteID\":\"\", \"description\":\"This is an example service created by API.\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/serviceCreate","description":"<p>Create a new service group through an API, so that groups of services can be efficiently organized and managed in the scheduling system.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>serviceGroupName</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serviceGroupAbbrev</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>programID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>globalserviceID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifer of newly created service</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["schedules","serviceCreate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"82532efe-0248-4ca5-b431-2421d838de03"},{"name":"schedules/shiftCreate","id":"f8a131a1-8e53-49b4-88e6-019834396f46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"shiftName\": \"Example Shift A\", \"shiftAbbrev\": \"EShA\", \"shiftType\": 3, \"timeStart\": \"08:00:00\", \"timeEnd\": \"18:00:00_0\", \"weekday\":\"1:2:3:4:6\",\"crossServiceA\": \"21953\",\"programID\":\"608\",\"rotationsetID\":24, \"shiftSlotsResidents\":1, \"shiftSlotsFaculty\":0, \"shiftSlotsStudents\":0, \"siteID\":\"\", \"shiftCall\":0, \"serviceID\":\"0\", \"shiftStatus\":\"1\", \"limitFlag\":0, \"limitDateStart\":\"\", \"limitDateEnd\":\"\" ,\"pagerNumber\":\"\",\"autogen\":0,\"autogenwknd\":0}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/shiftCreate","description":"<p>Create a new service.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>shiftName</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shiftAbbrev</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shiftType</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>Possible values include:</p><ul><li><div>3 = On-site Shift/Call</div></li><li><div>4 = Home Call</div></li></ul></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>timeStart</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string/time</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Start time of shift in 24 hour format: \"##:##:##\" e.g. \"08:00:00\" = 8am, \"13:00:00\" = 1pm.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>timeEnd</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string/time</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Format is the same as timeStart, but adds \"_#\" to the end to identify if shift crosses into the next day.<br /><br />e.g. \"01:00:00_1\" would mean the shift will start on day 1, and end at 1am next day.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>weekday</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Identifies days of the week this shift can be scheduled.<br /><br />Format: \"1:2:3:4:5:6:7\" where each number identifies a day of the week starting on Monday.<br /><br />e.g. \"1:2:3\" would mean the shift occurs on Mondays, Tuesdays, and Wednesdays.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>crossServiceA</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>no</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>List of serviceIDs. Identifies any additional services that this shift is available for, multiple services can be provided in a \":\" delimited list.<br /><br />e.g.<br />\"1234:9876:4567\" would identify 3 additional services.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>programID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>rotationsetID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Identifies academic year. Use schedules/years to retrieve list of rotationsetIDs.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shiftSlotsResidents</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>no</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shiftSlotsFaculty</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>no</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shiftSlotsStudents</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>no</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>siteID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>no</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shiftCall</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>no</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serviceID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shiftStatus</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>no</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>limitFlag</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>no</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>limitDateStart</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>no</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>limitDateEnd</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>no</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>pagerNumber</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>no</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>autogen</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>no</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>autogenwknd</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>no</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>shiftnameID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier of newly created shift definition</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["schedules","shiftCreate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"d5e9212d-13c2-42c1-ba2c-dbe6acd076c9","name":"schedules/shiftCreate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"shiftName\": \"Example Shift A\", \"shiftAbbrev\": \"EShA\", \"shiftType\": 3, \"timeStart\": \"08:00:00\", \"timeEnd\": \"18:00:00_0\", \"weekday\":\"1:2:3:4:6\",\"crossServiceA\": \"21953\",\"programID\":\"608\",\"rotationsetID\":24, \"shiftSlotsResidents\":1, \"shiftSlotsFaculty\":0, \"shiftSlotsStudents\":0, \"siteID\":\"\", \"shiftCall\":0, \"serviceID\":\"0\", \"shiftStatus\":\"1\", \"limitFlag\":0, \"limitDateStart\":\"\", \"limitDateEnd\":\"\" ,\"pagerNumber\":\"\",\"autogen\":0,\"autogenwknd\":0}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"},{"key":"verbose","value":"true","type":"text","uuid":"61130bb3-dad6-4fbd-ab24-a7f2c7040581"}]},"url":"https://{{abbrev}}.medhub.com/functions/api/schedules/shiftCreate"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Mon, 19 May 2025 17:13:05 GMT"},{"key":"Content-Type","value":"text/html;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!uBi0CQBNAkkJJZYqRqNhVZ9BpnNL5nPz/hQ40CrZNH7oMssPerFdxHPsY001uVoKDno3HtnGytwVWVU=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"942539110cc0223a-ORD"}],"cookie":[],"responseTime":null,"body":"{\"shiftnameID\":3969}"}],"_postman_id":"f8a131a1-8e53-49b4-88e6-019834396f46"},{"name":"schedules/serviceAssignments","id":"482af5ac-e777-4619-9bd2-59fa58dacaef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"rotationsetID\":24, \"userID\":103567}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/serviceAssignments","description":"<p>Retrieve a list of service assignments for a trainee for a given academic year.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>rotationsetID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>scheduleID</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>rotationsetID</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serviceID</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>servicename</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>abbrev</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>slotID</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>start_date</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>YYYY-MM-DD</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>end_date</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>YYYY-MM-DD</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>service_primary</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Identifies whether or not the assignment is the trainee's primary assignment in cases where a trainee is assigned to multiple services with overlapping dates.</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>Values:</p><ul><li><div>0 = not primary</div></li><li><div>1 = primary</div></li></ul></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["schedules","serviceAssignments"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"fb5e5ba3-e7a7-4549-8da0-8f74b2e09936","name":"schedules/serviceAssignments","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"10002"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"rotationsetID\":24, \"userID\":97927}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{{abbrev}}.medhub.com/functions/api/schedules/serviceAssignments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 May 2025 16:44:47 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!AvSYolM2NsNITqwqRqNhVZ9BpnNL5ur3DZttkuMxOYbjPpELk5ljP58Rgx9FxNfV9TINuzXZKub3SE4=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"94250f9d88d5132d-ORD"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userID\": 97927,\n        \"scheduleID\": 980,\n        \"programID\": 481,\n        \"rotationsetID\": 24,\n        \"serviceID\": 21850,\n        \"servicename\": \"Blue\",\n        \"abbrev\": \"Blue\",\n        \"slotID\": 186583,\n        \"start_date\": \"2024-11-18\",\n        \"end_date\": \"2024-11-24\",\n        \"service_primary\": 0\n    },\n    {\n        \"userID\": 97927,\n        \"scheduleID\": 980,\n        \"programID\": 481,\n        \"rotationsetID\": 24,\n        \"serviceID\": 21861,\n        \"servicename\": \"MICU\",\n        \"abbrev\": \"MICU\",\n        \"slotID\": 186584,\n        \"start_date\": \"2024-11-25\",\n        \"end_date\": \"2024-12-01\",\n        \"service_primary\": 0\n    }\n]"}],"_postman_id":"482af5ac-e777-4619-9bd2-59fa58dacaef"},{"name":"schedules/serviceAssign","id":"cd7a2c29-c82b-4ffe-bbc9-3f7e8ebcf67e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\": 120115, \"scheduleID\": 910, \"serviceID\": \"21953\", \"startDate\": \"2025-06-01\", \"endDate\": \"2025-06-30\", \"primary\": true}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/serviceAssign","description":"<p>Create a new service assignment.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>scheduleID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serviceID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>startDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>format: \"YYYY-MM-DD\"</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>endDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>format: \"YYYY-MM-DD\"</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>primary</div><div><div><div><div></div></div></div><div></div></div></td><td><div>boolean</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Values: true or false.<br /><br />Identifies whether or not this new assignenment is the trainee's primary assignment if the trainee has more than one assignment in the same rotation period</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>slotIDs</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of integers identifying the \"slotIDs\" created by this assignment. If only one assignment is created, only one slotID will be returned.</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["schedules","serviceAssign"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"31fc798b-c433-40fd-9c53-766fa0821d9b","name":"schedules/serviceAssign","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\": 120115, \"scheduleID\": 910, \"serviceID\": \"21953\", \"startDate\": \"2025-06-01\", \"endDate\": \"2025-06-30\", \"primary\": true}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/serviceAssign"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 19 May 2025 17:07:22 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!d4548zVFAHhCvEAqRqNhVZ9BpnNL5rlK/oJRiVZ1ftrnlf7pASlBRbuAqhb0iYcAnkYrmYyV2JiyBi4=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"942530ab68cb8f4c-ORD"}],"cookie":[],"responseTime":null,"body":"{\n    \"slotIDs\": [\n        186616\n    ]\n}"}],"_postman_id":"cd7a2c29-c82b-4ffe-bbc9-3f7e8ebcf67e"},{"name":"schedules/serviceUnassign","id":"d4839393-397c-4c64-b8e3-946bf70aca51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\":\"83558\",\"scheduleID\":\"345\",\"serviceID\":\"33267\",\"startDate\":\"2025-07-01\",\"endDate\":\"2025-07-05\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/serviceUnassign","description":"<p>Remove a service assignment.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>scheduleID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes\\*</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>serviceID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>startDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>format: \"YYYY-MM-DD\"</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>endDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>format: \"YYYY-MM-DD\"</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<p>Success</p>\n","urlObject":{"path":["schedules","serviceUnassign"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"f76c8052-5090-4ece-8e57-140bce36cf77","name":"schedules/serviceUnassign","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":\"83558\",\"scheduleID\":\"345\",\"serviceID\":\"33267\",\"startDate\":\"2025-07-01\",\"endDate\":\"2025-07-05\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/serviceUnassign"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Jul 2025 16:00:12 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!fVPAolk6IwAkoU8qRqNhVZ9BpnNL5p6CqG/BgzyTNTDNnWTzjLQ+VbW6D1qUXRwoor3RnjAKDy/ZEVU=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"95871d6a2906a599-ORD"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"d4839393-397c-4c64-b8e3-946bf70aca51"},{"name":"schedules/shiftAssign","id":"b6c04dc5-2be2-4afe-b5b5-9feec2f8ccb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"shiftnameID\": 1234, \"userID\": 98765, \"shiftDate\": \"2026-03-26\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/shiftAssign","description":"<p>Create a new shift assignment.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>shiftnameID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The unique ID of the shift being assigned.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The user ID of the faculty or resident being added to the shift/call.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shiftDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The date of the shift/call.<br /><br />Date format: YYYY-MM-DD.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>shiftID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Unique shift assignment identifier</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This ID refers to the shift assignment.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>slotID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Unique identifier of schedule assignment</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Refers to both the date/block and service combined. Think of it as the \"slot\" a resident is scheduled in.<br /><br />This is returned because shifts are associated with service assignments.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["schedules","shiftAssign"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"b6c04dc5-2be2-4afe-b5b5-9feec2f8ccb1"},{"name":"schedules/shiftUnassign","id":"c461e236-1567-4a32-bc48-7a6a14537a60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"shiftnameID\": 1234, \"userID\": 98765, \"shiftDate\": \"2026-03-26\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schedules/shiftUnassign","description":"<p>Remove an existing shift/call assignment, to enable the management of scheduling duties.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>shiftnameID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The unique ID of the shift being aassigned.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The unique ID of the faculty or resident being added to the shift/call.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>shiftDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>The date of the shift/call.<br /><br />Date format: YYYY-MM-DD.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>shiftID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Unique shift assignment identifier</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>This ID refers to the shift assignment.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>slotID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Unique schedule assignment ID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Refers to both the date/block and service combined. Think of it as the \"slot\" a resident is scheduled in.<br /><br />This is returned because shifts are associated with service assignments.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["schedules","shiftUnassign"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"c461e236-1567-4a32-bc48-7a6a14537a60"}],"id":"13d21660-9d3b-45bf-af55-45112649ce53","_postman_id":"13d21660-9d3b-45bf-af55-45112649ce53","description":""},{"name":"Schools","item":[{"name":"schools/access","id":"c27d407b-31bd-47a2-a7bd-1c85ecb94742","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>no input required</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schools/access","description":"<p>Get a list of defined, active schools.</p>\n<h6>Input Variables</h6>\nnone\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>schoolID</td>\n        <td>unique school identifer</td>\n        <td>integer</td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>school_name</td>\n        <td>name of school</td>\n        <td>string</td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>school_abbrev</td>\n        <td>abbreviation of school name</td>\n        <td>string</td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["schools","access"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"a40952f0-f6a9-4567-9e12-339b00bde9d5","name":"schools/access","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/schools/access"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 08 Apr 2021 17:45:43 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"schoolID\": \"1\",\n        \"school_name\": \"Sandbox School of Medicine\",\n        \"school_abbrev\": \"MED-SCHL\"\n    }\n]"}],"_postman_id":"c27d407b-31bd-47a2-a7bd-1c85ecb94742"}],"id":"3aa52b34-06e3-4271-bbf9-c14f19f54ea0","_postman_id":"3aa52b34-06e3-4271-bbf9-c14f19f54ea0","description":""},{"name":"Sites","item":[{"name":"sites/list","id":"c8e83891-5a61-47a2-89fe-fad38c377c70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/sites/list","description":"<p>Retrieve a list of sites associated with a medhub URL, so that site details such as site ID, site name, and others can be viewed and managed.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<p>None</p>\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>siteID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>ID of site</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>siteName</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Name of site</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>siteShortName</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Short name of site</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>abbreviation</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Abbreviation of name of site</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sitedesignationID</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sitedesignation</div><div><div><div><div></div></div></div><div></div></div></td><td><div>None, IRF, IPF, NHL/NPS</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>costreportName</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>costreportId</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sitetypeID</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>sitetype</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>imePercentage</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>dgmePercentage</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>siteBilled</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Y/N</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>siteContact</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>siteAddress</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>siteNotes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>programIDs</div><div><div><div><div></div></div></div><div></div></div></td><td><div>List of associated programIDs</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>clerkshipIDs</div><div><div><div><div></div></div></div><div></div></div></td><td><div>List of associated clerkshipIDs</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>iID</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>schoolID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Unique school identifier</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["sites","list"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"4827172b-998b-46fc-89f0-8c9be67a5e3a","name":"sites/list","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/sites/list"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 15 Sep 2025 15:03:10 GMT"},{"key":"Content-Type","value":"text/html;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"CF-RAY","value":"97f9025e39401106-ORD"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!7wnNbt5jkQcU3ioqRqNhVZ9BpnNL5tRGHl+SNxXNIvvV4lvWSv7YCHNCpxl9An45pCQ/ik/czr11wnI=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"}],"cookie":[],"responseTime":null,"body":"[{\"iId\":1,\"schoolId\":0,\"siteID\":316,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Association Emergency Physicians\",\"siteShortName\":\"AEP\",\"abbreviation\":\"AEP\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":317,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Kaiser Santa Clara\",\"siteShortName\":\"KSC\",\"abbreviation\":\"KSC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":318,\"costreportID\":2,\"siteTypeId\":2,\"imePercentage\":100,\"dgmePercentage\":100,\"siteName\":\"Lucile Packard Children\\\\'s Hospital\",\"siteShortName\":\"LPCH\",\"abbreviation\":\"LPCH\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"Lucile Packard Children's Hospital\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":319,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Palo Alto VA Hospital\",\"siteShortName\":\"VAH\",\"abbreviation\":\"VAH\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":320,\"costreportID\":3,\"siteTypeId\":2,\"imePercentage\":100,\"dgmePercentage\":100,\"siteName\":\"Santa Clara Valley Medical Center\",\"siteShortName\":\"SCVMC\",\"abbreviation\":\"SCVMC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"Santa Clara Medical Center\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":321,\"costreportID\":5,\"siteTypeId\":2,\"imePercentage\":100,\"dgmePercentage\":100,\"siteName\":\"St Mary\\\\'s\",\"siteShortName\":\"STMARY\",\"abbreviation\":\"STMARY\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"St. Marys Medical Center\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":322,\"costreportID\":4,\"siteTypeId\":2,\"imePercentage\":100,\"dgmePercentage\":100,\"siteName\":\"San Mateo County\",\"siteShortName\":\"SMC\",\"abbreviation\":\"SMC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"San Mateo Medical Center\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":323,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"San Jose Medical Group\",\"siteShortName\":\"SJMG\",\"abbreviation\":\"SJMG\",\"siteDesignationId\":0,\"Status\":\"0\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":324,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Vaden Health Center\",\"siteShortName\":\"VADEN\",\"abbreviation\":\"VADEN\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":325,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Emergency Medical Services (Ambulance)\",\"siteShortName\":\"EMS\",\"abbreviation\":\"EMS\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":326,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"San Francisco General Hospital\",\"siteShortName\":\"SFGH\",\"abbreviation\":\"SFGH\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":327,\"costreportID\":1,\"siteTypeId\":1,\"imePercentage\":100,\"dgmePercentage\":100,\"siteName\":\"SUH - Hospital Complex\",\"siteShortName\":\"SUH\",\"abbreviation\":\"SUH\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"Stanford Hospital and Clinics\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":328,\"costreportID\":1,\"siteTypeId\":1,\"imePercentage\":100,\"dgmePercentage\":100,\"siteName\":\"SUH - Hospital Based Clinic\",\"siteShortName\":\"SHC\",\"abbreviation\":\"SHC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"Stanford Hospital and Clinics\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":329,\"costreportID\":1,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":100,\"siteName\":\"SUH - DP Rehab Unit (Exempt unit)\",\"siteShortName\":\"REH\",\"abbreviation\":\"REH\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"Stanford Hospital and Clinics\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":330,\"costreportID\":1,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":100,\"siteName\":\"SUH - DP Psych Unit (Exempt Unit) - Area H2 & G2P\",\"siteShortName\":\"PSY\",\"abbreviation\":\"PSY\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"Stanford Hospital and Clinics\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":331,\"costreportID\":1,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":100,\"siteName\":\"SUH - Bench Research\",\"siteShortName\":\"BRSCH\",\"abbreviation\":\"BRSCH\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"Stanford Hospital and Clinics\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":332,\"costreportID\":1,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":100,\"siteName\":\"SUH - Clinical Research (Patient Care Related)\",\"siteShortName\":\"PCRSCH\",\"abbreviation\":\"PCRSCH\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"Stanford Hospital and Clinics\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":333,\"costreportID\":1,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":100,\"siteName\":\"SUH - Clinical research (Non Patient Care)\",\"siteShortName\":\"NPCRSCH\",\"abbreviation\":\"NPCRSCH\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"Stanford Hospital and Clinics\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":336,\"costreportID\":1,\"siteTypeId\":1,\"imePercentage\":100,\"dgmePercentage\":100,\"siteName\":\"SUH - 401 Quarry Outpatient Clinic\",\"siteShortName\":\"QUARRY\",\"abbreviation\":\"SUHQUARRY\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"Stanford Hospital and Clinics\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":337,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Achieve School\",\"siteShortName\":\"APAS\",\"abbreviation\":\"APAS\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":338,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"California Endocureitherapy Center\",\"siteShortName\":\"CET\",\"abbreviation\":\"CET\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":339,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Pacific Medical Center\",\"siteShortName\":\"CPMC\",\"abbreviation\":\"CPMC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":340,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Children\\\\'s Health Council\",\"siteShortName\":\"CHC\",\"abbreviation\":\"CHC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":341,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Connectics Corporation\",\"siteShortName\":\"CCORP\",\"abbreviation\":\"CCORP\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":342,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Davis Microsurgery\",\"siteShortName\":\"DAV\",\"abbreviation\":\"DAV\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":343,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Red Hospital\",\"siteShortName\":\"ELCAM\",\"abbreviation\":\"ELCAM\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":344,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"EMCARE\",\"siteShortName\":\"EMC\",\"abbreviation\":\"EMC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":345,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Elective (Non SUH Site)\",\"siteShortName\":\"OFFELEC\",\"abbreviation\":\"OFFELEC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":346,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Forensic Lab (Santa Clara Co.)\",\"siteShortName\":\"SCCFL\",\"abbreviation\":\"SCCFL\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":347,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Kaiser Santa Teresa\",\"siteShortName\":\"KST\",\"abbreviation\":\"KST\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":348,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Menlo Clinic 6\\/30\\/10\",\"siteShortName\":\"MENLO\",\"abbreviation\":\"MENLO\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":349,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Research @ Stanford Univ. or Other Off Site\",\"siteShortName\":\"OFFRESCH\",\"abbreviation\":\"OFFRESCH\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":350,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"San Francisco Coroners Office\",\"siteShortName\":\"SFCOR\",\"abbreviation\":\"SFCOR\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":351,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"San Jose Medical Group\",\"siteShortName\":\"SJMG\",\"abbreviation\":\"SJMG\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":352,\"costreportID\":2,\"siteTypeId\":2,\"imePercentage\":100,\"dgmePercentage\":100,\"siteName\":\"LPCH-Clinical Research\",\"siteShortName\":\"LPCH\\/res\",\"abbreviation\":\"LPCH\\/res\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"Lucile Packard Children's Hospital\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":353,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Washington, D.C.\",\"siteShortName\":\"D.C.\",\"abbreviation\":\"D.C.\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":354,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Away Conference\",\"siteShortName\":\"AWAYCONF\",\"abbreviation\":\"AWAYCONF\",\"siteDesignationId\":0,\"Status\":\"0\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":355,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Kaiser San Francisco\",\"siteShortName\":\"KSF\",\"abbreviation\":\"KSF\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":356,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Non Stanford\",\"siteShortName\":\"Non SUH\",\"abbreviation\":\"Non SUH\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":357,\"costreportID\":2,\"siteTypeId\":1,\"imePercentage\":100,\"dgmePercentage\":100,\"siteName\":\"LPCH 401 Quarry Outpatient Clinic\",\"siteShortName\":\"LPCH Quarry\",\"abbreviation\":\"LPCHQuarry\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"Lucile Packard Children's Hospital\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":358,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Asian American Community Involvement\",\"siteShortName\":\"AACI\",\"abbreviation\":\"AACI\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":359,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"California School for the Deaf\",\"siteShortName\":\"CSD\",\"abbreviation\":\"CSD\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":360,\"costreportID\":4,\"siteTypeId\":2,\"imePercentage\":100,\"dgmePercentage\":100,\"siteName\":\"San Mateo Co.\\/Stanford Comm. Track Program\",\"siteShortName\":\"SMTP\",\"abbreviation\":\"SMTP\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"San Mateo Medical Center\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":361,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Palo Alto Unified School District\",\"siteShortName\":\"PAUSD\",\"abbreviation\":\"PAUSD\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":362,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Mountain View Los Altos\",\"siteShortName\":\"MtView\",\"abbreviation\":\"MtView\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":363,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"AchieveKids\",\"siteShortName\":\"PCC\",\"abbreviation\":\"PCC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":364,\"costreportID\":1,\"siteTypeId\":1,\"imePercentage\":100,\"dgmePercentage\":100,\"siteName\":\"SUH - Outpatient Center-Redwood City\",\"siteShortName\":\"SMOC\",\"abbreviation\":\"SUH-SMOC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"Stanford Hospital and Clinics\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":365,\"costreportID\":1,\"siteTypeId\":1,\"imePercentage\":100,\"dgmePercentage\":100,\"siteName\":\"Stanford University\",\"siteShortName\":\"SU\",\"abbreviation\":\"SU\",\"siteDesignationId\":0,\"Status\":\"0\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"Stanford Hospital and Clinics\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":366,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Lytton Gardens NH\",\"siteShortName\":\"Lytt Gard\",\"abbreviation\":\"Lytt Gard\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":367,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Children's Association\",\"siteShortName\":\"BACAY\",\"abbreviation\":\"BACAY\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":368,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Kaiser Redwood City\",\"siteShortName\":\"KRC\",\"abbreviation\":\"KRC\",\"siteDesignationId\":0,\"Status\":\"0\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":369,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"California Emergency Physicians Group\",\"siteShortName\":\"CEP\",\"abbreviation\":\"CEP\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":370,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Kaiser Redwood City\",\"siteShortName\":\"KRWC\",\"abbreviation\":\"KRWC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":371,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Ravenswood Family Health Center\",\"siteShortName\":\"RFHC\",\"abbreviation\":\"RFHC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":372,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"SC Kaiser (billable to Stanford Univ.)\",\"siteShortName\":\"KSR-UNIV\",\"abbreviation\":\"KSR-UNIV\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":373,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Oakland Children's Hospital \",\"siteShortName\":\"OCH\",\"abbreviation\":\"OCH\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":374,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Research @ Stanford University\",\"siteShortName\":\"OFFRESCH-SU\",\"abbreviation\":\"OFFRESCHSU\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":375,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Research @ Other Site\",\"siteShortName\":\"OFFRESCH-OT\",\"abbreviation\":\"OFFRESCHOT\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":376,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"University California San Francisco\",\"siteShortName\":\"UCSF\",\"abbreviation\":\"UCSF\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":377,\"costreportID\":3,\"siteTypeId\":2,\"imePercentage\":100,\"dgmePercentage\":100,\"siteName\":\"Santa Clara Valley Medical Center(billable to VA)\",\"siteShortName\":\"SCVMC-VA\",\"abbreviation\":\"SCVMC-VA\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"Santa Clara Medical Center\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":378,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Kaiser (billable to VA)\",\"siteShortName\":\"Kaiser-VA\",\"abbreviation\":\"Kaiser-VA\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":null,\"siteContactPhone\":null,\"siteContactEmail\":null,\"siteAddressStreet1\":null,\"siteAddressStreet2\":null,\"siteAddressCity\":null,\"siteAddressState\":null,\"siteAddressZipCode\":null,\"siteAddressCountry\":null,\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":379,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Kaiser San Jose\",\"siteShortName\":\"KSJ\",\"abbreviation\":\"KSJ\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":380,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Kaiser Regional Office\",\"siteShortName\":\"KRO\",\"abbreviation\":\"KRO\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":381,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Community Los Angeles\",\"siteShortName\":\"CSLA\",\"abbreviation\":\"CSLA\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":382,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":100,\"dgmePercentage\":100,\"siteName\":\"UHA Menlo Clinic\",\"siteShortName\":\"UHA-MENLO\",\"abbreviation\":\"UHA-MENLO\",\"siteDesignationId\":3,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"NHL\\/NPS\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":383,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"ZZZ-Site Unassigned\",\"siteShortName\":\"UNKNOWN\",\"abbreviation\":\"UNKNOWN\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":384,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Mills-Peninsula Psychiatric Emergency Services\",\"siteShortName\":\"Mills\",\"abbreviation\":\"Mills\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"Mills Health Center\",\"siteAddressStreet2\":\"100 S. San Mateo Drive\",\"siteAddressCity\":\"San Mateo\",\"siteAddressState\":\"CA\",\"siteAddressZipCode\":\"94401\",\"siteAddressCountry\":\"USA\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":385,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Watsonville Community Hospital\",\"siteShortName\":\"Watsonville\",\"abbreviation\":\"Wtsnville\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":386,\"costreportID\":6,\"siteTypeId\":2,\"imePercentage\":100,\"dgmePercentage\":100,\"siteName\":\"O'Connor Hospital\",\"siteShortName\":\"OCH\",\"abbreviation\":\"OCH\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"O\\\\'connor Hospital\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"clerkshipIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":387,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Sunnydale Union Medical Center\",\"siteShortName\":\"SUMC\",\"abbreviation\":\"SUMC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":0,\"schoolId\":1,\"siteID\":388,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Lake Powell Community Hospital\",\"siteShortName\":\"LPCH\",\"abbreviation\":\"LPCH\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":0,\"schoolId\":1,\"siteID\":389,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Sequoia Creek Valley Med Ctr\",\"siteShortName\":\"SCVMC\",\"abbreviation\":\"SCVMC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":0,\"schoolId\":1,\"siteID\":390,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Port Arlington Veteran's Affairs\",\"siteShortName\":\"PAVA\",\"abbreviation\":\"PAVA\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":0,\"schoolId\":1,\"siteID\":391,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Keeler Parke - St. Christopher\",\"siteShortName\":\"Keeler Parke-SC\",\"abbreviation\":\"KP-SC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":0,\"schoolId\":1,\"siteID\":392,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Keeler Parke - St. Joseph's\",\"siteShortName\":\"Kaiser-SJ\",\"abbreviation\":\"KP-SJ\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":0,\"schoolId\":1,\"siteID\":393,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Keeler Parke - Refugee Center\",\"siteShortName\":\"Keeler Parke-Refugee\",\"abbreviation\":\"KP-REF\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":0,\"schoolId\":1,\"siteID\":394,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Private\\/Community Practice\",\"siteShortName\":\"Private\\/Community\",\"abbreviation\":\"Private\\/Community\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":1,\"schoolId\":0,\"siteID\":395,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"South Bay Emergency Physicians Group\",\"siteShortName\":\"SB EPG\",\"abbreviation\":\"SB EPG\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[\"2\"],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":396,\"costreportID\":1,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Kaiser South San Francisco\",\"siteShortName\":\"KSS\",\"abbreviation\":\"KSS\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"Stanford Hospital and Clinics\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":397,\"costreportID\":1,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Mission Hospice\",\"siteShortName\":\"Mission Hosp\",\"abbreviation\":\"Mission Hosp\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"1670 South Amphlett Blvd\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"San Mateo\",\"siteAddressState\":\"CA\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"Stanford Hospital and Clinics\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"clerkshipIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":398,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Keeler Parke - RWC\",\"siteShortName\":\"KP-RWC\",\"abbreviation\":\"KP-RWC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":1,\"schoolId\":0,\"siteID\":399,\"costreportID\":1,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Santa Cruz County Health Services Agency\",\"siteShortName\":\"SC Co. HSA\",\"abbreviation\":\"SC Co. HSA\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"Stanford Hospital and Clinics\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":400,\"costreportID\":1,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"University of Wisconsin\",\"siteShortName\":\"UW\",\"abbreviation\":\"UW\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"Stanford Hospital and Clinics\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":401,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"St. John's Center - Los Angeles\",\"siteShortName\":\"SJC\",\"abbreviation\":\"SJC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":402,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"ValleyCare Livermore\",\"siteShortName\":\"VCL\",\"abbreviation\":\"VCL\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[\"19\"],\"clerkshipIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":403,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Valley Children's\",\"siteShortName\":\"VCH\",\"abbreviation\":\"VCH\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":0,\"schoolId\":1,\"siteID\":404,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Bioengineering\",\"siteShortName\":\"Bioengineering\",\"abbreviation\":\"Bioengineering\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":405,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Jersey Shore\",\"siteShortName\":\"Jersey Shore\",\"abbreviation\":\"J.Shore\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":406,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Biomedical Informatics\",\"siteShortName\":\"Biomed Informatics\",\"abbreviation\":\"Biomed Informatics\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":407,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Clinical Research\",\"siteShortName\":\"Clinical Research\",\"abbreviation\":\"Clinical Research\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":408,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Community Health\",\"siteShortName\":\"Community Health\",\"abbreviation\":\"Community Health\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":409,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Health Services and Policy Research\",\"siteShortName\":\"HS&PR\",\"abbreviation\":\"HS&PR\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":410,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Molecular Basis of Medicine\",\"siteShortName\":\"MB of M\",\"abbreviation\":\"MB of M\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":411,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Medical Education\",\"siteShortName\":\"Medical Education\",\"abbreviation\":\"Medical Education\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":412,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Cancer Biology\",\"siteShortName\":\"Cancer Biology\",\"abbreviation\":\"Cancer Biology\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":413,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Cardiovascular Pulmonary\",\"siteShortName\":\"CV Pulm\",\"abbreviation\":\"CV Pulm\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":414,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Immunology\",\"siteShortName\":\"Immunology\",\"abbreviation\":\"Immunology\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":415,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Global Health\",\"siteShortName\":\"Global Health\",\"abbreviation\":\"Global Health\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":416,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Neuroscience, Behavior, and Cognition\",\"siteShortName\":\"N,B&C\",\"abbreviation\":\"N,B&C\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":417,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Women's Health and Sex Differences\",\"siteShortName\":\"WH&SD\",\"abbreviation\":\"WH&SD\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":418,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Powell East Campus\",\"siteShortName\":\"Powell East\",\"abbreviation\":\"PEC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":0,\"schoolId\":1,\"siteID\":419,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Sunnydale Henderson Family Medicine\",\"siteShortName\":\"Henderson\",\"abbreviation\":\"Henderson\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":420,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Sunnydale Las Alitas\",\"siteShortName\":\"Las Alitas\",\"abbreviation\":\"Las Alitas\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":421,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Sunnydale Pearson Valley\",\"siteShortName\":\"Pearson Valley\",\"abbreviation\":\"Pearson Valley\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":422,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"O'Connor\",\"siteShortName\":\"O'Connor\",\"abbreviation\":\"OConnor\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":423,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"International Health Center\",\"siteShortName\":\"International HC\",\"abbreviation\":\"IHC\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":424,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Henryville\",\"siteShortName\":\"Henryville\",\"abbreviation\":\"Henryville\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":425,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Saint Francis Free Clinic\",\"siteShortName\":\"St Francis Free Clin\",\"abbreviation\":\"SF Free Clinic\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":426,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Foothill Community Clinics\",\"siteShortName\":\"Foothill Community\",\"abbreviation\":\"Foothill\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":427,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Port Arlington Medical Foundation\",\"siteShortName\":\"PAMF\",\"abbreviation\":\"PAMF\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":428,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Port Arlington Meadow View\",\"siteShortName\":\"PAMF-MV\",\"abbreviation\":\"PAMF-MV\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"programIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":429,\"costreportID\":0,\"siteTypeId\":3,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"VA Non-Billable\",\"siteShortName\":\"VA Non-Bill\",\"abbreviation\":\"VA Non-Bill\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Non-affiliated\",\"programIds\":[\"19\"],\"clerkshipIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":430,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Mayview Clinic\",\"siteShortName\":\"Mayview\",\"abbreviation\":\"Mayview\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":431,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Lake Powell - Inpatient\",\"siteShortName\":\"LPCH-inpt\",\"abbreviation\":\"LPCH-inpt\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":432,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Lake Powell - Outpatient\",\"siteShortName\":\"LPCH-outpt\",\"abbreviation\":\"LPCH-outpt\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":433,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Sequoia Creek - Inpatient\",\"siteShortName\":\"SCVMC-inpt\",\"abbreviation\":\"SCVMC-inpt\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":434,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Sequoia Creek - Outpatient\",\"siteShortName\":\"SCVMC-outpt\",\"abbreviation\":\"SCVMC-outpt\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":435,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Madison Peak VA - Outpatient\",\"siteShortName\":\"MP-VA-outpt\",\"abbreviation\":\"MP-VA-outpt\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":436,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Sunnydale Medical Surgical ICU\",\"siteShortName\":\"SUMC-MICU\",\"abbreviation\":\"SUMC-MICU\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":0,\"schoolId\":1,\"siteID\":437,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Sunnydale Surgery ICU\",\"siteShortName\":\"SUMC-SICU\",\"abbreviation\":\"SUMC-SICU\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":0,\"schoolId\":1,\"siteID\":438,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Lake Powell Pediatric ICU\",\"siteShortName\":\"LPCH-PICU\",\"abbreviation\":\"LPCH-PICU\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":0,\"schoolId\":1,\"siteID\":439,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Lake Powell Neonatal ICU\",\"siteShortName\":\"LPCH-NICU\",\"abbreviation\":\"LPCH-NICU\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":0,\"schoolId\":1,\"siteID\":440,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Sunnydale - Inpatient\",\"siteShortName\":\"SUMC - inpt\",\"abbreviation\":\"SUMC - inpt\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":441,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Sunnydale - Outpatient\",\"siteShortName\":\"SUMC - outpt\",\"abbreviation\":\"SUMC - outpt\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":442,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Sunnydale - G2\",\"siteShortName\":\"SUMC-G2\",\"abbreviation\":\"SUMC-G2\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":443,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Sunnydale - H2\",\"siteShortName\":\"SUMC-H2\",\"abbreviation\":\"SUMC-H2\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":444,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Sunnydale - Gero\",\"siteShortName\":\"SUMC-Gero\",\"abbreviation\":\"SUMC-Gero\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":445,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Sunnydale - C\\/L\",\"siteShortName\":\"SUMC-C\\/L\",\"abbreviation\":\"SUMC-C\\/L\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":446,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Port Arlington Veteran's Affair - B\",\"siteShortName\":\"PAVA-B\",\"abbreviation\":\"PAVA-B\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":447,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Port Arlington Veteran's Affairs - C\",\"siteShortName\":\"PAVA-C\",\"abbreviation\":\"PAVA-C\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":448,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Port Arlington Veteran's Affairs - C\\/L\",\"siteShortName\":\"PAVA-C\\/L\",\"abbreviation\":\"PAVA-C\\/L\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":449,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Sunnydale - Ambulatory\",\"siteShortName\":\"SUMC-AMB\",\"abbreviation\":\"SUMC-AMB\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":0,\"schoolId\":1,\"siteID\":450,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Sunnydale - ED\",\"siteShortName\":\"SUMC-ED\",\"abbreviation\":\"SUMC-ED\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":0,\"schoolId\":1,\"siteID\":451,\"costreportID\":0,\"siteTypeId\":2,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Upper Madison Clinics\",\"siteShortName\":\"Upper Madison\",\"abbreviation\":\"Upper Madison\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Offsite - Affiliated\",\"programIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":452,\"costreportID\":1,\"siteTypeId\":1,\"imePercentage\":100,\"dgmePercentage\":100,\"siteName\":\"CARES ACT Alternative Sites\",\"siteShortName\":\"CARES ACT\",\"abbreviation\":\"CARES ACT\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"Stanford Hospital and Clinics\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":453,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"UC Irvine\",\"siteShortName\":\"UC IRVINE\",\"abbreviation\":\"UCIRVINE\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":454,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"UC Irvine\",\"siteShortName\":\"UC IRVINE\",\"abbreviation\":\"UCIRVINE\",\"siteDesignationId\":0,\"Status\":\"0\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":455,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"CA VA\",\"siteShortName\":\"Irvine VA\",\"abbreviation\":\"Irvine VA\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":1,\"schoolId\":0,\"siteID\":456,\"costreportID\":1,\"siteTypeId\":1,\"imePercentage\":100,\"dgmePercentage\":100,\"siteName\":\"CA Memorial\",\"siteShortName\":\"IRV MEM\",\"abbreviation\":\"IRV MEM\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"1\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"Stanford Hospital and Clinics\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]},{\"iId\":0,\"schoolId\":1,\"siteID\":457,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"USD\",\"siteShortName\":\"USD\",\"abbreviation\":\"USD\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":0,\"schoolId\":1,\"siteID\":458,\"costreportID\":0,\"siteTypeId\":1,\"imePercentage\":0,\"dgmePercentage\":0,\"siteName\":\"Training Site A\",\"siteShortName\":\"Site A\",\"abbreviation\":\"Site A\",\"siteDesignationId\":0,\"Status\":\"1\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[],\"clerkshipIds\":[1,2,4,6,7,8,9,18,27,34,39,42,43,60,72,77,87,89,90,94,97,100,103,128,129,138,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,201,202,203,204,205,206,207,208,209,210,212,213,235,222,238,237,234,246,247,248,249,250,251,252,253,254,255,256,257,258,259,265,266,268,286,293,294,295,296,297,298,299,300,301,321,322,332,335,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,372,373,367,368,369,370,396,371,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490]},{\"iId\":1,\"schoolId\":0,\"siteID\":459,\"costreportID\":1,\"siteTypeId\":1,\"imePercentage\":100,\"dgmePercentage\":100,\"siteName\":\"zzzTestSite\",\"siteShortName\":\"ztestsite\",\"abbreviation\":\"ztestsite\",\"siteDesignationId\":0,\"Status\":\"0\",\"siteBilled\":\"0\",\"siteContactName\":\"\",\"siteContactPhone\":\"\",\"siteContactEmail\":\"\",\"siteAddressStreet1\":\"\",\"siteAddressStreet2\":\"\",\"siteAddressCity\":\"\",\"siteAddressState\":\"\",\"siteAddressZipCode\":\"\",\"siteAddressCountry\":\"\",\"siteNotes\":\"\",\"costreportName\":\"Stanford Hospital and Clinics\",\"siteDesignation\":\"None\",\"siteType\":\"Internal\",\"programIds\":[2,4,15,19,54,91,137,149,163,176,239],\"clerkshipIds\":[]}]"}],"_postman_id":"c8e83891-5a61-47a2-89fe-fad38c377c70"}],"id":"89cda326-98db-4d95-b338-874b7c19b08d","_postman_id":"89cda326-98db-4d95-b338-874b7c19b08d","description":""},{"name":"Stats","item":[],"id":"27723d68-0241-4d57-85b3-c64603d6d85c","_postman_id":"27723d68-0241-4d57-85b3-c64603d6d85c","description":""},{"name":"Student Groups","item":[{"name":"studentgroups/groupFetch","id":"b7f14ba8-4e08-4fc3-8aa4-6c6948aac4be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"10100","type":"text","uuid":"e1b91fbb-4b07-4771-993f-96d6ddc57ee4"},{"key":"ts","value":"{{unixTimestamp}}","type":"text","uuid":"ba9be065-1957-418d-99e0-986c3aaba4b5"},{"key":"type","value":"json","type":"text","uuid":"33cd1723-43ab-4214-895e-0b3bd3243d7f"},{"key":"request","value":"{\"groupID\": 931}","type":"text","uuid":"c89de942-2376-4485-bf88-ce30cd30e3da"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text","uuid":"5e047abc-be14-442a-9a70-d0a7327f7d00"},{"key":"verbose","value":"true","type":"text","uuid":"300b8819-144f-4865-8e03-c0e795386dd8"}]},"url":"https://{yourURL}.medhub.com/functions/api/studentgroups/groupFetch","description":"<p>Retrieve details about a defined student group by groupID.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>groupID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>groupID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifer of student group</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>group_name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>name of student group</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>courseID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier of the course in which the student group is defined</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>current status of the student group</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.06</div><div><div><div><div></div></div></div><div></div></div></td><td><div>1 = active<br />0 = inactive</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>order</div><div><div><div><div></div></div></div><div></div></div></td><td><div>order value of the student group in the list of defined student groups</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Ex: If order=3, this student groups is listed 3rd in the courses list of student groups</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>students</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array of userIDs identifying the students assigned to the group</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.06</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["studentgroups","groupFetch"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"f6dcbc22-b06c-4c84-ac62-0ea41dfcf94a","name":"studentgroups/groupFetch","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"10100","type":"text","uuid":"e1b91fbb-4b07-4771-993f-96d6ddc57ee4"},{"key":"ts","value":"{{unixTimestamp}}","type":"text","uuid":"ba9be065-1957-418d-99e0-986c3aaba4b5"},{"key":"type","value":"json","type":"text","uuid":"33cd1723-43ab-4214-895e-0b3bd3243d7f"},{"key":"request","value":"{\"groupID\": 931}","type":"text","uuid":"c89de942-2376-4485-bf88-ce30cd30e3da"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text","uuid":"5e047abc-be14-442a-9a70-d0a7327f7d00"},{"key":"verbose","value":"true","type":"text","uuid":"300b8819-144f-4865-8e03-c0e795386dd8"}],"options":{"raw":{"language":"json"}}},"url":"https://{yourURL}.medhub.com/functions/api/studentgroups/groupFetch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Apr 2026 15:34:01 GMT"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json","description":""},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!ytfMkJmyCKNLPvFVWY/+k3+/MqFYDdVJ8YBGFf2hahJo148Aq8SP9wvc/Ysko4dAAmOnSmZpBKLuaTk=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"groupID\": 931,\n    \"group_name\": \"api-testing-01\",\n    \"courseID\": null,\n    \"status\": 1,\n    \"order\": 1,\n    \"students\": []\n}"}],"_postman_id":"b7f14ba8-4e08-4fc3-8aa4-6c6948aac4be"},{"name":"studentgroups/groupCreate","id":"5f3ad046-8e78-4f14-9ea3-7014529dc3d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"10100","type":"text","uuid":"e1b91fbb-4b07-4771-993f-96d6ddc57ee4"},{"key":"ts","value":"{{unixTimestamp}}","type":"text","uuid":"ba9be065-1957-418d-99e0-986c3aaba4b5"},{"key":"type","value":"json","type":"text","uuid":"33cd1723-43ab-4214-895e-0b3bd3243d7f"},{"key":"request","value":"{\"groupID\": 931}","type":"text","uuid":"c89de942-2376-4485-bf88-ce30cd30e3da"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text","uuid":"5e047abc-be14-442a-9a70-d0a7327f7d00"},{"key":"verbose","value":"true","type":"text","uuid":"300b8819-144f-4865-8e03-c0e795386dd8"}]},"url":"https://{yourURL}.medhub.com/functions/api/studentgroups/groupFetch","urlObject":{"path":["studentgroups","groupFetch"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"cfbdca13-ba5b-4e2b-a504-fa97be58f9a1","name":"studentgroups/groupCreate","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"10100","type":"text","uuid":"e1b91fbb-4b07-4771-993f-96d6ddc57ee4"},{"key":"ts","value":"{{unixTimestamp}}","type":"text","uuid":"ba9be065-1957-418d-99e0-986c3aaba4b5"},{"key":"type","value":"json","type":"text","uuid":"33cd1723-43ab-4214-895e-0b3bd3243d7f"},{"key":"request","value":"{\"group_name\": \"api-testing-02\", \"courseID\": 1439, \"status\": 1}","type":"text","uuid":"c89de942-2376-4485-bf88-ce30cd30e3da"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text","uuid":"5e047abc-be14-442a-9a70-d0a7327f7d00"},{"key":"verbose","value":"true","type":"text","uuid":"300b8819-144f-4865-8e03-c0e795386dd8"}]},"url":"https://{yourURL}.medhub.com/functions/api/studentgroups/groupCreate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Apr 2026 15:37:30 GMT"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json","description":""},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!/ZabpGi7odXx0rVVWY/+k3+/MqFYDSpKFOVT7aBVCgqp7+hBQ9e8Z19IySITzKgNGlf73P+naYXMZXw=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": true\n}"}],"_postman_id":"5f3ad046-8e78-4f14-9ea3-7014529dc3d6"},{"name":"studentgroups/studentAdd","id":"74c31544-0aa4-488f-9387-1a69f689ec41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"10100","type":"text","uuid":"e1b91fbb-4b07-4771-993f-96d6ddc57ee4"},{"key":"ts","value":"{{unixTimestamp}}","type":"text","uuid":"ba9be065-1957-418d-99e0-986c3aaba4b5"},{"key":"type","value":"json","type":"text","uuid":"33cd1723-43ab-4214-895e-0b3bd3243d7f"},{"key":"request","value":"{\"groupID\": 931}","type":"text","uuid":"c89de942-2376-4485-bf88-ce30cd30e3da"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text","uuid":"5e047abc-be14-442a-9a70-d0a7327f7d00"},{"key":"verbose","value":"true","type":"text","uuid":"300b8819-144f-4865-8e03-c0e795386dd8"}]},"url":"https://{yourURL}.medhub.com/functions/api/studentgroups/groupFetch","urlObject":{"path":["studentgroups","groupFetch"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"fb2fb3d2-98d2-4623-b9c0-4e3b1c91290a","name":"studentgroups/studentAdd","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"10100","type":"text","uuid":"e1b91fbb-4b07-4771-993f-96d6ddc57ee4"},{"key":"ts","value":"{{unixTimestamp}}","type":"text","uuid":"ba9be065-1957-418d-99e0-986c3aaba4b5"},{"key":"type","value":"json","type":"text","uuid":"33cd1723-43ab-4214-895e-0b3bd3243d7f"},{"key":"request","value":"{\"groupID\": 931, \"userID\": 106942, \"block_periodID\": 33183}","type":"text","uuid":"c89de942-2376-4485-bf88-ce30cd30e3da"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text","uuid":"5e047abc-be14-442a-9a70-d0a7327f7d00"},{"key":"verbose","value":"true","type":"text","uuid":"300b8819-144f-4865-8e03-c0e795386dd8"}]},"url":"https://{yourURL}.medhub.com/functions/api/studentgroups/studentAdd"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Apr 2026 15:49:39 GMT"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Keep-Alive","value":"timeout=5, max=95"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json","description":""},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!0esuyp00NRXmlJdVWY/+k3+/MqFYDQn3d0OWft8uqA5e49i/pGVp87wALjRkSuQbm16m5P3pAmCfD64=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true\n}"}],"_postman_id":"74c31544-0aa4-488f-9387-1a69f689ec41"},{"name":"studentgroups/studentRemove","id":"9b0e1252-d6d0-431f-a073-b51b597b68d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"10100","type":"text","uuid":"e1b91fbb-4b07-4771-993f-96d6ddc57ee4"},{"key":"ts","value":"{{unixTimestamp}}","type":"text","uuid":"ba9be065-1957-418d-99e0-986c3aaba4b5"},{"key":"type","value":"json","type":"text","uuid":"33cd1723-43ab-4214-895e-0b3bd3243d7f"},{"key":"request","value":"{\"groupID\": 931}","type":"text","uuid":"c89de942-2376-4485-bf88-ce30cd30e3da"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text","uuid":"5e047abc-be14-442a-9a70-d0a7327f7d00"},{"key":"verbose","value":"true","type":"text","uuid":"300b8819-144f-4865-8e03-c0e795386dd8"}]},"url":"https://{yourURL}.medhub.com/functions/api/studentgroups/groupFetch","urlObject":{"path":["studentgroups","groupFetch"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"024a6a47-1920-4b8f-9ac2-59381c0c778d","name":"studentgroups/studentRemove","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"10100","type":"text","uuid":"e1b91fbb-4b07-4771-993f-96d6ddc57ee4"},{"key":"ts","value":"{{unixTimestamp}}","type":"text","uuid":"ba9be065-1957-418d-99e0-986c3aaba4b5"},{"key":"type","value":"json","type":"text","uuid":"33cd1723-43ab-4214-895e-0b3bd3243d7f"},{"key":"request","value":"{\"groupID\": 931, \"userID\": 106942, \"block_periodID\": 33183}","type":"text","uuid":"c89de942-2376-4485-bf88-ce30cd30e3da"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text","uuid":"5e047abc-be14-442a-9a70-d0a7327f7d00"},{"key":"verbose","value":"true","type":"text","uuid":"300b8819-144f-4865-8e03-c0e795386dd8"}]},"url":"https://{yourURL}.medhub.com/functions/api/studentgroups/studentRemove"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 14 Apr 2026 16:34:24 GMT"},{"key":"Content-Type","value":"application/json","description":""},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!5O6X36+/c+eFGQFVWY/+k3+/MqFYDb/0u9t7S1+vs2mof77wjfBsON7aEY5mxTvZ3Qxm4ops7HzcKxM=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9ec41e239b2aeaf5-ORD"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true\n}"}],"_postman_id":"9b0e1252-d6d0-431f-a073-b51b597b68d3"},{"name":"studentgroups/groupUpdate","id":"7808f404-6889-47ae-8bc6-5d9d31a659b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"10100","type":"text","uuid":"e1b91fbb-4b07-4771-993f-96d6ddc57ee4"},{"key":"ts","value":"{{unixTimestamp}}","type":"text","uuid":"ba9be065-1957-418d-99e0-986c3aaba4b5"},{"key":"type","value":"json","type":"text","uuid":"33cd1723-43ab-4214-895e-0b3bd3243d7f"},{"key":"request","value":"{\"groupID\": 931}","type":"text","uuid":"c89de942-2376-4485-bf88-ce30cd30e3da"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text","uuid":"5e047abc-be14-442a-9a70-d0a7327f7d00"},{"key":"verbose","value":"true","type":"text","uuid":"300b8819-144f-4865-8e03-c0e795386dd8"}]},"url":"https://{yourURL}.medhub.com/functions/api/studentgroups/groupFetch","urlObject":{"path":["studentgroups","groupFetch"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"50de0abf-0f85-4b9a-941e-393b4a093346","name":"studentgroups/groupUpdate","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"10100","type":"text","uuid":"e1b91fbb-4b07-4771-993f-96d6ddc57ee4"},{"key":"ts","value":"{{unixTimestamp}}","type":"text","uuid":"ba9be065-1957-418d-99e0-986c3aaba4b5"},{"key":"type","value":"json","type":"text","uuid":"33cd1723-43ab-4214-895e-0b3bd3243d7f"},{"key":"request","value":"{\"groupID\": 931, \"group_name\": \"Updated Group Name\", \"status\": 1}","type":"text","uuid":"c89de942-2376-4485-bf88-ce30cd30e3da"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text","uuid":"5e047abc-be14-442a-9a70-d0a7327f7d00"},{"key":"verbose","value":"true","type":"text","uuid":"300b8819-144f-4865-8e03-c0e795386dd8"}]},"url":"https://{yourURL}.medhub.com/functions/api/studentgroups/groupUpdate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 14 Apr 2026 16:37:31 GMT"},{"key":"Content-Type","value":"application/json","description":""},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!Y3Y9z2viT6i2XipVWY/+k3+/MqFYDZVpZLZth1bY3oJ6pKps0YntXfqcYBPOVzcgePqPQFvJdz8bUm8=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9ec422b4ab6957fd-ORD"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": true\n}"}],"_postman_id":"7808f404-6889-47ae-8bc6-5d9d31a659b8"}],"id":"baabecc2-148d-45be-9656-b30e462eb42d","_postman_id":"baabecc2-148d-45be-9656-b30e462eb42d","description":""},{"name":"Users","item":[{"name":"users/studentSearch","id":"d4403d7c-71f4-4166-a05f-f72046f05514","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"username\":\"Chung.Haas\",\"status\":\"inactive\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/studentSearch","description":"<p>Search for a student by name, username, or studentID. Response will include all students with data LIKE what is given. If multiple are provided, these will search using an “AND” joiner, excluding results that don’t match all filters.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>name</td>\n        <td>string</td>\n        <td>Yes*</td>\n        <td>v1.06</td>\n        <td>required if username or employeeID not provided</td>\n    </tr>\n    <tr>\n        <td>username</td>\n        <td>string</td>\n        <td>Yes*</td>\n        <td>v1.06</td>\n        <td>required if name or employeeID not provided</td>\n    </tr>\n    <tr>\n        <td>employeeID</td>\n        <td>string</td>\n        <td>Yes*</td>\n        <td>v1.06</td>\n        <td>required if name or username not providedD</td>\n    </tr>\n    <tr>\n        <td>status</td>\n        <td>string</td>\n        <td>No</td>\n        <td></td>\n        <td>values include: \"active\", \"inactive\", \"incoming\"</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>unique user identifer</td>\n        <td>integer</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>name_last</td>\n        <td>last name of student</td>\n        <td>string</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>name_first</td>\n        <td>first name of student</td>\n        <td>string</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>email</td>\n        <td>email address</td>\n        <td>string</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>username</td>\n        <td>student's MedHub username</td>\n        <td>string</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>employeeID</td>\n        <td>student's employee ID</td>\n        <td>string</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>typeID</td>\n        <td>student type assigned in MedHub</td>\n        <td>integer</td>\n        <td>v1.06</td>\n        <td>use users/studentTypes to get a list of all student types</td>\n    </tr>\n    <tr>\n        <td>level</td>\n        <td>medical school year</td>\n        <td>integer</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["users","studentSearch"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"dee233f2-5b63-4c39-a541-1ea027333d39","name":"users/studentSearch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"username\":\"Chung.Haas\",\"status\":\"inactive\"}","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/studentSearch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 31 Mar 2020 17:01:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userID\": \"92877\",\n        \"name_last\": \"Haas\",\n        \"name_first\": \"Chung\",\n        \"email\": \"test@medhub.com\",\n        \"username\": \"Chung.Haas\",\n        \"employeeID\": \"i10\",\n        \"typeID\": \"2\",\n        \"level\": \"4\"\n    }\n]"}],"_postman_id":"d4403d7c-71f4-4166-a05f-f72046f05514"},{"name":"users/residentSearch","id":"1338683e-47a9-4742-8cec-881dd16dc087","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"username\":\"Alleen\",\"status\":\"active\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentSearch","description":"<p>Search for a resident by name, username, or employeeID. Response will include all residents with data LIKE what is given. If multiple are provided, these will search using an “AND” joiner, excluding results that don’t match all filters.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>name</td>\n        <td>string</td>\n        <td>Yes*</td>\n        <td>v0.90</td>\n        <td>required if username or employeeID not provided</td>\n    </tr>\n    <tr>\n        <td>username</td>\n        <td>string</td>\n        <td>Yes*</td>\n        <td>v0.90</td>\n        <td>required if name or employeeID not provided</td>\n    </tr>\n    <tr>\n        <td>employeeID</td>\n        <td>string</td>\n        <td>Yes*</td>\n        <td>v0.90</td>\n        <td>required if name or username not providedD</td>\n    </tr>\n    <tr>\n        <td>status</td>\n        <td>string</td>\n        <td>No</td>\n        <td></td>\n        <td>values include: \"active\", \"inactive\", \"incoming\"</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>unique user identifer</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>name_last</td>\n        <td>last name of resident</td>\n        <td>string</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>name_first</td>\n        <td>first name of resident</td>\n        <td>string</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>email</td>\n        <td>email address</td>\n        <td>string</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>username</td>\n        <td>resident's MedHub username</td>\n        <td>string</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>employeeID</td>\n        <td>resident's employee ID</td>\n        <td>string</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>typeID</td>\n        <td>resident type assigned in MedHub</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td>use users/residentTypes to get a list of all resident types</td>\n    </tr>\n    <tr>\n        <td>level</td>\n        <td>PG training year</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["users","residentSearch"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"76cd464a-4adc-4e41-8b36-b8407a9e02b0","name":"users/residentSearch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"username\":\"Alleen\",\"status\":\"active\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentSearch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Apr 2020 14:10:07 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userID\": \"97927\",\n        \"name_last\": \"Archuleta\",\n        \"name_first\": \"Alleen\",\n        \"email\": \"test31233@medhub.com\",\n        \"username\": \"Alleen\",\n        \"employeeID\": \"0123456789\",\n        \"typeID\": \"2\",\n        \"level\": \"5\",\n        \"programID\": \"481\"\n    }\n]"}],"_postman_id":"1338683e-47a9-4742-8cec-881dd16dc087"},{"name":"users/residentDemographics","id":"0b5852d3-bb47-4d56-ac31-a4d8e29b3909","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"username\":\"Alleen\",\"status\":\"active\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentDemographics","description":"<p>Get a list of Resident's demographic data.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes\\*</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div>required if username or employeeID not provided</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>username</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes\\*</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div>required if name or employeeID not provided</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>employeeID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes\\*</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div>required if name or username not providedD</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>values include: \"active\", \"inactive\", \"incoming\"</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique user identifer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>name_last</div><div><div><div><div></div></div></div><div></div></div></td><td><div>last name of resident</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>name_first</div><div><div><div><div></div></div></div><div></div></div></td><td><div>first name of resident</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>email</div><div><div><div><div></div></div></div><div></div></div></td><td><div>email address</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>username</div><div><div><div><div></div></div></div><div></div></div></td><td><div>resident's MedHub username</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>employeeID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>resident's employee ID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>typeID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>resident type assigned in MedHub</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div>use users/residentTypes to get a list of all resident types</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>level</div><div><div><div><div></div></div></div><div></div></div></td><td><div>PG training year</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["users","residentDemographics"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b5852d3-bb47-4d56-ac31-a4d8e29b3909"},{"name":"users/residentDemographicsChangeHistory","id":"929a02a7-e3fc-404d-9528-daebcbf25540","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"username\":\"Alleen\",\"status\":\"active\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentDemographicsChangeHistory","description":"<p>Get information about changes to a Resident's demographic data (change history).</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes\\*</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>\\*Either userID or field_name must be provided.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>field_name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes\\*</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>\\*Either userID or field_name must be provided.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>start_date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Date range is optional. Defaults to past year if not provided.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>end_date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Date range is optional. Defaults to past year if not provided.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique user identifier</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>field_name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>the field that was changed</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>e.g., status_RefID</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>old_value</div><div><div><div><div></div></div></div><div></div></div></td><td><div>previous value</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>new_value</div><div><div><div><div></div></div></div><div></div></div></td><td><div>what the value changed to</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>changed_at</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date and time of change to speicified field</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>yyyy-mm-dd; hrs-min-sec</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["users","residentDemographicsChangeHistory"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"929a02a7-e3fc-404d-9528-daebcbf25540"},{"name":"users/facultySearch","id":"8a98d1c2-38b1-49d7-8531-1ac9a2581339","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"name\":\"John\",\"status\":\"active\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/facultySearch","description":"<p>Search for faculty by name, username, or employeeID. Response will include all residents with data LIKE what is given. If multiple are provided, these will search using an “AND” joiner, excluding results that don’t match all filters.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td>name</td><td>string</td><td>Yes\\\\*</td><td>v0.90</td><td>required if username or employeeID not provided</td></tr><tr><td>username</td><td>string</td><td>Yes\\\\*</td><td>v0.90</td><td>required if name or employeeID not provided</td></tr><tr><td>employeeID</td><td>string</td><td>Yes\\\\*</td><td>v0.90</td><td>required if name or username not providedD</td></tr><tr><td>status</td><td>string</td><td>No</td><td></td><td>values include: \"active\", \"inactive\", \"incoming\"</td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td>userID</td><td>unique user identifer</td><td>integer</td><td></td><td></td></tr><tr><td>name_last</td><td>last name of resident</td><td>string</td><td></td><td></td></tr><tr><td>name_first</td><td>first name of resident</td><td></td><td></td><td></td></tr><tr><td>email</td><td>email address</td><td></td><td></td><td></td></tr><tr><td>username</td><td>resident's MedHub username</td><td>string</td><td></td><td></td></tr><tr><td>employeeID</td><td>resident's employee ID</td><td></td><td></td><td></td></tr><tr><td>courseID/programID</td><td>unique identifier for program or course</td><td></td><td></td><td></td></tr></tbody></table>","urlObject":{"path":["users","facultySearch"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"dbaa21a0-0262-4257-be5b-eee2fa216c8b","name":"users/facultySearch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"name\":\"John\",\"status\":\"active\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/facultySearch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Nov 2022 16:39:42 GMT"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!uXSojZvXPeHtgGJ7WsnXQYG5SzWDjWvCo3n8TqbRg1GUTxDC+XlVQVd6hueZiZAX91yy3uCsYDUZwfw=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=16070400; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userID\": \"85374\",\n        \"name_last\": \"Baca\",\n        \"name_first\": \"Johnnie\",\n        \"email\": \"test@medhub.com\",\n        \"username\": \"Johnnie.Baca\",\n        \"employeeID\": \"\",\n        \"courseID\": \"4\"\n    },\n    {\n        \"userID\": \"82876\",\n        \"name_last\": \"Carney\",\n        \"name_first\": \"Johnetta\",\n        \"email\": \"test@medhub.com\",\n        \"username\": \"Johnetta.Carney\",\n        \"employeeID\": \"\",\n        \"courseID\": \"173\"\n    },\n    {\n        \"userID\": \"72358\",\n        \"name_last\": \"Davila\",\n        \"name_first\": \"Johnathon\",\n        \"email\": \"test@medhub.com\",\n        \"username\": \"Johnathon.Davila\",\n        \"employeeID\": \"\",\n        \"courseID\": \"196\"\n    },\n    {\n        \"userID\": \"71777\",\n        \"name_last\": \"Johnson\",\n        \"name_first\": \"Lawana\",\n        \"email\": \"test@medhub.com\",\n        \"username\": \"Lawana.Johnson\",\n        \"employeeID\": \"\",\n        \"courseID\": \"176\"\n    },\n    {\n        \"userID\": \"85167\",\n        \"name_last\": \"Johnston\",\n        \"name_first\": \"Mikel\",\n        \"email\": \"test@medhub.com\",\n        \"username\": \"Mikel.Johnston\",\n        \"employeeID\": \"\",\n        \"courseID\": \"170\"\n    },\n    {\n        \"userID\": \"81743\",\n        \"name_last\": \"King\",\n        \"name_first\": \"Johnathon\",\n        \"email\": \"test@medhub.com\",\n        \"username\": \"Johnathon.King\",\n        \"employeeID\": \"\",\n        \"courseID\": \"205\"\n    },\n    {\n        \"userID\": \"72448\",\n        \"name_last\": \"Littlejohn\",\n        \"name_first\": \"Keri\",\n        \"email\": \"test@medhub.com\",\n        \"username\": \"Keri.Littlejohn\",\n        \"employeeID\": \"\",\n        \"programID\": \"70\"\n    },\n    {\n        \"userID\": \"85924\",\n        \"name_last\": \"Sparks\",\n        \"name_first\": \"Johnetta\",\n        \"email\": \"test@medhub.com\",\n        \"username\": \"Johnetta.Sparks\",\n        \"employeeID\": \"\",\n        \"courseID\": \"172\"\n    }\n]"}],"_postman_id":"8a98d1c2-38b1-49d7-8531-1ac9a2581339"},{"name":"users/courseCoordinatorSearch","id":"3e620b8c-e9d8-4d6a-89b6-d647ac3663c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"username\":\"ccoord\",\"name\":\"Coordinator\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/courseCoordinatorSearch","description":"<p>Performs a simple search of course coordinators by name, employee ID and/or username. At least one of these search filters is required.\nIf multiple are provided, these will search using an “AND” joiner, excluding results that don’t match all filters.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>name</td>\n        <td>string</td>\n        <td>Yes*</td>\n        <td>v1.28</td>\n        <td>*required if username or employeeID not specified</td>\n    </tr>\n    <tr>\n        <td>username</td>\n        <td>string</td>\n        <td>Yes*</td>\n        <td>v1.28</td>\n        <td>*required if name or employeeID not specified</td>\n    </tr>\n    <tr>\n        <td>employeeID</td>\n        <td>string</td>\n        <td>Yes*</td>\n        <td>v1.28</td>\n        <td>*required if name or username not specified</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>unique user identifer</td>\n        <td>integer</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>name_last</td>\n        <td>last name</td>\n        <td>string</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>name_first</td>\n        <td>first name</td>\n        <td>string</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>email</td>\n        <td>email address</td>\n        <td>string</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>username</td>\n        <td>MedHub username</td>\n        <td>string</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>employeeID</td>\n        <td>employee ID</td>\n        <td>string</td>\n        <td>v1.28</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["users","courseCoordinatorSearch"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"d8cf7e27-baa9-4853-b49a-238907636f4c","name":"users/residentSearch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"username\":\"Alleen\",\"status\":\"active\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentSearch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Apr 2020 14:10:07 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userID\": \"97927\",\n        \"name_last\": \"Archuleta\",\n        \"name_first\": \"Alleen\",\n        \"email\": \"test31233@medhub.com\",\n        \"username\": \"Alleen\",\n        \"employeeID\": \"0123456789\",\n        \"typeID\": \"2\",\n        \"level\": \"5\",\n        \"programID\": \"481\"\n    }\n]"},{"id":"f0f5898b-678e-495c-815f-99271534a463","name":"users/courseCoordinatorSearch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"username\":\"ccoord\",\"name\":\"Coordinator\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/courseCoordinatorSearch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jun 2020 19:52:12 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userID\": 82568,\n        \"name_last\": \"Coordinator\",\n        \"name_first\": \"Course\",\n        \"email\": \"test@medhub.com\",\n        \"username\": \"ccoord\",\n        \"employeeID\": \"\"\n    },\n    {\n        \"userID\": 119299,\n        \"name_last\": \"Coordinator\",\n        \"name_first\": \"Course\",\n        \"email\": \"test@medhub.com\",\n        \"username\": \"ccoord2\",\n        \"employeeID\": \"\"\n    }\n]"}],"_postman_id":"3e620b8c-e9d8-4d6a-89b6-d647ac3663c9"},{"name":"users/students","id":"0d071832-dc7b-4aac-8a86-5e7364eb7da6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"courseID\":233}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/students","description":"<p>Lists the active students in a specified course</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>courseID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>unique user identifer</td>\n        <td>integer</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>name_last</td>\n        <td>last name of student</td>\n        <td>text</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>name_first</td>\n        <td>first name of student</td>\n        <td>text</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>email</td>\n        <td>email address</td>\n        <td>text</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>username</td>\n        <td>student's MedHub username</td>\n        <td>text</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>employeeID</td>\n        <td>student's employee ID</td>\n        <td>text</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>typeID</td>\n        <td>student type assigned in MedHub</td>\n        <td>integer</td>\n        <td>v1.06</td>\n        <td>use users/studentTypes to get a list of all student types</td>\n    </tr>\n    <tr>\n        <td>level</td>\n        <td>medical school year</td>\n        <td>integer</td>\n        <td>v1.06</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["users","students"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"24508878-2e87-4c9a-9890-21824a682dc9","name":"users/students","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"courseID\":233}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/students"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Apr 2020 14:03:59 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userID\": \"94998\",\n        \"name_last\": \"Aaron\",\n        \"name_first\": \"Tanya\",\n        \"email\": \"test@medhub.com\",\n        \"username\": \"Tanya.Aaron\",\n        \"employeeID\": \"142\",\n        \"typeID\": \"1\",\n        \"level\": \"4\",\n        \"active\": true\n    },\n    {\n        \"userID\": \"98634\",\n        \"name_last\": \"Aashaw\",\n        \"name_first\": \"Mary\",\n        \"email\": \"demotest2@medhub.com\",\n        \"username\": \"tmpmdishaw\",\n        \"employeeID\": \"123445\",\n        \"typeID\": \"1\",\n        \"level\": \"3\",\n        \"active\": true\n    },\n    {\n        \"userID\": \"94127\",\n        \"name_last\": \"Anderson\",\n        \"name_first\": \"Gayle\",\n        \"email\": \"test@medhub.com\",\n        \"username\": \"student\",\n        \"employeeID\": \"904928181\",\n        \"typeID\": \"1\",\n        \"level\": \"4\",\n        \"active\": true\n    }\n]"}],"_postman_id":"0d071832-dc7b-4aac-8a86-5e7364eb7da6"},{"name":"users/addStudentTrainingHistory","id":"835af808-4f90-4896-8099-afacba8df843","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"type","type":"text","value":"json"},{"key":"verbose","value":"true","type":"text","uuid":"7b063da2-bca8-482f-96dd-43e2b7d175ed"},{"key":"XDEBUG_SESSION","value":"PHPSTORM","type":"text","uuid":"82140e15-b83c-45c9-9109-d88cd9a91f94"},{"key":"request","value":"{\"userID\": \"66599\", \"startDate\": \"2029-01-01\", \"endDate\": \"2029-01-30\", \"trainingType\": 4, \"location\": \"2436 Main Street, Springfield, IL 62704, United States\", \"locationAddress\": \"Additional location Details\", \"otherTraining\": \"Training other\"}","type":"text","uuid":"19b86256-9606-4eab-accb-6e8456de3680"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/studentTrainingCreate","description":"<p>Adds a training history record for a student.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>startDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>endDate</div><div><div><div><div></div></div></div><div></div></div></td><td><div>date</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>trainingType</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>level</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>typeID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>visiting_schoolID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>clerkshipID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>location</div><div><div><div><div></div></div></div><div></div></div></td><td><div>text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>otherTraining</div><div><div><div><div></div></div></div><div></div></div></td><td><div>test</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>trainingID</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["users","studentTrainingCreate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"835af808-4f90-4896-8099-afacba8df843"},{"name":"users/getStudentTrainingTypes","id":"ef36b150-aa25-4db5-bdf7-fe14f36444c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"type","type":"text","value":"json"},{"key":"verbose","value":"true","type":"text","uuid":"7b063da2-bca8-482f-96dd-43e2b7d175ed"},{"key":"XDEBUG_SESSION","value":"PHPSTORM","type":"text","uuid":"82140e15-b83c-45c9-9109-d88cd9a91f94"},{"key":"request","value":"{\"userID\": \"66599\", \"startDate\": \"2029-01-01\", \"endDate\": \"2029-01-30\", \"trainingType\": 4, \"location\": \"2436 Main Street, Springfield, IL 62704, United States\", \"locationAddress\": \"Additional location Details\", \"otherTraining\": \"Training other\"}","type":"text","uuid":"19b86256-9606-4eab-accb-6e8456de3680"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/studentTrainingCreate","description":"<p>Gets a list of student training types.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>schooID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>trainingTypeID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>training_type_name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>training_typeA</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["users","studentTrainingCreate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"ef36b150-aa25-4db5-bdf7-fe14f36444c3"},{"name":"users/residents","id":"c41aadb6-bb7d-4abf-8fcb-e7feca87851e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"programID\":890}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residents","description":"<p>Lists the active (by default) residents in a specified program (by default). You may include a status parameter to retrieve incoming residents.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>programID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>Optionally include</p><ul><li><div>\"status\": \"incoming\" in request to get a list of incoming residents (i.e. only have a future-dated training record)</div></li><li><div>\"status\": \"all\" to include both active and inactive residents.</div></li></ul></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique user identifer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>name_last</div><div><div><div><div></div></div></div><div></div></div></td><td><div>last name of resident</div><div><div><div><div></div></div></div><div></div></div></td><td><div>text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>name_first</div><div><div><div><div></div></div></div><div></div></div></td><td><div>first name of resident</div><div><div><div><div></div></div></div><div></div></div></td><td><div>text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>email</div><div><div><div><div></div></div></div><div></div></div></td><td><div>email address</div><div><div><div><div></div></div></div><div></div></div></td><td><div>text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>username</div><div><div><div><div></div></div></div><div></div></div></td><td><div>resident's MedHub username</div><div><div><div><div></div></div></div><div></div></div></td><td><div>text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>employeeID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>resident's employee ID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>typeID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>resident type assigned in MedHub</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div>use users/residentTypes to get a list of all resident types</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>level</div><div><div><div><div></div></div></div><div></div></div></td><td><div>PG training year</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v0.90</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["users","residents"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"eb740c04-1532-48b0-b5e5-807b14ea5035","name":"users/residents","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"programID\":890}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Apr 2020 14:19:00 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userID\": \"115902\",\n        \"name_last\": \"Alford\",\n        \"name_first\": \"Hitomi\",\n        \"email\": \"halford@medhub.com\",\n        \"username\": \"halford\",\n        \"employeeID\": \"a1b2c3d4\",\n        \"typeID\": \"2\",\n        \"level\": \"5\",\n        \"programID\": \"890\"\n    },\n    {\n        \"userID\": \"114802\",\n        \"name_last\": \"Beasley\",\n        \"name_first\": \"Dolly\",\n        \"email\": \"dbeasley@medhub.com\",\n        \"username\": \"dbeasley\",\n        \"employeeID\": \"\",\n        \"typeID\": \"2\",\n        \"level\": \"3\",\n        \"programID\": \"890\"\n    },\n    {\n        \"userID\": \"119511\",\n        \"name_last\": \"NewResident\",\n        \"name_first\": \"Timothy\",\n        \"email\": \"username@domain.com\",\n        \"username\": \"tnewresident\",\n        \"employeeID\": \"\",\n        \"typeID\": \"2\",\n        \"level\": \"1\",\n        \"programID\": \"890\"\n    }\n]"}],"_postman_id":"c41aadb6-bb7d-4abf-8fcb-e7feca87851e"},{"name":"users/residentTraining","id":"b7f06343-69bf-487b-86f5-7cbca158c405","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\":97927}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentTraining","description":"<p>Retrieves training history records for a given resident.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n         <tr>\n        <td>trainingID</td>\n        <td>unique training record identifier</td>\n        <td>integer</td>\n        <td>v1.05</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>training_typeID</td>\n        <td>unique identifier of training type</td>\n        <td>integer</td>\n        <td>v1.05</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>training_type_name</td>\n        <td>name of training type</td>\n        <td>string</td>\n        <td>v1.05</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>start_date</td>\n        <td>start date of training record</td>\n        <td>date</td>\n        <td>v1.05</td>\n        <td>format: \"YYYY-MM-DD\"</td>\n    </tr>\n    <tr>\n        <td>end_date</td>\n        <td>end date of training record</td>\n        <td>date</td>\n        <td>v1.05</td>\n        <td>format: \"YYYY-MM-DD\"</td>\n    </tr>\n    <tr>\n        <td>level</td>\n        <td>level of training/PGY</td>\n        <td>integer</td>\n        <td>v1.05</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>unique identifier of program</td>\n        <td>integer</td>\n        <td>v1.05</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>program_name</td>\n        <td>name of program</td>\n        <td>string</td>\n        <td>v1.05</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>inhouse</td>\n        <td>in-house training record</td>\n        <td>boolean</td>\n        <td>v1.05</td>\n        <td>true=in-house, false=not in-house</td>\n    </tr>\n    <tr>\n        <td>location</td>\n        <td>location of training</td>\n        <td>string</td>\n        <td>v1.05</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>typeID</td>\n        <td>unique identifer of resident type</td>\n        <td>integer</td>\n        <td>v1.05</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>type_name</td>\n        <td>name of resident type</td>\n        <td>string</td>\n        <td>v1.05</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["users","residentTraining"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"0b016b5c-8e23-496a-955e-bd3a5aab83a1","name":"users/residentTraining","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":97927}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentTraining"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Dec 2020 12:42:29 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"trainingID\": \"134819\",\n        \"training_typeID\": \"2\",\n        \"training_type_name\": \"Residency\",\n        \"start_date\": \"2015-06-12\",\n        \"end_date\": \"2015-06-30\",\n        \"level\": \"1\",\n        \"programID\": \"481\",\n        \"program_name\": \"Internal Medicine - PRIMARY CARE\",\n        \"inhouse\": true,\n        \"location\": \"Ann Arbor, MI\",\n        \"typeID\": \"2\",\n        \"type_name\": \"Resident\"\n    },\n    {\n        \"trainingID\": \"135590\",\n        \"training_typeID\": \"2\",\n        \"training_type_name\": \"Residency\",\n        \"start_date\": \"2015-07-01\",\n        \"end_date\": \"2016-06-30\",\n        \"level\": \"1\",\n        \"programID\": \"481\",\n        \"program_name\": \"Internal Medicine - PRIMARY CARE\",\n        \"inhouse\": true,\n        \"location\": \"Ann Arbor, MI\",\n        \"typeID\": \"2\",\n        \"type_name\": \"Resident\"\n    },\n    {\n        \"trainingID\": \"135665\",\n        \"training_typeID\": \"2\",\n        \"training_type_name\": \"Residency\",\n        \"start_date\": \"2016-07-01\",\n        \"end_date\": \"2017-06-30\",\n        \"level\": \"2\",\n        \"programID\": \"481\",\n        \"program_name\": \"Internal Medicine - PRIMARY CARE\",\n        \"inhouse\": true,\n        \"location\": \"Ann Arbor, MI\",\n        \"typeID\": \"2\",\n        \"type_name\": \"Resident\"\n    },\n    {\n        \"trainingID\": \"150740\",\n        \"training_typeID\": \"2\",\n        \"training_type_name\": \"Residency\",\n        \"start_date\": \"2017-07-01\",\n        \"end_date\": \"2018-06-30\",\n        \"level\": \"3\",\n        \"programID\": \"481\",\n        \"program_name\": \"Internal Medicine - PRIMARY CARE\",\n        \"inhouse\": true,\n        \"location\": \"Ann Arbor, MI\",\n        \"typeID\": \"2\",\n        \"type_name\": \"Resident\"\n    },\n    {\n        \"trainingID\": \"152076\",\n        \"training_typeID\": \"2\",\n        \"training_type_name\": \"Residency\",\n        \"start_date\": \"2018-07-01\",\n        \"end_date\": \"2018-07-10\",\n        \"level\": \"3\",\n        \"programID\": \"481\",\n        \"program_name\": \"Internal Medicine - PRIMARY CARE\",\n        \"inhouse\": true,\n        \"location\": \"Ann Arbor, MI\",\n        \"typeID\": \"2\",\n        \"type_name\": \"Resident\"\n    },\n    {\n        \"trainingID\": \"151896\",\n        \"training_typeID\": \"2\",\n        \"training_type_name\": \"Residency\",\n        \"start_date\": \"2018-07-13\",\n        \"end_date\": \"2019-07-13\",\n        \"level\": \"4\",\n        \"programID\": \"481\",\n        \"program_name\": \"Internal Medicine - PRIMARY CARE\",\n        \"inhouse\": true,\n        \"location\": \"Ann Arbor, MI\",\n        \"typeID\": \"2\",\n        \"type_name\": \"Resident\"\n    },\n    {\n        \"trainingID\": \"151904\",\n        \"training_typeID\": \"2\",\n        \"training_type_name\": \"Residency\",\n        \"start_date\": \"2019-07-14\",\n        \"end_date\": \"2020-07-13\",\n        \"level\": \"5\",\n        \"programID\": \"481\",\n        \"program_name\": \"Internal Medicine - PRIMARY CARE\",\n        \"inhouse\": true,\n        \"location\": \"Ann Arbor, MI\",\n        \"typeID\": \"2\",\n        \"type_name\": \"Resident\"\n    },\n    {\n        \"trainingID\": \"155157\",\n        \"training_typeID\": \"2\",\n        \"training_type_name\": \"Residency\",\n        \"start_date\": \"2020-07-14\",\n        \"end_date\": \"2021-07-13\",\n        \"level\": \"6\",\n        \"programID\": \"481\",\n        \"program_name\": \"Internal Medicine - PRIMARY CARE\",\n        \"inhouse\": true,\n        \"location\": \"Ann Arbor, MI\",\n        \"typeID\": \"2\",\n        \"type_name\": \"Resident\"\n    }\n]"}],"_postman_id":"b7f06343-69bf-487b-86f5-7cbca158c405"},{"name":"users/faculty","id":"bbd19d37-c5ad-46f2-b07d-27380b08138b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"programID\":890}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/faculty","description":"<p>Lists the active faculty in a specified program.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v0.90</td>\n        <td></td>\n</tr></table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>unique user identifier</td>\n        <td>integer</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>name_last</td>\n        <td>last name</td>\n        <td>text</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>name_first</td>\n        <td>first name</td>\n        <td>text</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>email</td>\n        <td>email address</td>\n        <td>text</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>username</td>\n        <td>MedHub username</td>\n        <td>text</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>employeeID</td>\n        <td>employee ID</td>\n        <td>text</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["users","faculty"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"36d40bd0-c2aa-4bba-b8ee-df2018c2bf70","name":"users/faculty","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"programID\":890}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/faculty"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 13 Apr 2020 12:53:05 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userID\": \"77116\",\n        \"name_last\": \"Armstrong\",\n        \"name_first\": \"Mandi\",\n        \"email\": \"test@medhub.com\",\n        \"username\": \"MandiArmstrong\",\n        \"employeeID\": \"abc1234\"\n    },\n    {\n        \"userID\": \"114935\",\n        \"name_last\": \"Arnold\",\n        \"name_first\": \"Michelle\",\n        \"email\": \"marnold@medhub.com\",\n        \"username\": \"marnold\",\n        \"employeeID\": \"\"\n    },\n    {\n        \"userID\": \"114923\",\n        \"name_last\": \"Bender\",\n        \"name_first\": \"Arthur\",\n        \"email\": \"abender@medhub.com\",\n        \"username\": \"abender\",\n        \"employeeID\": \"\"\n    },\n    {\n        \"userID\": \"114941\",\n        \"name_last\": \"Gomez\",\n        \"name_first\": \"Earl\",\n        \"email\": \"egomez@medhub.com\",\n        \"username\": \"egomez\",\n        \"employeeID\": \"\"\n    },\n    {\n        \"userID\": \"114914\",\n        \"name_last\": \"Harris\",\n        \"name_first\": \"Tanya\",\n        \"email\": \"tharris@medhub.com\",\n        \"username\": \"tharris\",\n        \"employeeID\": \"\"\n    },\n    {\n        \"userID\": \"114925\",\n        \"name_last\": \"Horne\",\n        \"name_first\": \"Bertha\",\n        \"email\": \"behorn@medhub.com\",\n        \"username\": \"behorn\",\n        \"employeeID\": \"\"\n    },\n    {\n        \"userID\": \"114934\",\n        \"name_last\": \"Jacobs\",\n        \"name_first\": \"Lorenzo\",\n        \"email\": \"ljacobs@medhub.com\",\n        \"username\": \"ljacobs\",\n        \"employeeID\": \"\"\n    },\n    {\n        \"userID\": \"114917\",\n        \"name_last\": \"Johns\",\n        \"name_first\": \"Alex\",\n        \"email\": \"ajohns@medhub.com\",\n        \"username\": \"ajohns\",\n        \"employeeID\": \"\"\n    },\n    {\n        \"userID\": \"114931\",\n        \"name_last\": \"Joyce\",\n        \"name_first\": \"Tammy\",\n        \"email\": \"tjoyce@medhub.com\",\n        \"username\": \"tjoyce\",\n        \"employeeID\": \"\"\n    },\n    {\n        \"userID\": \"114928\",\n        \"name_last\": \"Knapp\",\n        \"name_first\": \"Toshie\",\n        \"email\": \"tknapp@medhub.com\",\n        \"username\": \"tknapp\",\n        \"employeeID\": \"\"\n    },\n    {\n        \"userID\": \"117239\",\n        \"name_last\": \"Levy\",\n        \"name_first\": \"Karen\",\n        \"email\": \"klevy@medhub.com\",\n        \"username\": \"klevy\",\n        \"employeeID\": \"\"\n    },\n    {\n        \"userID\": \"114939\",\n        \"name_last\": \"Madden\",\n        \"name_first\": \"Humberto\",\n        \"email\": \"hmadden@medhub.com\",\n        \"username\": \"hmadden\",\n        \"employeeID\": \"\"\n    },\n    {\n        \"userID\": \"114933\",\n        \"name_last\": \"Owen\",\n        \"name_first\": \"Edouard\",\n        \"email\": \"eowen@medhub.com\",\n        \"username\": \"eowen\",\n        \"employeeID\": \"\"\n    },\n    {\n        \"userID\": \"114927\",\n        \"name_last\": \"Payne\",\n        \"name_first\": \"Arthur\",\n        \"email\": \"apayne@medhub.com\",\n        \"username\": \"apayne\",\n        \"employeeID\": \"\"\n    },\n    {\n        \"userID\": \"117237\",\n        \"name_last\": \"Petersen\",\n        \"name_first\": \"Michelle\",\n        \"email\": \"mpetersen@medhub.com\",\n        \"username\": \"mpetersen\",\n        \"employeeID\": \"\"\n    }\n]"}],"_postman_id":"bbd19d37-c5ad-46f2-b07d-27380b08138b"},{"name":"users/studentFields","id":"a945a671-cb5a-4cbf-91ac-c7f1e9bd4ac9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>no input required</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/studentFields","description":"<p>Retrieves a list of all student demographic fields defined for the institution that can be used when creating or updating a student account.  </p>\n<p><em>Note: these fields will vary by institution as different insitutions enable/disable fields and/or create custom fields.</em></p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>n/a</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>array of demographic fields</div><div><div><div><div></div></div></div><div></div></div></td><td><div>returns an array of all student demographic fields for the insitution</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.20</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>List of fields will be variable depending on the institution. Attributes of each field will include:<br /></p><ul><li><div>label – text, the user interface label name in MedHub</div></li><li><div>required – text, yes or no value defining if the field is required to create a student</div></li><li><div>field_type – text, the type of the field (text, number, date, Boolean)</div></li><li><div>options – array, an array of the options that can be passed for that particular field</div></li></ul></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["users","studentFields"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"0292d729-8f10-4cb8-8b95-156a79f623e3","name":"users/studentFields","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"no input required","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/studentFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 29 May 2020 18:52:09 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"institution_abbreviation\": {\n        \"label\": \"Institution Abbreviation\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"HH\",\n                \"value\": \"2\"\n            },\n            {\n                \"title\": \"Sand\",\n                \"value\": \"1\"\n            }\n        ]\n    },\n    \"last_name\": {\n        \"label\": \"Last Name\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"first_name\": {\n        \"label\": \"First Name\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"username\": {\n        \"label\": \"Username\",\n        \"required\": \"yes\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"20\",\n        \"field_length_max\": \"20\"\n    },\n    \"active_y_n\": {\n        \"label\": \"Active (Y/N)\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"boolean\",\n        \"comment\": \"Boolean value: 1 or 0\"\n    },\n    \"current_y_n\": {\n        \"label\": \"Current (Y/N)\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"boolean\",\n        \"comment\": \"Boolean value: 1 or 0\"\n    },\n    \"training_year\": {\n        \"label\": \"Training Year\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"number\"\n    },\n    \"student_type\": {\n        \"label\": \"Student Type\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"In-State (OK)\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"Out of State\",\n                \"value\": \"2\"\n            },\n            {\n                \"title\": \"International\",\n                \"value\": \"3\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"degree\": {\n        \"label\": \"Degree\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"M.D.\",\n                \"value\": \"MD\"\n            },\n            {\n                \"title\": \"M.D./Ph.D.\",\n                \"value\": \"MD/PHD\"\n            },\n            {\n                \"title\": \"M.D./M.B.A.\",\n                \"value\": \"MD/MBA\"\n            },\n            {\n                \"title\": \"M.D./M.H.S.\",\n                \"value\": \"MD/MHS\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"npi\": {\n        \"label\": \"NPI\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"place_of_birth\": {\n        \"label\": \"Place of Birth\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"20\",\n        \"field_length_max\": \"50\"\n    },\n    \"country_of_birth\": {\n        \"label\": \"Country of Birth\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"20\",\n        \"field_length_max\": \"50\"\n    },\n    \"date_of_birth\": {\n        \"label\": \"Date of Birth\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"10\"\n    },\n    \"gender\": {\n        \"label\": \"Gender\",\n        \"required\": \"yes\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Female\",\n                \"value\": \"F\"\n            },\n            {\n                \"title\": \"Male\",\n                \"value\": \"M\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"citizenship\": {\n        \"label\": \"Citizenship\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Afghanistan\",\n                \"value\": \"AF\"\n            },\n            {\n                \"title\": \"Albania\",\n                \"value\": \"AL\"\n            },\n            {\n                \"title\": \"Algeria\",\n                \"value\": \"DZ\"\n            },\n            {\n                \"title\": \"American Samoa\",\n                \"value\": \"AS\"\n            },\n            {\n                \"title\": \"Andorra\",\n                \"value\": \"AD\"\n            },\n            {\n                \"title\": \"Angola\",\n                \"value\": \"AO\"\n            },\n            {\n                \"title\": \"Anguilla\",\n                \"value\": \"AI\"\n            },\n            {\n                \"title\": \"Antarctica\",\n                \"value\": \"AQ\"\n            },\n            {\n                \"title\": \"Antigua And Barbuda\",\n                \"value\": \"AG\"\n            },\n            {\n                \"title\": \"Argentina\",\n                \"value\": \"AR\"\n            },\n            {\n                \"title\": \"Armenia\",\n                \"value\": \"AM\"\n            },\n            {\n                \"title\": \"Aruba\",\n                \"value\": \"AW\"\n            },\n            {\n                \"title\": \"Australia\",\n                \"value\": \"AU\"\n            },\n            {\n                \"title\": \"Austria\",\n                \"value\": \"AT\"\n            },\n            {\n                \"title\": \"Azerbaijan\",\n                \"value\": \"AZ\"\n            },\n            {\n                \"title\": \"Bahamas\",\n                \"value\": \"BS\"\n            },\n            {\n                \"title\": \"Bahrain\",\n                \"value\": \"BH\"\n            },\n            {\n                \"title\": \"Bangladesh\",\n                \"value\": \"BD\"\n            },\n            {\n                \"title\": \"Barbados\",\n                \"value\": \"BB\"\n            },\n            {\n                \"title\": \"Belarus\",\n                \"value\": \"BY\"\n            },\n            {\n                \"title\": \"Belgium\",\n                \"value\": \"BE\"\n            },\n            {\n                \"title\": \"Belize\",\n                \"value\": \"BZ\"\n            },\n            {\n                \"title\": \"Benin\",\n                \"value\": \"BJ\"\n            },\n            {\n                \"title\": \"Bermuda\",\n                \"value\": \"BM\"\n            },\n            {\n                \"title\": \"Bhutan\",\n                \"value\": \"BT\"\n            },\n            {\n                \"title\": \"Bolivia\",\n                \"value\": \"BO\"\n            },\n            {\n                \"title\": \"Bosnia And Herzegowina\",\n                \"value\": \"BA\"\n            },\n            {\n                \"title\": \"Botswana\",\n                \"value\": \"BW\"\n            },\n            {\n                \"title\": \"Bouvet Island\",\n                \"value\": \"BV\"\n            },\n            {\n                \"title\": \"Brazil\",\n                \"value\": \"BR\"\n            },\n            {\n                \"title\": \"British Indian Ocean Territory\",\n                \"value\": \"IO\"\n            },\n            {\n                \"title\": \"Brunei Darussalam\",\n                \"value\": \"BN\"\n            },\n            {\n                \"title\": \"Bulgaria\",\n                \"value\": \"BG\"\n            },\n            {\n                \"title\": \"Burkina Faso\",\n                \"value\": \"BF\"\n            },\n            {\n                \"title\": \"Burundi\",\n                \"value\": \"BI\"\n            },\n            {\n                \"title\": \"Cambodia\",\n                \"value\": \"KH\"\n            },\n            {\n                \"title\": \"Cameroon\",\n                \"value\": \"CM\"\n            },\n            {\n                \"title\": \"Canada\",\n                \"value\": \"CA\"\n            },\n            {\n                \"title\": \"Cape Verde\",\n                \"value\": \"CV\"\n            },\n            {\n                \"title\": \"Cayman Islands\",\n                \"value\": \"KY\"\n            },\n            {\n                \"title\": \"Central African Republic\",\n                \"value\": \"CF\"\n            },\n            {\n                \"title\": \"Chad\",\n                \"value\": \"TD\"\n            },\n            {\n                \"title\": \"Chile\",\n                \"value\": \"CL\"\n            },\n            {\n                \"title\": \"China\",\n                \"value\": \"CN\"\n            },\n            {\n                \"title\": \"Christmas Island\",\n                \"value\": \"CX\"\n            },\n            {\n                \"title\": \"Cocos (Keeling) Islands\",\n                \"value\": \"CC\"\n            },\n            {\n                \"title\": \"Colombia\",\n                \"value\": \"CO\"\n            },\n            {\n                \"title\": \"Comoros\",\n                \"value\": \"KM\"\n            },\n            {\n                \"title\": \"Congo\",\n                \"value\": \"CG\"\n            },\n            {\n                \"title\": \"Cook Islands\",\n                \"value\": \"CK\"\n            },\n            {\n                \"title\": \"Costa Rica\",\n                \"value\": \"CR\"\n            },\n            {\n                \"title\": \"Cote D'Ivoire\",\n                \"value\": \"CI\"\n            },\n            {\n                \"title\": \"Croatia (Local Name: Hrvatska)\",\n                \"value\": \"HR\"\n            },\n            {\n                \"title\": \"Cuba\",\n                \"value\": \"CU\"\n            },\n            {\n                \"title\": \"Cyprus\",\n                \"value\": \"CY\"\n            },\n            {\n                \"title\": \"Czech Republic\",\n                \"value\": \"CZ\"\n            },\n            {\n                \"title\": \"Denmark\",\n                \"value\": \"DK\"\n            },\n            {\n                \"title\": \"Djibouti\",\n                \"value\": \"DJ\"\n            },\n            {\n                \"title\": \"Dominica\",\n                \"value\": \"DM\"\n            },\n            {\n                \"title\": \"Dominican Republic\",\n                \"value\": \"DO\"\n            },\n            {\n                \"title\": \"East Timor\",\n                \"value\": \"TP\"\n            },\n            {\n                \"title\": \"Ecuador\",\n                \"value\": \"EC\"\n            },\n            {\n                \"title\": \"Egypt\",\n                \"value\": \"EG\"\n            },\n            {\n                \"title\": \"El Salvador\",\n                \"value\": \"SV\"\n            },\n            {\n                \"title\": \"Equatorial Guinea\",\n                \"value\": \"GQ\"\n            },\n            {\n                \"title\": \"Eritrea\",\n                \"value\": \"ER\"\n            },\n            {\n                \"title\": \"Estonia\",\n                \"value\": \"EE\"\n            },\n            {\n                \"title\": \"Ethiopia\",\n                \"value\": \"ET\"\n            },\n            {\n                \"title\": \"Falkland Islands (Malvinas)\",\n                \"value\": \"FK\"\n            },\n            {\n                \"title\": \"Faroe Islands\",\n                \"value\": \"FO\"\n            },\n            {\n                \"title\": \"Fiji\",\n                \"value\": \"FJ\"\n            },\n            {\n                \"title\": \"Finland\",\n                \"value\": \"FI\"\n            },\n            {\n                \"title\": \"France\",\n                \"value\": \"FR\"\n            },\n            {\n                \"title\": \"French Guiana\",\n                \"value\": \"GF\"\n            },\n            {\n                \"title\": \"French Polynesia\",\n                \"value\": \"PF\"\n            },\n            {\n                \"title\": \"French Southern Territories\",\n                \"value\": \"TF\"\n            },\n            {\n                \"title\": \"Gabon\",\n                \"value\": \"GA\"\n            },\n            {\n                \"title\": \"Gambia\",\n                \"value\": \"GM\"\n            },\n            {\n                \"title\": \"Georgia\",\n                \"value\": \"GE\"\n            },\n            {\n                \"title\": \"Germany\",\n                \"value\": \"DE\"\n            },\n            {\n                \"title\": \"Ghana\",\n                \"value\": \"GH\"\n            },\n            {\n                \"title\": \"Gibraltar\",\n                \"value\": \"GI\"\n            },\n            {\n                \"title\": \"Greece\",\n                \"value\": \"GR\"\n            },\n            {\n                \"title\": \"Greenland\",\n                \"value\": \"GL\"\n            },\n            {\n                \"title\": \"Grenada\",\n                \"value\": \"GD\"\n            },\n            {\n                \"title\": \"Guadeloupe\",\n                \"value\": \"GP\"\n            },\n            {\n                \"title\": \"Guam\",\n                \"value\": \"GU\"\n            },\n            {\n                \"title\": \"Guatemala\",\n                \"value\": \"GT\"\n            },\n            {\n                \"title\": \"Guinea\",\n                \"value\": \"GN\"\n            },\n            {\n                \"title\": \"Guinea-Bissau\",\n                \"value\": \"GW\"\n            },\n            {\n                \"title\": \"Guyana\",\n                \"value\": \"GY\"\n            },\n            {\n                \"title\": \"Haiti\",\n                \"value\": \"HT\"\n            },\n            {\n                \"title\": \"Heard And Mc Donald Islands\",\n                \"value\": \"HM\"\n            },\n            {\n                \"title\": \"Holy See (Vatican City State)\",\n                \"value\": \"VA\"\n            },\n            {\n                \"title\": \"Honduras\",\n                \"value\": \"HN\"\n            },\n            {\n                \"title\": \"Hong Kong\",\n                \"value\": \"HK\"\n            },\n            {\n                \"title\": \"Hungary\",\n                \"value\": \"HU\"\n            },\n            {\n                \"title\": \"Icel And\",\n                \"value\": \"IS\"\n            },\n            {\n                \"title\": \"India\",\n                \"value\": \"IN\"\n            },\n            {\n                \"title\": \"Indonesia\",\n                \"value\": \"ID\"\n            },\n            {\n                \"title\": \"Iran (Islamic Republic Of)\",\n                \"value\": \"IR\"\n            },\n            {\n                \"title\": \"Iraq\",\n                \"value\": \"IQ\"\n            },\n            {\n                \"title\": \"Ireland\",\n                \"value\": \"IE\"\n            },\n            {\n                \"title\": \"Israel\",\n                \"value\": \"IL\"\n            },\n            {\n                \"title\": \"Italy\",\n                \"value\": \"IT\"\n            },\n            {\n                \"title\": \"Jamaica\",\n                \"value\": \"JM\"\n            },\n            {\n                \"title\": \"Japan\",\n                \"value\": \"JP\"\n            },\n            {\n                \"title\": \"Jordan\",\n                \"value\": \"JO\"\n            },\n            {\n                \"title\": \"Kazakhstan\",\n                \"value\": \"KZ\"\n            },\n            {\n                \"title\": \"Kenya\",\n                \"value\": \"KE\"\n            },\n            {\n                \"title\": \"Kiribati\",\n                \"value\": \"KI\"\n            },\n            {\n                \"title\": \"Korea, Dem People'S Republic\",\n                \"value\": \"KP\"\n            },\n            {\n                \"title\": \"Korea, Republic Of\",\n                \"value\": \"KR\"\n            },\n            {\n                \"title\": \"Kuwait\",\n                \"value\": \"KW\"\n            },\n            {\n                \"title\": \"Kyrgyzstan\",\n                \"value\": \"KG\"\n            },\n            {\n                \"title\": \"Lao People'S Dem Republic\",\n                \"value\": \"LA\"\n            },\n            {\n                \"title\": \"Latvia\",\n                \"value\": \"LV\"\n            },\n            {\n                \"title\": \"Lebanon\",\n                \"value\": \"LB\"\n            },\n            {\n                \"title\": \"Lesotho\",\n                \"value\": \"LS\"\n            },\n            {\n                \"title\": \"Liberia\",\n                \"value\": \"LR\"\n            },\n            {\n                \"title\": \"Libyan Arab Jamahiriya\",\n                \"value\": \"LY\"\n            },\n            {\n                \"title\": \"Liechtenstein\",\n                \"value\": \"LI\"\n            },\n            {\n                \"title\": \"Lithuania\",\n                \"value\": \"LT\"\n            },\n            {\n                \"title\": \"Luxembourg\",\n                \"value\": \"LU\"\n            },\n            {\n                \"title\": \"Macau\",\n                \"value\": \"MO\"\n            },\n            {\n                \"title\": \"Macedonia\",\n                \"value\": \"MK\"\n            },\n            {\n                \"title\": \"Madagascar\",\n                \"value\": \"MG\"\n            },\n            {\n                \"title\": \"Malawi\",\n                \"value\": \"MW\"\n            },\n            {\n                \"title\": \"Malaysia\",\n                \"value\": \"MY\"\n            },\n            {\n                \"title\": \"Maldives\",\n                \"value\": \"MV\"\n            },\n            {\n                \"title\": \"Mali\",\n                \"value\": \"ML\"\n            },\n            {\n                \"title\": \"Malta\",\n                \"value\": \"MT\"\n            },\n            {\n                \"title\": \"Marshall Islands\",\n                \"value\": \"MH\"\n            },\n            {\n                \"title\": \"Martinique\",\n                \"value\": \"MQ\"\n            },\n            {\n                \"title\": \"Mauritania\",\n                \"value\": \"MR\"\n            },\n            {\n                \"title\": \"Mauritius\",\n                \"value\": \"MU\"\n            },\n            {\n                \"title\": \"Mayotte\",\n                \"value\": \"YT\"\n            },\n            {\n                \"title\": \"Mexico\",\n                \"value\": \"MX\"\n            },\n            {\n                \"title\": \"Micronesia, Federated States\",\n                \"value\": \"FM\"\n            },\n            {\n                \"title\": \"Moldova, Republic Of\",\n                \"value\": \"MD\"\n            },\n            {\n                \"title\": \"Monaco\",\n                \"value\": \"MC\"\n            },\n            {\n                \"title\": \"Mongolia\",\n                \"value\": \"MN\"\n            },\n            {\n                \"title\": \"Montserrat\",\n                \"value\": \"MS\"\n            },\n            {\n                \"title\": \"Morocco\",\n                \"value\": \"MA\"\n            },\n            {\n                \"title\": \"Mozambique\",\n                \"value\": \"MZ\"\n            },\n            {\n                \"title\": \"Myanmar\",\n                \"value\": \"MM\"\n            },\n            {\n                \"title\": \"Namibia\",\n                \"value\": \"NA\"\n            },\n            {\n                \"title\": \"Nauru\",\n                \"value\": \"NR\"\n            },\n            {\n                \"title\": \"Nepal\",\n                \"value\": \"NP\"\n            },\n            {\n                \"title\": \"Netherlands\",\n                \"value\": \"NL\"\n            },\n            {\n                \"title\": \"Netherlands Ant Illes\",\n                \"value\": \"AN\"\n            },\n            {\n                \"title\": \"New Caledonia\",\n                \"value\": \"NC\"\n            },\n            {\n                \"title\": \"New Zealand\",\n                \"value\": \"NZ\"\n            },\n            {\n                \"title\": \"Nicaragua\",\n                \"value\": \"NI\"\n            },\n            {\n                \"title\": \"Niger\",\n                \"value\": \"NE\"\n            },\n            {\n                \"title\": \"Nigeria\",\n                \"value\": \"NG\"\n            },\n            {\n                \"title\": \"Niue\",\n                \"value\": \"NU\"\n            },\n            {\n                \"title\": \"Norfolk Island\",\n                \"value\": \"NF\"\n            },\n            {\n                \"title\": \"Northern Mariana Islands\",\n                \"value\": \"MP\"\n            },\n            {\n                \"title\": \"Norway\",\n                \"value\": \"NO\"\n            },\n            {\n                \"title\": \"Oman\",\n                \"value\": \"OM\"\n            },\n            {\n                \"title\": \"Pakistan\",\n                \"value\": \"PK\"\n            },\n            {\n                \"title\": \"Palau\",\n                \"value\": \"PW\"\n            },\n            {\n                \"title\": \"Panama\",\n                \"value\": \"PA\"\n            },\n            {\n                \"title\": \"Papua New Guinea\",\n                \"value\": \"PG\"\n            },\n            {\n                \"title\": \"Paraguay\",\n                \"value\": \"PY\"\n            },\n            {\n                \"title\": \"Peru\",\n                \"value\": \"PE\"\n            },\n            {\n                \"title\": \"Philippines\",\n                \"value\": \"PH\"\n            },\n            {\n                \"title\": \"Pitcairn\",\n                \"value\": \"PN\"\n            },\n            {\n                \"title\": \"Poland\",\n                \"value\": \"PL\"\n            },\n            {\n                \"title\": \"Portugal\",\n                \"value\": \"PT\"\n            },\n            {\n                \"title\": \"Puerto Rico\",\n                \"value\": \"PR\"\n            },\n            {\n                \"title\": \"Qatar\",\n                \"value\": \"QA\"\n            },\n            {\n                \"title\": \"Reunion\",\n                \"value\": \"RE\"\n            },\n            {\n                \"title\": \"Romania\",\n                \"value\": \"RO\"\n            },\n            {\n                \"title\": \"Russian Federation\",\n                \"value\": \"RU\"\n            },\n            {\n                \"title\": \"Rwanda\",\n                \"value\": \"RW\"\n            },\n            {\n                \"title\": \"Saint K Itts And Nevis\",\n                \"value\": \"KN\"\n            },\n            {\n                \"title\": \"Saint Lucia\",\n                \"value\": \"LC\"\n            },\n            {\n                \"title\": \"Saint Vincent, The Grenadines\",\n                \"value\": \"VC\"\n            },\n            {\n                \"title\": \"Samoa\",\n                \"value\": \"WS\"\n            },\n            {\n                \"title\": \"San Marino\",\n                \"value\": \"SM\"\n            },\n            {\n                \"title\": \"Sao Tome And Principe\",\n                \"value\": \"ST\"\n            },\n            {\n                \"title\": \"Saudi Arabia\",\n                \"value\": \"SA\"\n            },\n            {\n                \"title\": \"Senegal\",\n                \"value\": \"SN\"\n            },\n            {\n                \"title\": \"Seychelles\",\n                \"value\": \"SC\"\n            },\n            {\n                \"title\": \"Sierra Leone\",\n                \"value\": \"SL\"\n            },\n            {\n                \"title\": \"Singapore\",\n                \"value\": \"SG\"\n            },\n            {\n                \"title\": \"Slovakia (Slovak Republic)\",\n                \"value\": \"SK\"\n            },\n            {\n                \"title\": \"Slovenia\",\n                \"value\": \"SI\"\n            },\n            {\n                \"title\": \"Solomon Islands\",\n                \"value\": \"SB\"\n            },\n            {\n                \"title\": \"Somalia\",\n                \"value\": \"SO\"\n            },\n            {\n                \"title\": \"South Africa\",\n                \"value\": \"ZA\"\n            },\n            {\n                \"title\": \"South Georgia , S Sandwich Is.\",\n                \"value\": \"GS\"\n            },\n            {\n                \"title\": \"Spain\",\n                \"value\": \"ES\"\n            },\n            {\n                \"title\": \"Sri Lanka\",\n                \"value\": \"LK\"\n            },\n            {\n                \"title\": \"St.  Helena\",\n                \"value\": \"SH\"\n            },\n            {\n                \"title\": \"St.  Pierre And Miquelon\",\n                \"value\": \"PM\"\n            },\n            {\n                \"title\": \"Sudan\",\n                \"value\": \"SD\"\n            },\n            {\n                \"title\": \"Suriname\",\n                \"value\": \"SR\"\n            },\n            {\n                \"title\": \"Svalbard, Jan Mayen Islands\",\n                \"value\": \"SJ\"\n            },\n            {\n                \"title\": \"Sw Aziland\",\n                \"value\": \"SZ\"\n            },\n            {\n                \"title\": \"Sweden\",\n                \"value\": \"SE\"\n            },\n            {\n                \"title\": \"Switzerland\",\n                \"value\": \"CH\"\n            },\n            {\n                \"title\": \"Syrian Arab Republic\",\n                \"value\": \"SY\"\n            },\n            {\n                \"title\": \"Taiwan\",\n                \"value\": \"TW\"\n            },\n            {\n                \"title\": \"Tajikistan\",\n                \"value\": \"TJ\"\n            },\n            {\n                \"title\": \"Tanzania, United Republic Of\",\n                \"value\": \"TZ\"\n            },\n            {\n                \"title\": \"Thailand\",\n                \"value\": \"TH\"\n            },\n            {\n                \"title\": \"Togo\",\n                \"value\": \"TG\"\n            },\n            {\n                \"title\": \"Tokelau\",\n                \"value\": \"TK\"\n            },\n            {\n                \"title\": \"Tonga\",\n                \"value\": \"TO\"\n            },\n            {\n                \"title\": \"Trinidad And Tobago\",\n                \"value\": \"TT\"\n            },\n            {\n                \"title\": \"Tunisia\",\n                \"value\": \"TN\"\n            },\n            {\n                \"title\": \"Turkey\",\n                \"value\": \"TR\"\n            },\n            {\n                \"title\": \"Turkmenistan\",\n                \"value\": \"TM\"\n            },\n            {\n                \"title\": \"Turks And Caicos Islands\",\n                \"value\": \"TC\"\n            },\n            {\n                \"title\": \"Tuvalu\",\n                \"value\": \"TV\"\n            },\n            {\n                \"title\": \"Uganda\",\n                \"value\": \"UG\"\n            },\n            {\n                \"title\": \"Ukraine\",\n                \"value\": \"UA\"\n            },\n            {\n                \"title\": \"United Arab Emirates\",\n                \"value\": \"AE\"\n            },\n            {\n                \"title\": \"United Kingdom\",\n                \"value\": \"GB\"\n            },\n            {\n                \"title\": \"United States\",\n                \"value\": \"US\"\n            },\n            {\n                \"title\": \"United States Minor Is.\",\n                \"value\": \"UM\"\n            },\n            {\n                \"title\": \"Uruguay\",\n                \"value\": \"UY\"\n            },\n            {\n                \"title\": \"Uzbekistan\",\n                \"value\": \"UZ\"\n            },\n            {\n                \"title\": \"Vanuatu\",\n                \"value\": \"VU\"\n            },\n            {\n                \"title\": \"Venezuela\",\n                \"value\": \"VE\"\n            },\n            {\n                \"title\": \"Viet Nam\",\n                \"value\": \"VN\"\n            },\n            {\n                \"title\": \"Virgin Islands (British)\",\n                \"value\": \"VG\"\n            },\n            {\n                \"title\": \"Virgin Islands (U.S.)\",\n                \"value\": \"VI\"\n            },\n            {\n                \"title\": \"Wallis And Futuna Islands\",\n                \"value\": \"WF\"\n            },\n            {\n                \"title\": \"Western Sahara\",\n                \"value\": \"EH\"\n            },\n            {\n                \"title\": \"Yemen\",\n                \"value\": \"YE\"\n            },\n            {\n                \"title\": \"Yugoslavia\",\n                \"value\": \"YU\"\n            },\n            {\n                \"title\": \"Zaire\",\n                \"value\": \"ZR\"\n            },\n            {\n                \"title\": \"Zambia\",\n                \"value\": \"ZM\"\n            },\n            {\n                \"title\": \"Zimbabwe\",\n                \"value\": \"ZW\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"visa_type\": {\n        \"label\": \"VISA Type\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"EAD\",\n                \"value\": \"EAD\"\n            },\n            {\n                \"title\": \"F1 w/ EAD\",\n                \"value\": \"F1 w/ EAD\"\n            },\n            {\n                \"title\": \"F1 w/o EAD\",\n                \"value\": \"F1 w/o EAD\"\n            },\n            {\n                \"title\": \"H1-B Clinical\",\n                \"value\": \"H1-B Clinical\"\n            },\n            {\n                \"title\": \"H1-B Research\",\n                \"value\": \"H1-B Research\"\n            },\n            {\n                \"title\": \"J1 Clinical\",\n                \"value\": \"J1 Clinical\"\n            },\n            {\n                \"title\": \"J1 Research\",\n                \"value\": \"J1 Research\"\n            },\n            {\n                \"title\": \"J1 Short Term Scholar\",\n                \"value\": \"J1 Short Term Scholar\"\n            },\n            {\n                \"title\": \"J2 Employment Authorization\",\n                \"value\": \"J2 Employment Authorization\"\n            },\n            {\n                \"title\": \"O1\",\n                \"value\": \"O1\"\n            },\n            {\n                \"title\": \"PERM\",\n                \"value\": \"PERM\"\n            },\n            {\n                \"title\": \"RA\",\n                \"value\": \"RA\"\n            },\n            {\n                \"title\": \"TN\",\n                \"value\": \"TN\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"visa_issued\": {\n        \"label\": \"VISA Issued\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"10\"\n    },\n    \"visa_expires\": {\n        \"label\": \"VISA Expires\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"10\"\n    },\n    \"marital_status\": {\n        \"label\": \"Marital Status\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Single\",\n                \"value\": \"S\"\n            },\n            {\n                \"title\": \"Married\",\n                \"value\": \"M\"\n            },\n            {\n                \"title\": \"Divorced\",\n                \"value\": \"D\"\n            },\n            {\n                \"title\": \"Unreported\",\n                \"value\": \"U\"\n            },\n            {\n                \"title\": \"Common-Law\",\n                \"value\": \"C\"\n            },\n            {\n                \"title\": \"Separated\",\n                \"value\": \"E\"\n            },\n            {\n                \"title\": \"Head of Household\",\n                \"value\": \"H\"\n            },\n            {\n                \"title\": \"Civil Partnership\",\n                \"value\": \"P\"\n            },\n            {\n                \"title\": \"Surviving Civil Partner\",\n                \"value\": \"V\"\n            },\n            {\n                \"title\": \"Dissolved Civil Partnership\",\n                \"value\": \"L\"\n            },\n            {\n                \"title\": \"Widowed\",\n                \"value\": \"W\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"spouse_name\": {\n        \"label\": \"Spouse Name\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"47\",\n        \"field_length_max\": \"25\"\n    },\n    \"children\": {\n        \"label\": \"Children\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"47\",\n        \"field_length_max\": \"100\"\n    },\n    \"email_secondary\": {\n        \"label\": \"Email (secondary)\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"47\",\n        \"field_length_max\": \"150\"\n    },\n    \"pager\": {\n        \"label\": \"Pager\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"15\"\n    },\n    \"mailbox\": {\n        \"label\": \"Mailbox\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"20\"\n    },\n    \"home_phone\": {\n        \"label\": \"Home Phone\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"15\",\n        \"field_length_max\": \"15\"\n    },\n    \"cell_phone\": {\n        \"label\": \"Cell Phone\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"15\",\n        \"field_length_max\": \"15\"\n    },\n    \"current_address_city\": {\n        \"label\": \"Current Address - City\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"current_address_state\": {\n        \"label\": \"Current Address - State\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"current_address_country\": {\n        \"label\": \"Current Address - Country\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"current_address_zipcode\": {\n        \"label\": \"Current Address - Zipcode\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"internal_address_city\": {\n        \"label\": \"Internal Address - City\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"internal_address_state\": {\n        \"label\": \"Internal Address - State\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"internal_address_country\": {\n        \"label\": \"Internal Address - Country\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"internal_address_zipcode\": {\n        \"label\": \"Internal Address - Zipcode\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"permanent_address_city\": {\n        \"label\": \"Permanent Address - City\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"permanent_address_state\": {\n        \"label\": \"Permanent Address - State\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"permanent_address_country\": {\n        \"label\": \"Permanent Address - Country\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"permanent_address_zipcode\": {\n        \"label\": \"Permanent Address - Zipcode\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"other_address_description\": {\n        \"label\": \"Other Address - Description\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"other_address_city\": {\n        \"label\": \"Other Address - City\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"other_address_state\": {\n        \"label\": \"Other Address - State\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"other_address_country\": {\n        \"label\": \"Other Address - Country\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"other_address_zipcode\": {\n        \"label\": \"Other Address - Zipcode\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"contact_comments\": {\n        \"label\": \"Contact Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"education_comments\": {\n        \"label\": \"Education Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"custom_text_9\": {\n        \"label\": \"Custom Text 9\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"access\": {\n        \"label\": \"Access\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"boolean\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"email_address\": {\n        \"label\": \"Email Address\",\n        \"required\": \"yes\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"47\",\n        \"field_length_max\": \"100\"\n    },\n    \"aamc_comments\": {\n        \"label\": \"AAMC Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"senesac_test\": {\n        \"label\": \"Senesac test\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"\"\n    },\n    \"hobbies\": {\n        \"label\": \"Hobbies\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"withdraw_date\": {\n        \"label\": \"Withdraw Date\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"10\"\n    },\n    \"withdraw_notes\": {\n        \"label\": \"Withdraw Notes\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"20\",\n        \"field_length_max\": \"100\"\n    },\n    \"awards_discipline_comments\": {\n        \"label\": \"Awards/Discipline Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"certifications_comments\": {\n        \"label\": \"Certifications Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"compliance_comments\": {\n        \"label\": \"Compliance Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"current_address_address_1\": {\n        \"label\": \"Current Address - Address #1\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"current_address_address_2\": {\n        \"label\": \"Current Address - Address #2\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_city\": {\n        \"label\": \"Emergency Address - City\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_country\": {\n        \"label\": \"Emergency Address - Country\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_address_1\": {\n        \"label\": \"Emergency Address - Address #1\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_address_2\": {\n        \"label\": \"Emergency Address - Address #2\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_contact_name\": {\n        \"label\": \"Emergency Address - Contact Name\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_phone_number\": {\n        \"label\": \"Emergency Address - Phone Number\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_relation\": {\n        \"label\": \"Emergency Address - Relation\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_state\": {\n        \"label\": \"Emergency Address - State\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_zipcode\": {\n        \"label\": \"Emergency Address - Zipcode\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"internal_address_address_1\": {\n        \"label\": \"Internal Address - Address #1\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"internal_address_address_2\": {\n        \"label\": \"Internal Address - Address #2\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"other_address_address_1\": {\n        \"label\": \"Other Address - Address #1\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"other_address_address_2\": {\n        \"label\": \"Other Address - Address #2\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"permanent_address_address_1\": {\n        \"label\": \"Permanent Address - Address #1\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"permanent_address_address_2\": {\n        \"label\": \"Permanent Address - Address #2\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"ferpa_hold\": {\n        \"label\": \"FERPA Hold\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Yes\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"No\",\n                \"value\": \"2\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"other_work_phone\": {\n        \"label\": \"Other/Work Phone\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"15\",\n        \"field_length_max\": \"15\"\n    },\n    \"pref_contact\": {\n        \"label\": \"Pref. Contact\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Email\",\n                \"value\": \"0\"\n            },\n            {\n                \"title\": \"Pager\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"Email and Pager\",\n                \"value\": \"2\"\n            },\n            {\n                \"title\": \"Cell Phone\",\n                \"value\": \"3\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"testing\": {\n        \"label\": \"Testing\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"does_this_show_on_the_ad_hoc_report\": {\n        \"label\": \"Does this show on the ad hoc report?\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Female\",\n                \"value\": \"F\"\n            },\n            {\n                \"title\": \"Male\",\n                \"value\": \"M\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"cell_phone_carrier\": {\n        \"label\": \"Cell Phone Carrier\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"\"\n    },\n    \"select_hobby\": {\n        \"label\": \"Select Hobby\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Painting\",\n                \"value\": \"Painting\"\n            },\n            {\n                \"title\": \"Music\",\n                \"value\": \"Music\"\n            },\n            {\n                \"title\": \"Jogging\",\n                \"value\": \"Jogging\"\n            },\n            {\n                \"title\": \"Yoga\",\n                \"value\": \"Yoga\"\n            }\n        ],\n        \"field_length\": \"4\",\n        \"field_length_max\": \"4\"\n    },\n    \"major_undergraduate\": {\n        \"label\": \"Major - Undergraduate\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"25\",\n        \"field_length_max\": \"\"\n    },\n    \"major_graduate\": {\n        \"label\": \"Major - Graduate\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"25\",\n        \"field_length_max\": \"\"\n    },\n    \"test_education_field\": {\n        \"label\": \"test education field\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"graduated\": {\n        \"label\": \"Graduated\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"aamc_identifier\": {\n        \"label\": \"AAMC Identifier\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"\"\n    },\n    \"aoa_member\": {\n        \"label\": \"AOA Member\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Yes\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"No\",\n                \"value\": \"2\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"demographics_comments\": {\n        \"label\": \"Demographics Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"desk\": {\n        \"label\": \"Desk #\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"5\",\n        \"field_length_max\": \"5\"\n    },\n    \"discussion_room\": {\n        \"label\": \"Discussion Room\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"3\",\n        \"field_length_max\": \"3\"\n    },\n    \"banner_id\": {\n        \"label\": \"Banner ID\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"\"\n    },\n    \"ethnic_origin\": {\n        \"label\": \"Ethnic Origin\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"White\",\n                \"value\": \"W\"\n            },\n            {\n                \"title\": \"American Indian/Alaska Native\",\n                \"value\": \"N\"\n            },\n            {\n                \"title\": \"Black/African American\",\n                \"value\": \"B\"\n            },\n            {\n                \"title\": \"Hispanic/Latino\",\n                \"value\": \"H\"\n            },\n            {\n                \"title\": \"Asian\",\n                \"value\": \"A\"\n            },\n            {\n                \"title\": \"Filipino\",\n                \"value\": \"F\"\n            },\n            {\n                \"title\": \"Not Hispanic\",\n                \"value\": \"NH\"\n            },\n            {\n                \"title\": \"Not Specified\",\n                \"value\": \"NS\"\n            },\n            {\n                \"title\": \"Asian Indian\",\n                \"value\": \"I\"\n            },\n            {\n                \"title\": \"Vietnamese\",\n                \"value\": \"V\"\n            },\n            {\n                \"title\": \"Chinese\",\n                \"value\": \"C\"\n            },\n            {\n                \"title\": \"Korean\",\n                \"value\": \"K\"\n            },\n            {\n                \"title\": \"Mexican-Amer, Mexican, Chicano\",\n                \"value\": \"M\"\n            },\n            {\n                \"title\": \"Cherokee Nation\",\n                \"value\": \"NCHER\"\n            },\n            {\n                \"title\": \"Creek Nation\",\n                \"value\": \"NCREEK\"\n            },\n            {\n                \"title\": \"Choctaw Nation\",\n                \"value\": \"NCHTW\"\n            },\n            {\n                \"title\": \"Non Resident Alien\",\n                \"value\": \"NRA\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"hospital_experience\": {\n        \"label\": \"Hospital Experience\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"shoe_size_2\": {\n        \"label\": \"Shoe Size (2)\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"health_issues\": {\n        \"label\": \"Health Issues\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"lab_coat_size\": {\n        \"label\": \"Lab Coat Size\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"medical_requirements\": {\n        \"label\": \"Medical Requirements\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"20\",\n        \"field_length_max\": \"30\"\n    },\n    \"military\": {\n        \"label\": \"Military\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"(not indicated)\",\n                \"value\": \"0\"\n            },\n            {\n                \"title\": \"No Military Service\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"Other Protected Veteran\",\n                \"value\": \"2\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"module\": {\n        \"label\": \"Module\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"3\",\n        \"field_length_max\": \"3\"\n    },\n    \"prev_last_name\": {\n        \"label\": \"Prev. Last Name\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"20\",\n        \"field_length_max\": \"50\"\n    },\n    \"preferred_name\": {\n        \"label\": \"Preferred Name\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"20\",\n        \"field_length_max\": \"50\"\n    },\n    \"nrmp_number\": {\n        \"label\": \"NRMP Number\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"10\"\n    },\n    \"academic_plan\": {\n        \"label\": \"Academic Plan\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"(unknown)\",\n                \"value\": \"0\"\n            },\n            {\n                \"title\": \"Medicine MD (OKC) [1206R]\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"Medicine MD (Tulsa) [2206SCM]\",\n                \"value\": \"2\"\n            },\n            {\n                \"title\": \"Medicine MD (Tulsa) [2206R]\",\n                \"value\": \"3\"\n            },\n            {\n                \"title\": \"Medicine MD (OKC) [1206REXCH]\",\n                \"value\": \"4\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"residency\": {\n        \"label\": \"Residency\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"(unknown)\",\n                \"value\": \"0\"\n            },\n            {\n                \"title\": \"Oklahoma Resident\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"Non-Oklahoma Resident\",\n                \"value\": \"2\"\n            },\n            {\n                \"title\": \"International\",\n                \"value\": \"4\"\n            },\n            {\n                \"title\": \"Non-Oklahoma Military\",\n                \"value\": \"3\"\n            },\n            {\n                \"title\": \"Guaranteed Tuition Resident\",\n                \"value\": \"5\"\n            },\n            {\n                \"title\": \"Guaranteed Tuition Resident OU\",\n                \"value\": \"6\"\n            },\n            {\n                \"title\": \"Audience Response System\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"Audio\",\n                \"value\": \"2\"\n            },\n            {\n                \"title\": \"Cadaver\",\n                \"value\": \"3\"\n            },\n            {\n                \"title\": \"Clinical Correlation\",\n                \"value\": \"4\"\n            },\n            {\n                \"title\": \"Distance Learning - Asynchronous\",\n                \"value\": \"5\"\n            },\n            {\n                \"title\": \"Distance Learning - Synchronous\",\n                \"value\": \"6\"\n            },\n            {\n                \"title\": \"Educational Technology\",\n                \"value\": \"7\"\n            },\n            {\n                \"title\": \"Electornic Health/Medical Record (EHR/EMR)\",\n                \"value\": \"8\"\n            },\n            {\n                \"title\": \"Film/Video\",\n                \"value\": \"9\"\n            },\n            {\n                \"title\": \"Key Feature\",\n                \"value\": \"10\"\n            },\n            {\n                \"title\": \"Mannequin\",\n                \"value\": \"11\"\n            },\n            {\n                \"title\": \"Plastinated Specimens\",\n                \"value\": \"12\"\n            },\n            {\n                \"title\": \"Printed Materials (or Digital Equivalent)\",\n                \"value\": \"13\"\n            },\n            {\n                \"title\": \"Real Patient\",\n                \"value\": \"14\"\n            },\n            {\n                \"title\": \"Searchable Electronic Database\",\n                \"value\": \"15\"\n            },\n            {\n                \"title\": \"Standardized/Simulated Patient (SP)\",\n                \"value\": \"16\"\n            },\n            {\n                \"title\": \"Task Trainer\",\n                \"value\": \"17\"\n            },\n            {\n                \"title\": \"Virtual Patient\",\n                \"value\": \"18\"\n            },\n            {\n                \"title\": \"Virtual/Computerized Laboratory\",\n                \"value\": \"19\"\n            },\n            {\n                \"title\": \"Wet Laboratory\",\n                \"value\": \"20\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"sms_password\": {\n        \"label\": \"SMS Password\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"10\"\n    },\n    \"ssn\": {\n        \"label\": \"SSN\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"20\",\n        \"field_length_max\": \"11\"\n    },\n    \"action\": {\n        \"label\": \"Action\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"26\",\n        \"field_length_max\": \"255\"\n    },\n    \"action_date\": {\n        \"label\": \"Action Date\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"10\"\n    },\n    \"probation_status\": {\n        \"label\": \"Probation Status\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Yes\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"No\",\n                \"value\": \"2\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"probation_ever\": {\n        \"label\": \"Probation (Ever)\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Yes\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"No\",\n                \"value\": \"2\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"enrollment_comments\": {\n        \"label\": \"Enrollment Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"forms_files_comments\": {\n        \"label\": \"Forms/Files Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"visa_immigration_comments\": {\n        \"label\": \"Visa/Immigration Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"immunizations_comments\": {\n        \"label\": \"Immunizations Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"insurance_comments\": {\n        \"label\": \"Insurance Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"irp_limit_date\": {\n        \"label\": \"IRP Limit Date\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"10\"\n    },\n    \"orientation_comments\": {\n        \"label\": \"Orientation Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"orientation_date\": {\n        \"label\": \"Orientation Date\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"10\"\n    },\n    \"training_history_comments\": {\n        \"label\": \"Training History Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"end_date_proj\": {\n        \"label\": \"End Date (Proj.)\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"10\"\n    },\n    \"termin_date\": {\n        \"label\": \"Termin. Date\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"10\"\n    },\n    \"professionalism_comments\": {\n        \"label\": \"Professionalism Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"post_residency_activity\": {\n        \"label\": \"Post Residency Activity\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Faculty\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"Fellowship\",\n                \"value\": \"2\"\n            },\n            {\n                \"title\": \"Group Practice\",\n                \"value\": \"3\"\n            },\n            {\n                \"title\": \"Private Practice\",\n                \"value\": \"4\"\n            },\n            {\n                \"title\": \"Research\",\n                \"value\": \"5\"\n            },\n            {\n                \"title\": \"other...\",\n                \"value\": \"9\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"other\": {\n        \"label\": \"Other\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"50\"\n    },\n    \"verified\": {\n        \"label\": \"Verified\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"boolean\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"quartile\": {\n        \"label\": \"Quartile\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"1\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"2\",\n                \"value\": \"2\"\n            },\n            {\n                \"title\": \"3\",\n                \"value\": \"3\"\n            },\n            {\n                \"title\": \"4\",\n                \"value\": \"4\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"matric_date\": {\n        \"label\": \"Matric. Date\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\",\n        \"field_length\": \"10\",\n        \"field_length_max\": \"10\"\n    },\n    \"test_scores_comments\": {\n        \"label\": \"Test Scores Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"comments\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"exchange\": {\n        \"label\": \"Exchange\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Yes\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"No\",\n                \"value\": \"2\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"grad_year_actual\": {\n        \"label\": \"Grad. Year (Actual)\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"4\",\n        \"field_length_max\": \"4\"\n    },\n    \"grad_year_projected\": {\n        \"label\": \"Grad. Year (Projected)\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"field_length\": \"4\",\n        \"field_length_max\": \"4\"\n    },\n    \"transfer_in\": {\n        \"label\": \"Transfer In\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Yes\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"No\",\n                \"value\": \"2\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"transfer_out\": {\n        \"label\": \"Transfer Out\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Master\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"Novice\",\n                \"value\": \"2\"\n            }\n        ],\n        \"field_length\": \"\",\n        \"field_length_max\": \"\"\n    },\n    \"magical\": {\n        \"options\": [\n            {\n                \"title\": \"Yes\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"No\",\n                \"value\": \"2\"\n            }\n        ],\n        \"label\": \"Magical\",\n        \"required\": \"no\",\n        \"field_length\": \"\",\n        \"field_length_max\": \"\",\n        \"field_type\": \"array\"\n    }\n}"}],"_postman_id":"a945a671-cb5a-4cbf-91ac-c7f1e9bd4ac9"},{"name":"users/residentFields","id":"9cb3bbfa-8b90-44ab-b314-9f7343b563d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>no input required</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentFields","description":"<p>Retrieves a list of all resident demographic fields defined for the institution that can be used when creating or updating a resident account.<br />\n<em>Note: these fields will vary by institution as different insitutions enable/disable fields and/or create custom fields.</em></p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>n/a</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>array of demographic fields</td>\n        <td>returns an array of all resident demographic fields for the insitution</td>\n        <td>array</td>\n        <td>v1.21</td>\n        <td>List of fields will be variable depending on the institution. Attributes of each field will include: \n        <ul><li>label – text, the user interface label name in MedHub</li> \n        <li>required – text, yes or no value defining if the field is required to create a resident</li>\n        <li>field_type – text, the type of the field (text, number, date, Boolean)</li>\n        <li>options – array, an array of the options that can be passed for that particular field</li></ul></td>\n    </tr>   \n</table>","urlObject":{"path":["users","residentFields"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"f2c0e4da-8f08-4aa0-9410-86d051acf639","name":"users/residentFields","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"no input required","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 29 May 2020 18:49:05 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"institution_abbreviation\": {\n        \"label\": \"Institution Abbreviation\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"HH\",\n                \"value\": \"2\"\n            },\n            {\n                \"title\": \"Sand\",\n                \"value\": \"1\"\n            }\n        ]\n    },\n    \"last_name\": {\n        \"label\": \"Last Name\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"first_name\": {\n        \"label\": \"First Name\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"username\": {\n        \"label\": \"Username\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"current_y_n\": {\n        \"label\": \"Current (Y/N)\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"boolean\",\n        \"comment\": \"Boolean value: 1 or 0\"\n    },\n    \"alumni\": {\n        \"label\": \"Alumni\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"boolean\"\n    },\n    \"pgy_level_current\": {\n        \"label\": \"PGY Level (Current)\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"number\"\n    },\n    \"trainee_type_current\": {\n        \"label\": \"Trainee Type (Current)\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Accredited Trainee\",\n                \"value\": \"18\"\n            },\n            {\n                \"title\": \"Associate\",\n                \"value\": \"15\"\n            },\n            {\n                \"title\": \"Chief Resident\",\n                \"value\": \"13\"\n            },\n            {\n                \"title\": \"Medical Student\",\n                \"value\": \"17\"\n            },\n            {\n                \"title\": \"Non-Accredited Trainee\",\n                \"value\": \"19\"\n            },\n            {\n                \"title\": \"Orientation\",\n                \"value\": \"22\"\n            },\n            {\n                \"title\": \"Research Fellow\",\n                \"value\": \"10\"\n            },\n            {\n                \"title\": \"Research Year\",\n                \"value\": \"14\"\n            },\n            {\n                \"title\": \"Resident\",\n                \"value\": \"2\"\n            },\n            {\n                \"title\": \"Resident-BG\",\n                \"value\": \"3\"\n            },\n            {\n                \"title\": \"Resident-ECMC\",\n                \"value\": \"20\"\n            },\n            {\n                \"title\": \"Visiting\",\n                \"value\": \"21\"\n            },\n            {\n                \"title\": \"Visiting Resident\",\n                \"value\": \"16\"\n            },\n            {\n                \"title\": \"Visiting Resident/Fellow\",\n                \"value\": \"4\"\n            }\n        ]\n    },\n    \"npi\": {\n        \"label\": \"NPI\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"place_of_birth\": {\n        \"label\": \"Place of Birth\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"country_of_birth\": {\n        \"label\": \"Country of Birth\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"date_of_birth\": {\n        \"label\": \"Date of Birth\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\"\n    },\n    \"gender\": {\n        \"label\": \"Gender\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Female\",\n                \"value\": \"F\"\n            },\n            {\n                \"title\": \"Male\",\n                \"value\": \"M\"\n            },\n            {\n                \"title\": \"Trans\",\n                \"value\": \"T\"\n            }\n        ]\n    },\n    \"marital_status\": {\n        \"label\": \"Marital Status\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Single\",\n                \"value\": \"S\"\n            },\n            {\n                \"title\": \"Married\",\n                \"value\": \"M\"\n            },\n            {\n                \"title\": \"Common Law Marriage\",\n                \"value\": \"C\"\n            },\n            {\n                \"title\": \"Divorced\",\n                \"value\": \"D\"\n            },\n            {\n                \"title\": \"Domestic Partnership\",\n                \"value\": \"P\"\n            },\n            {\n                \"title\": \"Unknown\",\n                \"value\": \"U\"\n            }\n        ]\n    },\n    \"spouse_name\": {\n        \"label\": \"Spouse Name\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"children\": {\n        \"label\": \"Children\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"email_secondary\": {\n        \"label\": \"Email (secondary)\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"pager\": {\n        \"label\": \"Pager\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"mailbox\": {\n        \"label\": \"Mailbox\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"home_phone\": {\n        \"label\": \"Home Phone\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"work_phone\": {\n        \"label\": \"Work Phone\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"cell_phone\": {\n        \"label\": \"Cell Phone\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"current_address_city\": {\n        \"label\": \"Current Address - City\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"current_address_state\": {\n        \"label\": \"Current Address - State\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"current_address_country\": {\n        \"label\": \"Current Address - Country\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"current_address_zipcode\": {\n        \"label\": \"Current Address - Zipcode\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"internal_address_city\": {\n        \"label\": \"Internal Address - City\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"internal_address_state\": {\n        \"label\": \"Internal Address - State\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"internal_address_country\": {\n        \"label\": \"Internal Address - Country\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"internal_address_zipcode\": {\n        \"label\": \"Internal Address - Zipcode\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"permanent_address_city\": {\n        \"label\": \"Permanent Address - City\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"permanent_address_state\": {\n        \"label\": \"Permanent Address - State\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"permanent_address_country\": {\n        \"label\": \"Permanent Address - Country\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"permanent_address_zipcode\": {\n        \"label\": \"Permanent Address - Zipcode\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"other_address_description\": {\n        \"label\": \"Other Address - Description\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"other_address_city\": {\n        \"label\": \"Other Address - City\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"other_address_state\": {\n        \"label\": \"Other Address - State\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"other_address_country\": {\n        \"label\": \"Other Address - Country\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"other_address_zipcode\": {\n        \"label\": \"Other Address - Zipcode\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"contact_comments\": {\n        \"label\": \"Contact Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"alumni_comments\": {\n        \"label\": \"Alumni Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"education_comments\": {\n        \"label\": \"Education Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"certifications_comments\": {\n        \"label\": \"Certifications Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"orientation_date\": {\n        \"label\": \"Orientation Date\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\"\n    },\n    \"termination_date\": {\n        \"label\": \"Termination Date\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\"\n    },\n    \"training_history_comments\": {\n        \"label\": \"Training History Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"custom_text_4\": {\n        \"label\": \"Custom Text 4\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"options\": [\n            {\n                \"title\": \"Rural\",\n                \"value\": \"Rural\"\n            },\n            {\n                \"title\": \"Urban\",\n                \"value\": \"Urban\"\n            }\n        ]\n    },\n    \"custom_text_12\": {\n        \"label\": \"Custom Text 12\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"options\": [\n            {\n                \"title\": \"1\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"2\",\n                \"value\": \"2\"\n            }\n        ]\n    },\n    \"access\": {\n        \"label\": \"Access\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"boolean\"\n    },\n    \"active\": {\n        \"label\": \"Active\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"boolean\"\n    },\n    \"email_address\": {\n        \"label\": \"Email Address\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"alumni_address_city\": {\n        \"label\": \"Alumni Address - City\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"alumni_address_country\": {\n        \"label\": \"Alumni Address - Country\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"alumni_address_address_1\": {\n        \"label\": \"Alumni Address - Address #1\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"alumni_address_address_2\": {\n        \"label\": \"Alumni Address - Address #2\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"alumni_address_state\": {\n        \"label\": \"Alumni Address - State\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"alumni_address_zipcode\": {\n        \"label\": \"Alumni Address - Zipcode\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"email_alumni\": {\n        \"label\": \"Email (alumni)\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"phone_alumni\": {\n        \"label\": \"Phone (alumni)\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"testing\": {\n        \"label\": \"testing\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"committee\": {\n        \"label\": \"Committee\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"work_address_test\": {\n        \"label\": \"Work Address Test\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"awards_discipline_comments\": {\n        \"label\": \"Awards/Discipline Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"compulsivity_index_comments\": {\n        \"label\": \"Compulsivity Index Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"gme_comments\": {\n        \"label\": \"GME Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"finance_comments\": {\n        \"label\": \"Finance Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"program_comments\": {\n        \"label\": \"Program Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"compliance_comments\": {\n        \"label\": \"Compliance Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"current_address_address_1\": {\n        \"label\": \"Current Address - Address #1\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"current_address_address_2\": {\n        \"label\": \"Current Address - Address #2\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_city\": {\n        \"label\": \"Emergency Address - City\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_email\": {\n        \"label\": \"Emergency Address - Email\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_email_address\": {\n        \"label\": \"Emergency Address - Email Address\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_address_1\": {\n        \"label\": \"Emergency Address - Address #1\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_address_2\": {\n        \"label\": \"Emergency Address - Address #2\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_contact_name\": {\n        \"label\": \"Emergency Address - Contact Name\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_emergency_contact_name_3\": {\n        \"label\": \"Emergency Address - Emergency Contact Name 3\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_phone_home\": {\n        \"label\": \"Emergency Address - Phone (Home)\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_phone_cell\": {\n        \"label\": \"Emergency Address - Phone (Cell)\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_phone_work\": {\n        \"label\": \"Emergency Address - Phone (Work)\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_relation\": {\n        \"label\": \"Emergency Address - Relation\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_state\": {\n        \"label\": \"Emergency Address - State\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"emergency_address_zipcode\": {\n        \"label\": \"Emergency Address - Zipcode\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"internal_address_address_1\": {\n        \"label\": \"Internal Address - Address #1\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"internal_address_address_2\": {\n        \"label\": \"Internal Address - Address #2\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"other_address_address_1\": {\n        \"label\": \"Other Address - Address #1\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"other_address_address_2\": {\n        \"label\": \"Other Address - Address #2\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"permanent_address_address_1\": {\n        \"label\": \"Permanent Address - Address #1\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"permanent_address_address_2\": {\n        \"label\": \"Permanent Address - Address #2\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"fax_number\": {\n        \"label\": \"Fax Number\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"pref_contact\": {\n        \"label\": \"Pref. Contact\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Email\",\n                \"value\": \"0\"\n            },\n            {\n                \"title\": \"Pager\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"Email and Pager\",\n                \"value\": \"2\"\n            },\n            {\n                \"title\": \"Cell Phone\",\n                \"value\": \"3\"\n            }\n        ]\n    },\n    \"shoe_size_2\": {\n        \"label\": \"Shoe Size (2)\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"new_hire_license_application_url\": {\n        \"label\": \"New Hire: License Application URL\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"test_date_field\": {\n        \"label\": \"Test date field\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\"\n    },\n    \"resident_review_date\": {\n        \"label\": \"Resident Review Date\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\"\n    },\n    \"education_date\": {\n        \"label\": \"Education date\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\"\n    },\n    \"last_updated\": {\n        \"label\": \"Last Updated\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\"\n    },\n    \"malpractice_claims\": {\n        \"label\": \"Malpractice Claims\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"boolean\"\n    },\n    \"pets_name\": {\n        \"label\": \"Pets Name\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"shoe_size\": {\n        \"label\": \"Shoe Size\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"va_field\": {\n        \"label\": \"VA Field\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Non-Veteran\",\n                \"value\": \"Non-Veteran\"\n            },\n            {\n                \"title\": \"Veteran\",\n                \"value\": \"Veteran\"\n            }\n        ]\n    },\n    \"current_academic_year_status\": {\n        \"label\": \"current academic year status\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"IA\",\n                \"value\": \"IA\"\n            },\n            {\n                \"title\": \"AL\",\n                \"value\": \"AL\"\n            },\n            {\n                \"title\": \"AK\",\n                \"value\": \"AK\"\n            },\n            {\n                \"title\": \"AS\",\n                \"value\": \"AS\"\n            },\n            {\n                \"title\": \"AZ\",\n                \"value\": \"AZ\"\n            },\n            {\n                \"title\": \"AR\",\n                \"value\": \"AR\"\n            },\n            {\n                \"title\": \"CA\",\n                \"value\": \"CA\"\n            },\n            {\n                \"title\": \"CO\",\n                \"value\": \"CO\"\n            },\n            {\n                \"title\": \"CT\",\n                \"value\": \"CT\"\n            },\n            {\n                \"title\": \"DE\",\n                \"value\": \"DE\"\n            },\n            {\n                \"title\": \"DC\",\n                \"value\": \"DC\"\n            },\n            {\n                \"title\": \"FM\",\n                \"value\": \"FM\"\n            },\n            {\n                \"title\": \"FL\",\n                \"value\": \"FL\"\n            },\n            {\n                \"title\": \"GA\",\n                \"value\": \"GA\"\n            },\n            {\n                \"title\": \"GU\",\n                \"value\": \"GU\"\n            },\n            {\n                \"title\": \"HI\",\n                \"value\": \"HI\"\n            },\n            {\n                \"title\": \"ID\",\n                \"value\": \"ID\"\n            },\n            {\n                \"title\": \"IL\",\n                \"value\": \"IL\"\n            },\n            {\n                \"title\": \"IN\",\n                \"value\": \"IN\"\n            },\n            {\n                \"title\": \"KS\",\n                \"value\": \"KS\"\n            },\n            {\n                \"title\": \"KY\",\n                \"value\": \"KY\"\n            },\n            {\n                \"title\": \"LA\",\n                \"value\": \"LA\"\n            },\n            {\n                \"title\": \"ME\",\n                \"value\": \"ME\"\n            },\n            {\n                \"title\": \"MH\",\n                \"value\": \"MH\"\n            },\n            {\n                \"title\": \"MD\",\n                \"value\": \"MD\"\n            },\n            {\n                \"title\": \"MA\",\n                \"value\": \"MA\"\n            },\n            {\n                \"title\": \"MI\",\n                \"value\": \"MI\"\n            },\n            {\n                \"title\": \"MN\",\n                \"value\": \"MN\"\n            },\n            {\n                \"title\": \"MS\",\n                \"value\": \"MS\"\n            },\n            {\n                \"title\": \"MO\",\n                \"value\": \"MO\"\n            },\n            {\n                \"title\": \"MT\",\n                \"value\": \"MT\"\n            },\n            {\n                \"title\": \"NE\",\n                \"value\": \"NE\"\n            },\n            {\n                \"title\": \"NV\",\n                \"value\": \"NV\"\n            },\n            {\n                \"title\": \"NH\",\n                \"value\": \"NH\"\n            },\n            {\n                \"title\": \"NJ\",\n                \"value\": \"NJ\"\n            },\n            {\n                \"title\": \"NM\",\n                \"value\": \"NM\"\n            },\n            {\n                \"title\": \"NY\",\n                \"value\": \"NY\"\n            },\n            {\n                \"title\": \"NC\",\n                \"value\": \"NC\"\n            },\n            {\n                \"title\": \"ND\",\n                \"value\": \"ND\"\n            },\n            {\n                \"title\": \"MP\",\n                \"value\": \"MP\"\n            },\n            {\n                \"title\": \"OH\",\n                \"value\": \"OH\"\n            },\n            {\n                \"title\": \"OK\",\n                \"value\": \"OK\"\n            },\n            {\n                \"title\": \"OR\",\n                \"value\": \"OR\"\n            },\n            {\n                \"title\": \"PW\",\n                \"value\": \"PW\"\n            },\n            {\n                \"title\": \"PA\",\n                \"value\": \"PA\"\n            },\n            {\n                \"title\": \"PR\",\n                \"value\": \"PR\"\n            },\n            {\n                \"title\": \"RI\",\n                \"value\": \"RI\"\n            },\n            {\n                \"title\": \"SC\",\n                \"value\": \"SC\"\n            },\n            {\n                \"title\": \"SD\",\n                \"value\": \"SD\"\n            },\n            {\n                \"title\": \"TN\",\n                \"value\": \"TN\"\n            },\n            {\n                \"title\": \"TX\",\n                \"value\": \"TX\"\n            },\n            {\n                \"title\": \"UT\",\n                \"value\": \"UT\"\n            },\n            {\n                \"title\": \"VT\",\n                \"value\": \"VT\"\n            },\n            {\n                \"title\": \"VI\",\n                \"value\": \"VI\"\n            },\n            {\n                \"title\": \"VA\",\n                \"value\": \"VA\"\n            },\n            {\n                \"title\": \"WA\",\n                \"value\": \"WA\"\n            },\n            {\n                \"title\": \"WV\",\n                \"value\": \"WV\"\n            },\n            {\n                \"title\": \"WI\",\n                \"value\": \"WI\"\n            },\n            {\n                \"title\": \"WY\",\n                \"value\": \"WY\"\n            },\n            {\n                \"title\": \"AB\",\n                \"value\": \"AB\"\n            },\n            {\n                \"title\": \"BC\",\n                \"value\": \"BC\"\n            },\n            {\n                \"title\": \"MB\",\n                \"value\": \"MB\"\n            },\n            {\n                \"title\": \"NB\",\n                \"value\": \"NB\"\n            },\n            {\n                \"title\": \"NL\",\n                \"value\": \"NL\"\n            },\n            {\n                \"title\": \"NT\",\n                \"value\": \"NT\"\n            },\n            {\n                \"title\": \"NS\",\n                \"value\": \"NS\"\n            },\n            {\n                \"title\": \"NU\",\n                \"value\": \"NU\"\n            },\n            {\n                \"title\": \"ON\",\n                \"value\": \"ON\"\n            },\n            {\n                \"title\": \"PE\",\n                \"value\": \"PE\"\n            },\n            {\n                \"title\": \"QC\",\n                \"value\": \"QC\"\n            },\n            {\n                \"title\": \"SK\",\n                \"value\": \"SK\"\n            },\n            {\n                \"title\": \"YT\",\n                \"value\": \"YT\"\n            }\n        ]\n    },\n    \"undergrad_major\": {\n        \"label\": \"Undergrad Major\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"score\": {\n        \"label\": \"Score\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"opt_out_emergency_contact\": {\n        \"label\": \"Opt Out Emergency Contact\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"boolean\"\n    },\n    \"county\": {\n        \"label\": \"County\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"test_demo_field\": {\n        \"label\": \"Test Demo Field\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"1\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"2\",\n                \"value\": \"2\"\n            }\n        ]\n    },\n    \"deceased\": {\n        \"label\": \"Deceased\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"boolean\"\n    },\n    \"job_code\": {\n        \"label\": \"Job Code\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"boolean\"\n    },\n    \"encode_number\": {\n        \"label\": \"Encode Number\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"ghhs_award\": {\n        \"label\": \"GHHS Award\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"boolean\"\n    },\n    \"emergency_test\": {\n        \"label\": \"Emergency Test\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"aamc_number\": {\n        \"label\": \"AAMC Number\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"access_code\": {\n        \"label\": \"Access Code\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"alumni_dues\": {\n        \"label\": \"Alumni Dues\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Paid\",\n                \"value\": \"Paid\"\n            },\n            {\n                \"title\": \"Unpaid\",\n                \"value\": \"Unpaid\"\n            }\n        ]\n    },\n    \"aoa_member\": {\n        \"label\": \"AOA Member\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"ctry_of_citizenship\": {\n        \"label\": \"Ctry. of Citizenship\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Afghanistan\",\n                \"value\": \"AF\"\n            },\n            {\n                \"title\": \"Albania\",\n                \"value\": \"AL\"\n            },\n            {\n                \"title\": \"Algeria\",\n                \"value\": \"DZ\"\n            },\n            {\n                \"title\": \"American Samoa\",\n                \"value\": \"AS\"\n            },\n            {\n                \"title\": \"Andorra\",\n                \"value\": \"AD\"\n            },\n            {\n                \"title\": \"Angola\",\n                \"value\": \"AO\"\n            },\n            {\n                \"title\": \"Anguilla\",\n                \"value\": \"AI\"\n            },\n            {\n                \"title\": \"Antarctica\",\n                \"value\": \"AQ\"\n            },\n            {\n                \"title\": \"Antigua And Barbuda\",\n                \"value\": \"AG\"\n            },\n            {\n                \"title\": \"Argentina\",\n                \"value\": \"AR\"\n            },\n            {\n                \"title\": \"Armenia\",\n                \"value\": \"AM\"\n            },\n            {\n                \"title\": \"Aruba\",\n                \"value\": \"AW\"\n            },\n            {\n                \"title\": \"Australia\",\n                \"value\": \"AU\"\n            },\n            {\n                \"title\": \"Austria\",\n                \"value\": \"AT\"\n            },\n            {\n                \"title\": \"Azerbaijan\",\n                \"value\": \"AZ\"\n            },\n            {\n                \"title\": \"Bahamas\",\n                \"value\": \"BS\"\n            },\n            {\n                \"title\": \"Bahrain\",\n                \"value\": \"BH\"\n            },\n            {\n                \"title\": \"Bangladesh\",\n                \"value\": \"BD\"\n            },\n            {\n                \"title\": \"Barbados\",\n                \"value\": \"BB\"\n            },\n            {\n                \"title\": \"Belarus\",\n                \"value\": \"BY\"\n            },\n            {\n                \"title\": \"Belgium\",\n                \"value\": \"BE\"\n            },\n            {\n                \"title\": \"Belize\",\n                \"value\": \"BZ\"\n            },\n            {\n                \"title\": \"Benin\",\n                \"value\": \"BJ\"\n            },\n            {\n                \"title\": \"Bermuda\",\n                \"value\": \"BM\"\n            },\n            {\n                \"title\": \"Bhutan\",\n                \"value\": \"BT\"\n            },\n            {\n                \"title\": \"Bolivia\",\n                \"value\": \"BO\"\n            },\n            {\n                \"title\": \"Bosnia And Herzegowina\",\n                \"value\": \"BA\"\n            },\n            {\n                \"title\": \"Botswana\",\n                \"value\": \"BW\"\n            },\n            {\n                \"title\": \"Bouvet Island\",\n                \"value\": \"BV\"\n            },\n            {\n                \"title\": \"Brazil\",\n                \"value\": \"BR\"\n            },\n            {\n                \"title\": \"British Indian Ocean Territory\",\n                \"value\": \"IO\"\n            },\n            {\n                \"title\": \"Brunei Darussalam\",\n                \"value\": \"BN\"\n            },\n            {\n                \"title\": \"Bulgaria\",\n                \"value\": \"BG\"\n            },\n            {\n                \"title\": \"Burkina Faso\",\n                \"value\": \"BF\"\n            },\n            {\n                \"title\": \"Burundi\",\n                \"value\": \"BI\"\n            },\n            {\n                \"title\": \"Cambodia\",\n                \"value\": \"KH\"\n            },\n            {\n                \"title\": \"Cameroon\",\n                \"value\": \"CM\"\n            },\n            {\n                \"title\": \"Canada\",\n                \"value\": \"CA\"\n            },\n            {\n                \"title\": \"Cape Verde\",\n                \"value\": \"CV\"\n            },\n            {\n                \"title\": \"Cayman Islands\",\n                \"value\": \"KY\"\n            },\n            {\n                \"title\": \"Central African Republic\",\n                \"value\": \"CF\"\n            },\n            {\n                \"title\": \"Chad\",\n                \"value\": \"TD\"\n            },\n            {\n                \"title\": \"Chile\",\n                \"value\": \"CL\"\n            },\n            {\n                \"title\": \"China\",\n                \"value\": \"CN\"\n            },\n            {\n                \"title\": \"Christmas Island\",\n                \"value\": \"CX\"\n            },\n            {\n                \"title\": \"Cocos (Keeling) Islands\",\n                \"value\": \"CC\"\n            },\n            {\n                \"title\": \"Colombia\",\n                \"value\": \"CO\"\n            },\n            {\n                \"title\": \"Comoros\",\n                \"value\": \"KM\"\n            },\n            {\n                \"title\": \"Congo\",\n                \"value\": \"CG\"\n            },\n            {\n                \"title\": \"Cook Islands\",\n                \"value\": \"CK\"\n            },\n            {\n                \"title\": \"Costa Rica\",\n                \"value\": \"CR\"\n            },\n            {\n                \"title\": \"Cote D'Ivoire\",\n                \"value\": \"CI\"\n            },\n            {\n                \"title\": \"Croatia (Local Name: Hrvatska)\",\n                \"value\": \"HR\"\n            },\n            {\n                \"title\": \"Cuba\",\n                \"value\": \"CU\"\n            },\n            {\n                \"title\": \"Cyprus\",\n                \"value\": \"CY\"\n            },\n            {\n                \"title\": \"Czech Republic\",\n                \"value\": \"CZ\"\n            },\n            {\n                \"title\": \"Denmark\",\n                \"value\": \"DK\"\n            },\n            {\n                \"title\": \"Djibouti\",\n                \"value\": \"DJ\"\n            },\n            {\n                \"title\": \"Dominica\",\n                \"value\": \"DM\"\n            },\n            {\n                \"title\": \"Dominican Republic\",\n                \"value\": \"DO\"\n            },\n            {\n                \"title\": \"East Timor\",\n                \"value\": \"TP\"\n            },\n            {\n                \"title\": \"Ecuador\",\n                \"value\": \"EC\"\n            },\n            {\n                \"title\": \"Egypt\",\n                \"value\": \"EG\"\n            },\n            {\n                \"title\": \"El Salvador\",\n                \"value\": \"SV\"\n            },\n            {\n                \"title\": \"Equatorial Guinea\",\n                \"value\": \"GQ\"\n            },\n            {\n                \"title\": \"Eritrea\",\n                \"value\": \"ER\"\n            },\n            {\n                \"title\": \"Estonia\",\n                \"value\": \"EE\"\n            },\n            {\n                \"title\": \"Ethiopia\",\n                \"value\": \"ET\"\n            },\n            {\n                \"title\": \"Falkland Islands (Malvinas)\",\n                \"value\": \"FK\"\n            },\n            {\n                \"title\": \"Faroe Islands\",\n                \"value\": \"FO\"\n            },\n            {\n                \"title\": \"Fiji\",\n                \"value\": \"FJ\"\n            },\n            {\n                \"title\": \"Finland\",\n                \"value\": \"FI\"\n            },\n            {\n                \"title\": \"France\",\n                \"value\": \"FR\"\n            },\n            {\n                \"title\": \"French Guiana\",\n                \"value\": \"GF\"\n            },\n            {\n                \"title\": \"French Polynesia\",\n                \"value\": \"PF\"\n            },\n            {\n                \"title\": \"French Southern Territories\",\n                \"value\": \"TF\"\n            },\n            {\n                \"title\": \"Gabon\",\n                \"value\": \"GA\"\n            },\n            {\n                \"title\": \"Gambia\",\n                \"value\": \"GM\"\n            },\n            {\n                \"title\": \"Georgia\",\n                \"value\": \"GE\"\n            },\n            {\n                \"title\": \"Germany\",\n                \"value\": \"DE\"\n            },\n            {\n                \"title\": \"Ghana\",\n                \"value\": \"GH\"\n            },\n            {\n                \"title\": \"Gibraltar\",\n                \"value\": \"GI\"\n            },\n            {\n                \"title\": \"Greece\",\n                \"value\": \"GR\"\n            },\n            {\n                \"title\": \"Greenland\",\n                \"value\": \"GL\"\n            },\n            {\n                \"title\": \"Grenada\",\n                \"value\": \"GD\"\n            },\n            {\n                \"title\": \"Guadeloupe\",\n                \"value\": \"GP\"\n            },\n            {\n                \"title\": \"Guam\",\n                \"value\": \"GU\"\n            },\n            {\n                \"title\": \"Guatemala\",\n                \"value\": \"GT\"\n            },\n            {\n                \"title\": \"Guinea\",\n                \"value\": \"GN\"\n            },\n            {\n                \"title\": \"Guinea-Bissau\",\n                \"value\": \"GW\"\n            },\n            {\n                \"title\": \"Guyana\",\n                \"value\": \"GY\"\n            },\n            {\n                \"title\": \"Haiti\",\n                \"value\": \"HT\"\n            },\n            {\n                \"title\": \"Heard And Mc Donald Islands\",\n                \"value\": \"HM\"\n            },\n            {\n                \"title\": \"Holy See (Vatican City State)\",\n                \"value\": \"VA\"\n            },\n            {\n                \"title\": \"Honduras\",\n                \"value\": \"HN\"\n            },\n            {\n                \"title\": \"Hong Kong\",\n                \"value\": \"HK\"\n            },\n            {\n                \"title\": \"Hungary\",\n                \"value\": \"HU\"\n            },\n            {\n                \"title\": \"Iceland\",\n                \"value\": \"IS\"\n            },\n            {\n                \"title\": \"India\",\n                \"value\": \"IN\"\n            },\n            {\n                \"title\": \"Indonesia\",\n                \"value\": \"ID\"\n            },\n            {\n                \"title\": \"Iran (Islamic Republic Of)\",\n                \"value\": \"IR\"\n            },\n            {\n                \"title\": \"Iraq\",\n                \"value\": \"IQ\"\n            },\n            {\n                \"title\": \"Ireland\",\n                \"value\": \"IE\"\n            },\n            {\n                \"title\": \"Israel\",\n                \"value\": \"IL\"\n            },\n            {\n                \"title\": \"Italy\",\n                \"value\": \"IT\"\n            },\n            {\n                \"title\": \"Jamaica\",\n                \"value\": \"JM\"\n            },\n            {\n                \"title\": \"Japan\",\n                \"value\": \"JP\"\n            },\n            {\n                \"title\": \"Jordan\",\n                \"value\": \"JO\"\n            },\n            {\n                \"title\": \"Kazakhstan\",\n                \"value\": \"KZ\"\n            },\n            {\n                \"title\": \"Kenya\",\n                \"value\": \"KE\"\n            },\n            {\n                \"title\": \"Kiribati\",\n                \"value\": \"KI\"\n            },\n            {\n                \"title\": \"Korea, Dem People'S Republic\",\n                \"value\": \"KP\"\n            },\n            {\n                \"title\": \"Korea, Republic Of\",\n                \"value\": \"KR\"\n            },\n            {\n                \"title\": \"Kuwait\",\n                \"value\": \"KW\"\n            },\n            {\n                \"title\": \"Kyrgyzstan\",\n                \"value\": \"KG\"\n            },\n            {\n                \"title\": \"Lao People'S Dem Republic\",\n                \"value\": \"LA\"\n            },\n            {\n                \"title\": \"Latvia\",\n                \"value\": \"LV\"\n            },\n            {\n                \"title\": \"Lebanon\",\n                \"value\": \"LB\"\n            },\n            {\n                \"title\": \"Lesotho\",\n                \"value\": \"LS\"\n            },\n            {\n                \"title\": \"Liberia\",\n                \"value\": \"LR\"\n            },\n            {\n                \"title\": \"Libyan Arab Jamahiriya\",\n                \"value\": \"LY\"\n            },\n            {\n                \"title\": \"Liechtenstein\",\n                \"value\": \"LI\"\n            },\n            {\n                \"title\": \"Lithuania\",\n                \"value\": \"LT\"\n            },\n            {\n                \"title\": \"Luxembourg\",\n                \"value\": \"LU\"\n            },\n            {\n                \"title\": \"Macau\",\n                \"value\": \"MO\"\n            },\n            {\n                \"title\": \"Macedonia\",\n                \"value\": \"MK\"\n            },\n            {\n                \"title\": \"Madagascar\",\n                \"value\": \"MG\"\n            },\n            {\n                \"title\": \"Malawi\",\n                \"value\": \"MW\"\n            },\n            {\n                \"title\": \"Malaysia\",\n                \"value\": \"MY\"\n            },\n            {\n                \"title\": \"Maldives\",\n                \"value\": \"MV\"\n            },\n            {\n                \"title\": \"Mali\",\n                \"value\": \"ML\"\n            },\n            {\n                \"title\": \"Malta\",\n                \"value\": \"MT\"\n            },\n            {\n                \"title\": \"Marshall Islands\",\n                \"value\": \"MH\"\n            },\n            {\n                \"title\": \"Martinique\",\n                \"value\": \"MQ\"\n            },\n            {\n                \"title\": \"Mauritania\",\n                \"value\": \"MR\"\n            },\n            {\n                \"title\": \"Mauritius\",\n                \"value\": \"MU\"\n            },\n            {\n                \"title\": \"Mayotte\",\n                \"value\": \"YT\"\n            },\n            {\n                \"title\": \"Mexico\",\n                \"value\": \"MX\"\n            },\n            {\n                \"title\": \"Micronesia, Federated States\",\n                \"value\": \"FM\"\n            },\n            {\n                \"title\": \"Moldova, Republic Of\",\n                \"value\": \"MD\"\n            },\n            {\n                \"title\": \"Monaco\",\n                \"value\": \"MC\"\n            },\n            {\n                \"title\": \"Mongolia\",\n                \"value\": \"MN\"\n            },\n            {\n                \"title\": \"Montserrat\",\n                \"value\": \"MS\"\n            },\n            {\n                \"title\": \"Morocco\",\n                \"value\": \"MA\"\n            },\n            {\n                \"title\": \"Mozambique\",\n                \"value\": \"MZ\"\n            },\n            {\n                \"title\": \"Myanmar\",\n                \"value\": \"MM\"\n            },\n            {\n                \"title\": \"Namibia\",\n                \"value\": \"NA\"\n            },\n            {\n                \"title\": \"Nauru\",\n                \"value\": \"NR\"\n            },\n            {\n                \"title\": \"Nepal\",\n                \"value\": \"NP\"\n            },\n            {\n                \"title\": \"Netherlands\",\n                \"value\": \"NL\"\n            },\n            {\n                \"title\": \"Netherlands Ant Illes\",\n                \"value\": \"AN\"\n            },\n            {\n                \"title\": \"New Caledonia\",\n                \"value\": \"NC\"\n            },\n            {\n                \"title\": \"New Zealand\",\n                \"value\": \"NZ\"\n            },\n            {\n                \"title\": \"Nicaragua\",\n                \"value\": \"NI\"\n            },\n            {\n                \"title\": \"Niger\",\n                \"value\": \"NE\"\n            },\n            {\n                \"title\": \"Nigeria\",\n                \"value\": \"NG\"\n            },\n            {\n                \"title\": \"Niue\",\n                \"value\": \"NU\"\n            },\n            {\n                \"title\": \"Norfolk Island\",\n                \"value\": \"NF\"\n            },\n            {\n                \"title\": \"Northern Mariana Islands\",\n                \"value\": \"MP\"\n            },\n            {\n                \"title\": \"Norway\",\n                \"value\": \"NO\"\n            },\n            {\n                \"title\": \"Oman\",\n                \"value\": \"OM\"\n            },\n            {\n                \"title\": \"Pakistan\",\n                \"value\": \"PK\"\n            },\n            {\n                \"title\": \"Palau\",\n                \"value\": \"PW\"\n            },\n            {\n                \"title\": \"Panama\",\n                \"value\": \"PA\"\n            },\n            {\n                \"title\": \"Papua New Guinea\",\n                \"value\": \"PG\"\n            },\n            {\n                \"title\": \"Paraguay\",\n                \"value\": \"PY\"\n            },\n            {\n                \"title\": \"Peru\",\n                \"value\": \"PE\"\n            },\n            {\n                \"title\": \"Philippines\",\n                \"value\": \"PH\"\n            },\n            {\n                \"title\": \"Pitcairn\",\n                \"value\": \"PN\"\n            },\n            {\n                \"title\": \"Poland\",\n                \"value\": \"PL\"\n            },\n            {\n                \"title\": \"Portugal\",\n                \"value\": \"PT\"\n            },\n            {\n                \"title\": \"Puerto Rico\",\n                \"value\": \"PR\"\n            },\n            {\n                \"title\": \"Qatar\",\n                \"value\": \"QA\"\n            },\n            {\n                \"title\": \"Reunion\",\n                \"value\": \"RE\"\n            },\n            {\n                \"title\": \"Romania\",\n                \"value\": \"RO\"\n            },\n            {\n                \"title\": \"Russian Federation\",\n                \"value\": \"RU\"\n            },\n            {\n                \"title\": \"Rwanda\",\n                \"value\": \"RW\"\n            },\n            {\n                \"title\": \"Saint K Itts And Nevis\",\n                \"value\": \"KN\"\n            },\n            {\n                \"title\": \"Saint Lucia\",\n                \"value\": \"LC\"\n            },\n            {\n                \"title\": \"Saint Vincent, The Grenadines\",\n                \"value\": \"VC\"\n            },\n            {\n                \"title\": \"Samoa\",\n                \"value\": \"WS\"\n            },\n            {\n                \"title\": \"San Marino\",\n                \"value\": \"SM\"\n            },\n            {\n                \"title\": \"Sao Tome And Principe\",\n                \"value\": \"ST\"\n            },\n            {\n                \"title\": \"Saudi Arabia\",\n                \"value\": \"SA\"\n            },\n            {\n                \"title\": \"Senegal\",\n                \"value\": \"SN\"\n            },\n            {\n                \"title\": \"Seychelles\",\n                \"value\": \"SC\"\n            },\n            {\n                \"title\": \"Sierra Leone\",\n                \"value\": \"SL\"\n            },\n            {\n                \"title\": \"Singapore\",\n                \"value\": \"SG\"\n            },\n            {\n                \"title\": \"Slovakia (Slovak Republic)\",\n                \"value\": \"SK\"\n            },\n            {\n                \"title\": \"Slovenia\",\n                \"value\": \"SI\"\n            },\n            {\n                \"title\": \"Solomon Islands\",\n                \"value\": \"SB\"\n            },\n            {\n                \"title\": \"Somalia\",\n                \"value\": \"SO\"\n            },\n            {\n                \"title\": \"South Africa\",\n                \"value\": \"ZA\"\n            },\n            {\n                \"title\": \"South Georgia , S Sandwich Is.\",\n                \"value\": \"GS\"\n            },\n            {\n                \"title\": \"Spain\",\n                \"value\": \"ES\"\n            },\n            {\n                \"title\": \"Sri Lanka\",\n                \"value\": \"LK\"\n            },\n            {\n                \"title\": \"St.  Helena\",\n                \"value\": \"SH\"\n            },\n            {\n                \"title\": \"St.  Pierre And Miquelon\",\n                \"value\": \"PM\"\n            },\n            {\n                \"title\": \"Sudan\",\n                \"value\": \"SD\"\n            },\n            {\n                \"title\": \"Suriname\",\n                \"value\": \"SR\"\n            },\n            {\n                \"title\": \"Svalbard, Jan Mayen Islands\",\n                \"value\": \"SJ\"\n            },\n            {\n                \"title\": \"Sw Aziland\",\n                \"value\": \"SZ\"\n            },\n            {\n                \"title\": \"Sweden\",\n                \"value\": \"SE\"\n            },\n            {\n                \"title\": \"Switzerland\",\n                \"value\": \"CH\"\n            },\n            {\n                \"title\": \"Syrian Arab Republic\",\n                \"value\": \"SY\"\n            },\n            {\n                \"title\": \"Taiwan\",\n                \"value\": \"TW\"\n            },\n            {\n                \"title\": \"Tajikistan\",\n                \"value\": \"TJ\"\n            },\n            {\n                \"title\": \"Tanzania, United Republic Of\",\n                \"value\": \"TZ\"\n            },\n            {\n                \"title\": \"Thailand\",\n                \"value\": \"TH\"\n            },\n            {\n                \"title\": \"Togo\",\n                \"value\": \"TG\"\n            },\n            {\n                \"title\": \"Tokelau\",\n                \"value\": \"TK\"\n            },\n            {\n                \"title\": \"Tonga\",\n                \"value\": \"TO\"\n            },\n            {\n                \"title\": \"Trinidad And Tobago\",\n                \"value\": \"TT\"\n            },\n            {\n                \"title\": \"Tunisia\",\n                \"value\": \"TN\"\n            },\n            {\n                \"title\": \"Turkey\",\n                \"value\": \"TR\"\n            },\n            {\n                \"title\": \"Turkmenistan\",\n                \"value\": \"TM\"\n            },\n            {\n                \"title\": \"Turks And Caicos Islands\",\n                \"value\": \"TC\"\n            },\n            {\n                \"title\": \"Tuvalu\",\n                \"value\": \"TV\"\n            },\n            {\n                \"title\": \"Uganda\",\n                \"value\": \"UG\"\n            },\n            {\n                \"title\": \"Ukraine\",\n                \"value\": \"UA\"\n            },\n            {\n                \"title\": \"United Arab Emirates\",\n                \"value\": \"AE\"\n            },\n            {\n                \"title\": \"United Kingdom\",\n                \"value\": \"GB\"\n            },\n            {\n                \"title\": \"United States\",\n                \"value\": \"US\"\n            },\n            {\n                \"title\": \"United States Minor Is.\",\n                \"value\": \"UM\"\n            },\n            {\n                \"title\": \"Uruguay\",\n                \"value\": \"UY\"\n            },\n            {\n                \"title\": \"Uzbekistan\",\n                \"value\": \"UZ\"\n            },\n            {\n                \"title\": \"Vanuatu\",\n                \"value\": \"VU\"\n            },\n            {\n                \"title\": \"Venezuela\",\n                \"value\": \"VE\"\n            },\n            {\n                \"title\": \"Viet Nam\",\n                \"value\": \"VN\"\n            },\n            {\n                \"title\": \"Virgin Islands (British)\",\n                \"value\": \"VG\"\n            },\n            {\n                \"title\": \"Virgin Islands (U.S.)\",\n                \"value\": \"VI\"\n            },\n            {\n                \"title\": \"Wallis And Futuna Islands\",\n                \"value\": \"WF\"\n            },\n            {\n                \"title\": \"Western Sahara\",\n                \"value\": \"EH\"\n            },\n            {\n                \"title\": \"Yemen\",\n                \"value\": \"YE\"\n            },\n            {\n                \"title\": \"Yugoslavia\",\n                \"value\": \"YU\"\n            },\n            {\n                \"title\": \"Zaire\",\n                \"value\": \"ZR\"\n            },\n            {\n                \"title\": \"Zambia\",\n                \"value\": \"ZM\"\n            },\n            {\n                \"title\": \"Zimbabwe\",\n                \"value\": \"ZW\"\n            },\n            {\n                \"title\": \"Palestine\",\n                \"value\": \"PS\"\n            },\n            {\n                \"title\": \"West Indies\",\n                \"value\": \"WI\"\n            },\n            {\n                \"title\": \"Other\",\n                \"value\": \"OTHER\"\n            },\n            {\n                \"title\": \"Permanent Resident\",\n                \"value\": \"PERM\"\n            },\n            {\n                \"title\": \"Foreign National\",\n                \"value\": \"FOR-NAT\"\n            },\n            {\n                \"title\": \"Green Card\",\n                \"value\": \"GREEN\"\n            }\n        ]\n    },\n    \"demographics_comments\": {\n        \"label\": \"Demographics Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"cost_center\": {\n        \"label\": \"Cost Center\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"empl_id\": {\n        \"label\": \"Empl. ID\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"us_entry_date\": {\n        \"label\": \"US Entry Date\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\"\n    },\n    \"ethnic_origin\": {\n        \"label\": \"Ethnic Origin\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Not Specified\",\n                \"value\": \"NSPEC\"\n            },\n            {\n                \"title\": \"White\",\n                \"value\": \"WHITE\"\n            },\n            {\n                \"title\": \"Black/African American\",\n                \"value\": \"BLACK\"\n            },\n            {\n                \"title\": \"Asian\",\n                \"value\": \"ASIAN\"\n            },\n            {\n                \"title\": \"Unknown\",\n                \"value\": \"Unknown\"\n            },\n            {\n                \"title\": \"Hispanic/Latino\",\n                \"value\": \"HISPA\"\n            },\n            {\n                \"title\": \"American Indian/Alaska Native\",\n                \"value\": \"AMIND\"\n            },\n            {\n                \"title\": \"Native Hawaiian/Oth Pac Island\",\n                \"value\": \"PACIF\"\n            },\n            {\n                \"title\": \"spaniish\",\n                \"value\": \"1\"\n            }\n        ]\n    },\n    \"test_benefits\": {\n        \"label\": \"Test Benefits\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Yes\",\n                \"value\": \"Yes\"\n            },\n            {\n                \"title\": \"No\",\n                \"value\": \"No\"\n            },\n            {\n                \"title\": \"(unknown)\",\n                \"value\": \"\"\n            }\n        ]\n    },\n    \"data_coll_form\": {\n        \"label\": \"Data Coll. Form\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Yes\",\n                \"value\": \"Yes\"\n            },\n            {\n                \"title\": \"No\",\n                \"value\": \"No\"\n            },\n            {\n                \"title\": \"(unknown)\",\n                \"value\": \"\"\n            }\n        ]\n    },\n    \"parking_form\": {\n        \"label\": \"Parking Form\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Yes\",\n                \"value\": \"Yes\"\n            },\n            {\n                \"title\": \"No\",\n                \"value\": \"No\"\n            },\n            {\n                \"title\": \"(unknown)\",\n                \"value\": \"\"\n            }\n        ]\n    },\n    \"practitioner_id\": {\n        \"label\": \"Practitioner ID\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"pref_or_nickname\": {\n        \"label\": \"Pref. or Nickname\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"ssn\": {\n        \"label\": \"SSN\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"temp_ssn\": {\n        \"label\": \"Temp. SSN\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"appt_type\": {\n        \"label\": \"Appt. Type\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Resident\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"Visiting Resident\",\n                \"value\": \"2\"\n            }\n        ]\n    },\n    \"forms_files_comments\": {\n        \"label\": \"Forms/Files Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"visa_immigration_comments\": {\n        \"label\": \"Visa/Immigration Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"immunizations_comments\": {\n        \"label\": \"Immunizations Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"irp_limit_date\": {\n        \"label\": \"IRP Limit Date\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\"\n    },\n    \"orientation_comments\": {\n        \"label\": \"Orientation Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"compensation\": {\n        \"label\": \"Compensation\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Non-Funded\",\n                \"value\": \"Non-Funded\"\n            }\n        ]\n    },\n    \"projected_end_date\": {\n        \"label\": \"Projected End Date\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\"\n    },\n    \"post_residency\": {\n        \"label\": \"Post Residency\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"Faculty\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"Fellowship (Other Institution)\",\n                \"value\": \"2\"\n            },\n            {\n                \"title\": \"Group Practice\",\n                \"value\": \"3\"\n            },\n            {\n                \"title\": \"Private Practice\",\n                \"value\": \"4\"\n            },\n            {\n                \"title\": \"Research\",\n                \"value\": \"5\"\n            },\n            {\n                \"title\": \"other...\",\n                \"value\": \"9\"\n            },\n            {\n                \"title\": \"Fellowship\",\n                \"value\": \"6\"\n            },\n            {\n                \"title\": \"Military\",\n                \"value\": \"7\"\n            },\n            {\n                \"title\": \"Public Health\",\n                \"value\": \"8\"\n            },\n            {\n                \"title\": \"Residency\",\n                \"value\": \"10\"\n            },\n            {\n                \"title\": \"Residency (Other Institution)\",\n                \"value\": \"11\"\n            }\n        ]\n    },\n    \"other\": {\n        \"label\": \"Other\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"committee_approval_date\": {\n        \"label\": \"Committee Approval Date\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\"\n    },\n    \"ecca_approval_date\": {\n        \"label\": \"ECCA Approval Date\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\"\n    },\n    \"verification_comments\": {\n        \"label\": \"Verification Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"verified_credentialed\": {\n        \"label\": \"Verified/Credentialed\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"boolean\"\n    },\n    \"cell\": {\n        \"label\": \"Cell #\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"projected_start_date\": {\n        \"label\": \"Projected Start Date\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"date\"\n    },\n    \"test_scores_comments\": {\n        \"label\": \"Test Scores Comments\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"user_id\": {\n        \"label\": \"User ID\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    }\n}"}],"_postman_id":"9cb3bbfa-8b90-44ab-b314-9f7343b563d1"},{"name":"users/facultyFields","id":"e7bb30f5-687b-48c7-9200-5df8b0c74760","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>no input required</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/facultyFields","description":"<p>Retrieves a list of all faculty demographic fields defined for the institution that can be used when creating or updating a faculty account.<br /></p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>n/a</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>array of demographic fields</td>\n        <td>returns an array of all faculty demographic fields for the insitution</td>\n        <td>array</td>\n        <td>v1.21</td>\n        <td>List of fields will be variable depending on the institution. Attributes of each field will include: \n        <ul><li>label – text, the user interface label name in MedHub</li> \n        <li>required – text, yes or no value defining if the field is required to create a faculty</li>\n        <li>field_type – text, the type of the field (text, number, date, Boolean)</li>\n        <li>options – array, an array of the options that can be passed for that particular field</li></ul></td>\n    </tr>   \n</table>","urlObject":{"path":["users","facultyFields"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"132f008d-7441-4ca1-9947-24126c37ec19","name":"users/facultyFields","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"no input required","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/facultyFields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 29 May 2020 20:11:58 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"institution_abbreviation\": {\n        \"label\": \"Institution Abbreviation\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"array\",\n        \"options\": [\n            {\n                \"title\": \"HH\",\n                \"value\": \"2\"\n            },\n            {\n                \"title\": \"Sand\",\n                \"value\": \"1\"\n            }\n        ]\n    },\n    \"last_name\": {\n        \"label\": \"Last Name\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"first_name\": {\n        \"label\": \"First Name\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"username\": {\n        \"label\": \"Username\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"email\": {\n        \"label\": \"Email\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"alternate_name\": {\n        \"label\": \"Alternate Name\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"biography\": {\n        \"label\": \"biography\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"children_names\": {\n        \"label\": \"children_names\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"committee_name\": {\n        \"label\": \"Committee Name\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"home_address_contact_address_home\": {\n        \"label\": \"Home Address - contact_address_home\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"work_address_contact_address_work\": {\n        \"label\": \"Work Address - contact_address_work\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"contact_fax\": {\n        \"label\": \"contact_fax\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"contact_mailcode\": {\n        \"label\": \"contact_mailcode\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"contact_pager\": {\n        \"label\": \"contact_pager\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"contact_pager_alpha\": {\n        \"label\": \"contact_pager_alpha\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"contact_phone\": {\n        \"label\": \"contact_phone\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"contact_phone_cell\": {\n        \"label\": \"contact_phone_cell\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"contact_phone_home\": {\n        \"label\": \"contact_phone_home\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"cuid\": {\n        \"label\": \"CUID\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"custom_field\": {\n        \"label\": \"Custom Field\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"dea\": {\n        \"label\": \"DEA\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"department\": {\n        \"label\": \"Department\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"employeeid\": {\n        \"label\": \"employeeID\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"faculty_deptid\": {\n        \"label\": \"faculty_deptID\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"faculty_typea\": {\n        \"label\": \"faculty_typeA\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"gender\": {\n        \"label\": \"gender\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\",\n        \"options\": [\n            {\n                \"title\": \"Female\",\n                \"value\": \"F\"\n            },\n            {\n                \"title\": \"Male\",\n                \"value\": \"M\"\n            },\n            {\n                \"title\": \"Trans\",\n                \"value\": \"T\"\n            }\n        ]\n    },\n    \"inst_end_date\": {\n        \"label\": \"inst_end_date\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"inst_start_date\": {\n        \"label\": \"inst_start_date\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"interests_clinical\": {\n        \"label\": \"interests_clinical\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"interests_research\": {\n        \"label\": \"interests_research\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"license_number\": {\n        \"label\": \"license_number\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"name_maiden\": {\n        \"label\": \"Name_maiden\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"name_prefix\": {\n        \"label\": \"name_prefix\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"name_suffix\": {\n        \"label\": \"name_suffix\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"notes\": {\n        \"label\": \"notes\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"npi\": {\n        \"label\": \"npi\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"photo\": {\n        \"label\": \"photo\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"rank\": {\n        \"label\": \"rank\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"review_qtr\": {\n        \"label\": \"review_qtr\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"specialty\": {\n        \"label\": \"specialty\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"staff_type\": {\n        \"label\": \"staff_type\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"title\": {\n        \"label\": \"title\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"typeid\": {\n        \"label\": \"typeID\",\n        \"required\": \"no\",\n        \"nullable\": \"yes\",\n        \"field_type\": \"text\"\n    },\n    \"appt_type\": {\n        \"options\": [\n            {\n                \"title\": \"Resident\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"Visiting Resident\",\n                \"value\": \"2\"\n            }\n        ]\n    },\n    \"ctry_of_citizenship\": {\n        \"options\": [\n            {\n                \"title\": \"Afghanistan\",\n                \"value\": \"AF\"\n            },\n            {\n                \"title\": \"Albania\",\n                \"value\": \"AL\"\n            },\n            {\n                \"title\": \"Algeria\",\n                \"value\": \"DZ\"\n            },\n            {\n                \"title\": \"American Samoa\",\n                \"value\": \"AS\"\n            },\n            {\n                \"title\": \"Andorra\",\n                \"value\": \"AD\"\n            },\n            {\n                \"title\": \"Angola\",\n                \"value\": \"AO\"\n            },\n            {\n                \"title\": \"Anguilla\",\n                \"value\": \"AI\"\n            },\n            {\n                \"title\": \"Antarctica\",\n                \"value\": \"AQ\"\n            },\n            {\n                \"title\": \"Antigua And Barbuda\",\n                \"value\": \"AG\"\n            },\n            {\n                \"title\": \"Argentina\",\n                \"value\": \"AR\"\n            },\n            {\n                \"title\": \"Armenia\",\n                \"value\": \"AM\"\n            },\n            {\n                \"title\": \"Aruba\",\n                \"value\": \"AW\"\n            },\n            {\n                \"title\": \"Australia\",\n                \"value\": \"AU\"\n            },\n            {\n                \"title\": \"Austria\",\n                \"value\": \"AT\"\n            },\n            {\n                \"title\": \"Azerbaijan\",\n                \"value\": \"AZ\"\n            },\n            {\n                \"title\": \"Bahamas\",\n                \"value\": \"BS\"\n            },\n            {\n                \"title\": \"Bahrain\",\n                \"value\": \"BH\"\n            },\n            {\n                \"title\": \"Bangladesh\",\n                \"value\": \"BD\"\n            },\n            {\n                \"title\": \"Barbados\",\n                \"value\": \"BB\"\n            },\n            {\n                \"title\": \"Belarus\",\n                \"value\": \"BY\"\n            },\n            {\n                \"title\": \"Belgium\",\n                \"value\": \"BE\"\n            },\n            {\n                \"title\": \"Belize\",\n                \"value\": \"BZ\"\n            },\n            {\n                \"title\": \"Benin\",\n                \"value\": \"BJ\"\n            },\n            {\n                \"title\": \"Bermuda\",\n                \"value\": \"BM\"\n            },\n            {\n                \"title\": \"Bhutan\",\n                \"value\": \"BT\"\n            },\n            {\n                \"title\": \"Bolivia\",\n                \"value\": \"BO\"\n            },\n            {\n                \"title\": \"Bosnia And Herzegowina\",\n                \"value\": \"BA\"\n            },\n            {\n                \"title\": \"Botswana\",\n                \"value\": \"BW\"\n            },\n            {\n                \"title\": \"Bouvet Island\",\n                \"value\": \"BV\"\n            },\n            {\n                \"title\": \"Brazil\",\n                \"value\": \"BR\"\n            },\n            {\n                \"title\": \"British Indian Ocean Territory\",\n                \"value\": \"IO\"\n            },\n            {\n                \"title\": \"Brunei Darussalam\",\n                \"value\": \"BN\"\n            },\n            {\n                \"title\": \"Bulgaria\",\n                \"value\": \"BG\"\n            },\n            {\n                \"title\": \"Burkina Faso\",\n                \"value\": \"BF\"\n            },\n            {\n                \"title\": \"Burundi\",\n                \"value\": \"BI\"\n            },\n            {\n                \"title\": \"Cambodia\",\n                \"value\": \"KH\"\n            },\n            {\n                \"title\": \"Cameroon\",\n                \"value\": \"CM\"\n            },\n            {\n                \"title\": \"Canada\",\n                \"value\": \"CA\"\n            },\n            {\n                \"title\": \"Cape Verde\",\n                \"value\": \"CV\"\n            },\n            {\n                \"title\": \"Cayman Islands\",\n                \"value\": \"KY\"\n            },\n            {\n                \"title\": \"Central African Republic\",\n                \"value\": \"CF\"\n            },\n            {\n                \"title\": \"Chad\",\n                \"value\": \"TD\"\n            },\n            {\n                \"title\": \"Chile\",\n                \"value\": \"CL\"\n            },\n            {\n                \"title\": \"China\",\n                \"value\": \"CN\"\n            },\n            {\n                \"title\": \"Christmas Island\",\n                \"value\": \"CX\"\n            },\n            {\n                \"title\": \"Cocos (Keeling) Islands\",\n                \"value\": \"CC\"\n            },\n            {\n                \"title\": \"Colombia\",\n                \"value\": \"CO\"\n            },\n            {\n                \"title\": \"Comoros\",\n                \"value\": \"KM\"\n            },\n            {\n                \"title\": \"Congo\",\n                \"value\": \"CG\"\n            },\n            {\n                \"title\": \"Cook Islands\",\n                \"value\": \"CK\"\n            },\n            {\n                \"title\": \"Costa Rica\",\n                \"value\": \"CR\"\n            },\n            {\n                \"title\": \"Cote D'Ivoire\",\n                \"value\": \"CI\"\n            },\n            {\n                \"title\": \"Croatia (Local Name: Hrvatska)\",\n                \"value\": \"HR\"\n            },\n            {\n                \"title\": \"Cuba\",\n                \"value\": \"CU\"\n            },\n            {\n                \"title\": \"Cyprus\",\n                \"value\": \"CY\"\n            },\n            {\n                \"title\": \"Czech Republic\",\n                \"value\": \"CZ\"\n            },\n            {\n                \"title\": \"Denmark\",\n                \"value\": \"DK\"\n            },\n            {\n                \"title\": \"Djibouti\",\n                \"value\": \"DJ\"\n            },\n            {\n                \"title\": \"Dominica\",\n                \"value\": \"DM\"\n            },\n            {\n                \"title\": \"Dominican Republic\",\n                \"value\": \"DO\"\n            },\n            {\n                \"title\": \"East Timor\",\n                \"value\": \"TP\"\n            },\n            {\n                \"title\": \"Ecuador\",\n                \"value\": \"EC\"\n            },\n            {\n                \"title\": \"Egypt\",\n                \"value\": \"EG\"\n            },\n            {\n                \"title\": \"El Salvador\",\n                \"value\": \"SV\"\n            },\n            {\n                \"title\": \"Equatorial Guinea\",\n                \"value\": \"GQ\"\n            },\n            {\n                \"title\": \"Eritrea\",\n                \"value\": \"ER\"\n            },\n            {\n                \"title\": \"Estonia\",\n                \"value\": \"EE\"\n            },\n            {\n                \"title\": \"Ethiopia\",\n                \"value\": \"ET\"\n            },\n            {\n                \"title\": \"Falkland Islands (Malvinas)\",\n                \"value\": \"FK\"\n            },\n            {\n                \"title\": \"Faroe Islands\",\n                \"value\": \"FO\"\n            },\n            {\n                \"title\": \"Fiji\",\n                \"value\": \"FJ\"\n            },\n            {\n                \"title\": \"Finland\",\n                \"value\": \"FI\"\n            },\n            {\n                \"title\": \"France\",\n                \"value\": \"FR\"\n            },\n            {\n                \"title\": \"French Guiana\",\n                \"value\": \"GF\"\n            },\n            {\n                \"title\": \"French Polynesia\",\n                \"value\": \"PF\"\n            },\n            {\n                \"title\": \"French Southern Territories\",\n                \"value\": \"TF\"\n            },\n            {\n                \"title\": \"Gabon\",\n                \"value\": \"GA\"\n            },\n            {\n                \"title\": \"Gambia\",\n                \"value\": \"GM\"\n            },\n            {\n                \"title\": \"Georgia\",\n                \"value\": \"GE\"\n            },\n            {\n                \"title\": \"Germany\",\n                \"value\": \"DE\"\n            },\n            {\n                \"title\": \"Ghana\",\n                \"value\": \"GH\"\n            },\n            {\n                \"title\": \"Gibraltar\",\n                \"value\": \"GI\"\n            },\n            {\n                \"title\": \"Greece\",\n                \"value\": \"GR\"\n            },\n            {\n                \"title\": \"Greenland\",\n                \"value\": \"GL\"\n            },\n            {\n                \"title\": \"Grenada\",\n                \"value\": \"GD\"\n            },\n            {\n                \"title\": \"Guadeloupe\",\n                \"value\": \"GP\"\n            },\n            {\n                \"title\": \"Guam\",\n                \"value\": \"GU\"\n            },\n            {\n                \"title\": \"Guatemala\",\n                \"value\": \"GT\"\n            },\n            {\n                \"title\": \"Guinea\",\n                \"value\": \"GN\"\n            },\n            {\n                \"title\": \"Guinea-Bissau\",\n                \"value\": \"GW\"\n            },\n            {\n                \"title\": \"Guyana\",\n                \"value\": \"GY\"\n            },\n            {\n                \"title\": \"Haiti\",\n                \"value\": \"HT\"\n            },\n            {\n                \"title\": \"Heard And Mc Donald Islands\",\n                \"value\": \"HM\"\n            },\n            {\n                \"title\": \"Holy See (Vatican City State)\",\n                \"value\": \"VA\"\n            },\n            {\n                \"title\": \"Honduras\",\n                \"value\": \"HN\"\n            },\n            {\n                \"title\": \"Hong Kong\",\n                \"value\": \"HK\"\n            },\n            {\n                \"title\": \"Hungary\",\n                \"value\": \"HU\"\n            },\n            {\n                \"title\": \"Iceland\",\n                \"value\": \"IS\"\n            },\n            {\n                \"title\": \"India\",\n                \"value\": \"IN\"\n            },\n            {\n                \"title\": \"Indonesia\",\n                \"value\": \"ID\"\n            },\n            {\n                \"title\": \"Iran (Islamic Republic Of)\",\n                \"value\": \"IR\"\n            },\n            {\n                \"title\": \"Iraq\",\n                \"value\": \"IQ\"\n            },\n            {\n                \"title\": \"Ireland\",\n                \"value\": \"IE\"\n            },\n            {\n                \"title\": \"Israel\",\n                \"value\": \"IL\"\n            },\n            {\n                \"title\": \"Italy\",\n                \"value\": \"IT\"\n            },\n            {\n                \"title\": \"Jamaica\",\n                \"value\": \"JM\"\n            },\n            {\n                \"title\": \"Japan\",\n                \"value\": \"JP\"\n            },\n            {\n                \"title\": \"Jordan\",\n                \"value\": \"JO\"\n            },\n            {\n                \"title\": \"Kazakhstan\",\n                \"value\": \"KZ\"\n            },\n            {\n                \"title\": \"Kenya\",\n                \"value\": \"KE\"\n            },\n            {\n                \"title\": \"Kiribati\",\n                \"value\": \"KI\"\n            },\n            {\n                \"title\": \"Korea, Dem People'S Republic\",\n                \"value\": \"KP\"\n            },\n            {\n                \"title\": \"Korea, Republic Of\",\n                \"value\": \"KR\"\n            },\n            {\n                \"title\": \"Kuwait\",\n                \"value\": \"KW\"\n            },\n            {\n                \"title\": \"Kyrgyzstan\",\n                \"value\": \"KG\"\n            },\n            {\n                \"title\": \"Lao People'S Dem Republic\",\n                \"value\": \"LA\"\n            },\n            {\n                \"title\": \"Latvia\",\n                \"value\": \"LV\"\n            },\n            {\n                \"title\": \"Lebanon\",\n                \"value\": \"LB\"\n            },\n            {\n                \"title\": \"Lesotho\",\n                \"value\": \"LS\"\n            },\n            {\n                \"title\": \"Liberia\",\n                \"value\": \"LR\"\n            },\n            {\n                \"title\": \"Libyan Arab Jamahiriya\",\n                \"value\": \"LY\"\n            },\n            {\n                \"title\": \"Liechtenstein\",\n                \"value\": \"LI\"\n            },\n            {\n                \"title\": \"Lithuania\",\n                \"value\": \"LT\"\n            },\n            {\n                \"title\": \"Luxembourg\",\n                \"value\": \"LU\"\n            },\n            {\n                \"title\": \"Macau\",\n                \"value\": \"MO\"\n            },\n            {\n                \"title\": \"Macedonia\",\n                \"value\": \"MK\"\n            },\n            {\n                \"title\": \"Madagascar\",\n                \"value\": \"MG\"\n            },\n            {\n                \"title\": \"Malawi\",\n                \"value\": \"MW\"\n            },\n            {\n                \"title\": \"Malaysia\",\n                \"value\": \"MY\"\n            },\n            {\n                \"title\": \"Maldives\",\n                \"value\": \"MV\"\n            },\n            {\n                \"title\": \"Mali\",\n                \"value\": \"ML\"\n            },\n            {\n                \"title\": \"Malta\",\n                \"value\": \"MT\"\n            },\n            {\n                \"title\": \"Marshall Islands\",\n                \"value\": \"MH\"\n            },\n            {\n                \"title\": \"Martinique\",\n                \"value\": \"MQ\"\n            },\n            {\n                \"title\": \"Mauritania\",\n                \"value\": \"MR\"\n            },\n            {\n                \"title\": \"Mauritius\",\n                \"value\": \"MU\"\n            },\n            {\n                \"title\": \"Mayotte\",\n                \"value\": \"YT\"\n            },\n            {\n                \"title\": \"Mexico\",\n                \"value\": \"MX\"\n            },\n            {\n                \"title\": \"Micronesia, Federated States\",\n                \"value\": \"FM\"\n            },\n            {\n                \"title\": \"Moldova, Republic Of\",\n                \"value\": \"MD\"\n            },\n            {\n                \"title\": \"Monaco\",\n                \"value\": \"MC\"\n            },\n            {\n                \"title\": \"Mongolia\",\n                \"value\": \"MN\"\n            },\n            {\n                \"title\": \"Montserrat\",\n                \"value\": \"MS\"\n            },\n            {\n                \"title\": \"Morocco\",\n                \"value\": \"MA\"\n            },\n            {\n                \"title\": \"Mozambique\",\n                \"value\": \"MZ\"\n            },\n            {\n                \"title\": \"Myanmar\",\n                \"value\": \"MM\"\n            },\n            {\n                \"title\": \"Namibia\",\n                \"value\": \"NA\"\n            },\n            {\n                \"title\": \"Nauru\",\n                \"value\": \"NR\"\n            },\n            {\n                \"title\": \"Nepal\",\n                \"value\": \"NP\"\n            },\n            {\n                \"title\": \"Netherlands\",\n                \"value\": \"NL\"\n            },\n            {\n                \"title\": \"Netherlands Ant Illes\",\n                \"value\": \"AN\"\n            },\n            {\n                \"title\": \"New Caledonia\",\n                \"value\": \"NC\"\n            },\n            {\n                \"title\": \"New Zealand\",\n                \"value\": \"NZ\"\n            },\n            {\n                \"title\": \"Nicaragua\",\n                \"value\": \"NI\"\n            },\n            {\n                \"title\": \"Niger\",\n                \"value\": \"NE\"\n            },\n            {\n                \"title\": \"Nigeria\",\n                \"value\": \"NG\"\n            },\n            {\n                \"title\": \"Niue\",\n                \"value\": \"NU\"\n            },\n            {\n                \"title\": \"Norfolk Island\",\n                \"value\": \"NF\"\n            },\n            {\n                \"title\": \"Northern Mariana Islands\",\n                \"value\": \"MP\"\n            },\n            {\n                \"title\": \"Norway\",\n                \"value\": \"NO\"\n            },\n            {\n                \"title\": \"Oman\",\n                \"value\": \"OM\"\n            },\n            {\n                \"title\": \"Pakistan\",\n                \"value\": \"PK\"\n            },\n            {\n                \"title\": \"Palau\",\n                \"value\": \"PW\"\n            },\n            {\n                \"title\": \"Panama\",\n                \"value\": \"PA\"\n            },\n            {\n                \"title\": \"Papua New Guinea\",\n                \"value\": \"PG\"\n            },\n            {\n                \"title\": \"Paraguay\",\n                \"value\": \"PY\"\n            },\n            {\n                \"title\": \"Peru\",\n                \"value\": \"PE\"\n            },\n            {\n                \"title\": \"Philippines\",\n                \"value\": \"PH\"\n            },\n            {\n                \"title\": \"Pitcairn\",\n                \"value\": \"PN\"\n            },\n            {\n                \"title\": \"Poland\",\n                \"value\": \"PL\"\n            },\n            {\n                \"title\": \"Portugal\",\n                \"value\": \"PT\"\n            },\n            {\n                \"title\": \"Puerto Rico\",\n                \"value\": \"PR\"\n            },\n            {\n                \"title\": \"Qatar\",\n                \"value\": \"QA\"\n            },\n            {\n                \"title\": \"Reunion\",\n                \"value\": \"RE\"\n            },\n            {\n                \"title\": \"Romania\",\n                \"value\": \"RO\"\n            },\n            {\n                \"title\": \"Russian Federation\",\n                \"value\": \"RU\"\n            },\n            {\n                \"title\": \"Rwanda\",\n                \"value\": \"RW\"\n            },\n            {\n                \"title\": \"Saint K Itts And Nevis\",\n                \"value\": \"KN\"\n            },\n            {\n                \"title\": \"Saint Lucia\",\n                \"value\": \"LC\"\n            },\n            {\n                \"title\": \"Saint Vincent, The Grenadines\",\n                \"value\": \"VC\"\n            },\n            {\n                \"title\": \"Samoa\",\n                \"value\": \"WS\"\n            },\n            {\n                \"title\": \"San Marino\",\n                \"value\": \"SM\"\n            },\n            {\n                \"title\": \"Sao Tome And Principe\",\n                \"value\": \"ST\"\n            },\n            {\n                \"title\": \"Saudi Arabia\",\n                \"value\": \"SA\"\n            },\n            {\n                \"title\": \"Senegal\",\n                \"value\": \"SN\"\n            },\n            {\n                \"title\": \"Seychelles\",\n                \"value\": \"SC\"\n            },\n            {\n                \"title\": \"Sierra Leone\",\n                \"value\": \"SL\"\n            },\n            {\n                \"title\": \"Singapore\",\n                \"value\": \"SG\"\n            },\n            {\n                \"title\": \"Slovakia (Slovak Republic)\",\n                \"value\": \"SK\"\n            },\n            {\n                \"title\": \"Slovenia\",\n                \"value\": \"SI\"\n            },\n            {\n                \"title\": \"Solomon Islands\",\n                \"value\": \"SB\"\n            },\n            {\n                \"title\": \"Somalia\",\n                \"value\": \"SO\"\n            },\n            {\n                \"title\": \"South Africa\",\n                \"value\": \"ZA\"\n            },\n            {\n                \"title\": \"South Georgia , S Sandwich Is.\",\n                \"value\": \"GS\"\n            },\n            {\n                \"title\": \"Spain\",\n                \"value\": \"ES\"\n            },\n            {\n                \"title\": \"Sri Lanka\",\n                \"value\": \"LK\"\n            },\n            {\n                \"title\": \"St.  Helena\",\n                \"value\": \"SH\"\n            },\n            {\n                \"title\": \"St.  Pierre And Miquelon\",\n                \"value\": \"PM\"\n            },\n            {\n                \"title\": \"Sudan\",\n                \"value\": \"SD\"\n            },\n            {\n                \"title\": \"Suriname\",\n                \"value\": \"SR\"\n            },\n            {\n                \"title\": \"Svalbard, Jan Mayen Islands\",\n                \"value\": \"SJ\"\n            },\n            {\n                \"title\": \"Sw Aziland\",\n                \"value\": \"SZ\"\n            },\n            {\n                \"title\": \"Sweden\",\n                \"value\": \"SE\"\n            },\n            {\n                \"title\": \"Switzerland\",\n                \"value\": \"CH\"\n            },\n            {\n                \"title\": \"Syrian Arab Republic\",\n                \"value\": \"SY\"\n            },\n            {\n                \"title\": \"Taiwan\",\n                \"value\": \"TW\"\n            },\n            {\n                \"title\": \"Tajikistan\",\n                \"value\": \"TJ\"\n            },\n            {\n                \"title\": \"Tanzania, United Republic Of\",\n                \"value\": \"TZ\"\n            },\n            {\n                \"title\": \"Thailand\",\n                \"value\": \"TH\"\n            },\n            {\n                \"title\": \"Togo\",\n                \"value\": \"TG\"\n            },\n            {\n                \"title\": \"Tokelau\",\n                \"value\": \"TK\"\n            },\n            {\n                \"title\": \"Tonga\",\n                \"value\": \"TO\"\n            },\n            {\n                \"title\": \"Trinidad And Tobago\",\n                \"value\": \"TT\"\n            },\n            {\n                \"title\": \"Tunisia\",\n                \"value\": \"TN\"\n            },\n            {\n                \"title\": \"Turkey\",\n                \"value\": \"TR\"\n            },\n            {\n                \"title\": \"Turkmenistan\",\n                \"value\": \"TM\"\n            },\n            {\n                \"title\": \"Turks And Caicos Islands\",\n                \"value\": \"TC\"\n            },\n            {\n                \"title\": \"Tuvalu\",\n                \"value\": \"TV\"\n            },\n            {\n                \"title\": \"Uganda\",\n                \"value\": \"UG\"\n            },\n            {\n                \"title\": \"Ukraine\",\n                \"value\": \"UA\"\n            },\n            {\n                \"title\": \"United Arab Emirates\",\n                \"value\": \"AE\"\n            },\n            {\n                \"title\": \"United Kingdom\",\n                \"value\": \"GB\"\n            },\n            {\n                \"title\": \"United States\",\n                \"value\": \"US\"\n            },\n            {\n                \"title\": \"United States Minor Is.\",\n                \"value\": \"UM\"\n            },\n            {\n                \"title\": \"Uruguay\",\n                \"value\": \"UY\"\n            },\n            {\n                \"title\": \"Uzbekistan\",\n                \"value\": \"UZ\"\n            },\n            {\n                \"title\": \"Vanuatu\",\n                \"value\": \"VU\"\n            },\n            {\n                \"title\": \"Venezuela\",\n                \"value\": \"VE\"\n            },\n            {\n                \"title\": \"Viet Nam\",\n                \"value\": \"VN\"\n            },\n            {\n                \"title\": \"Virgin Islands (British)\",\n                \"value\": \"VG\"\n            },\n            {\n                \"title\": \"Virgin Islands (U.S.)\",\n                \"value\": \"VI\"\n            },\n            {\n                \"title\": \"Wallis And Futuna Islands\",\n                \"value\": \"WF\"\n            },\n            {\n                \"title\": \"Western Sahara\",\n                \"value\": \"EH\"\n            },\n            {\n                \"title\": \"Yemen\",\n                \"value\": \"YE\"\n            },\n            {\n                \"title\": \"Yugoslavia\",\n                \"value\": \"YU\"\n            },\n            {\n                \"title\": \"Zaire\",\n                \"value\": \"ZR\"\n            },\n            {\n                \"title\": \"Zambia\",\n                \"value\": \"ZM\"\n            },\n            {\n                \"title\": \"Zimbabwe\",\n                \"value\": \"ZW\"\n            },\n            {\n                \"title\": \"Palestine\",\n                \"value\": \"PS\"\n            },\n            {\n                \"title\": \"West Indies\",\n                \"value\": \"WI\"\n            },\n            {\n                \"title\": \"Other\",\n                \"value\": \"OTHER\"\n            },\n            {\n                \"title\": \"Permanent Resident\",\n                \"value\": \"PERM\"\n            },\n            {\n                \"title\": \"Foreign National\",\n                \"value\": \"FOR-NAT\"\n            },\n            {\n                \"title\": \"Green Card\",\n                \"value\": \"GREEN\"\n            }\n        ]\n    },\n    \"ethnic_origin\": {\n        \"options\": [\n            {\n                \"title\": \"Not Specified\",\n                \"value\": \"NSPEC\"\n            },\n            {\n                \"title\": \"White\",\n                \"value\": \"WHITE\"\n            },\n            {\n                \"title\": \"Black/African American\",\n                \"value\": \"BLACK\"\n            },\n            {\n                \"title\": \"Asian\",\n                \"value\": \"ASIAN\"\n            },\n            {\n                \"title\": \"Unknown\",\n                \"value\": \"Unknown\"\n            },\n            {\n                \"title\": \"Hispanic/Latino\",\n                \"value\": \"HISPA\"\n            },\n            {\n                \"title\": \"American Indian/Alaska Native\",\n                \"value\": \"AMIND\"\n            },\n            {\n                \"title\": \"Native Hawaiian/Oth Pac Island\",\n                \"value\": \"PACIF\"\n            },\n            {\n                \"title\": \"spaniish\",\n                \"value\": \"1\"\n            }\n        ]\n    },\n    \"marital_status\": {\n        \"options\": [\n            {\n                \"title\": \"Single\",\n                \"value\": \"S\"\n            },\n            {\n                \"title\": \"Married\",\n                \"value\": \"M\"\n            },\n            {\n                \"title\": \"Common Law Marriage\",\n                \"value\": \"C\"\n            },\n            {\n                \"title\": \"Divorced\",\n                \"value\": \"D\"\n            },\n            {\n                \"title\": \"Domestic Partnership\",\n                \"value\": \"P\"\n            },\n            {\n                \"title\": \"Unknown\",\n                \"value\": \"U\"\n            }\n        ]\n    },\n    \"pref_contact\": {\n        \"options\": [\n            {\n                \"title\": \"Email\",\n                \"value\": \"0\"\n            },\n            {\n                \"title\": \"Pager\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"Email and Pager\",\n                \"value\": \"2\"\n            },\n            {\n                \"title\": \"Cell Phone\",\n                \"value\": \"3\"\n            }\n        ]\n    },\n    \"post_residency\": {\n        \"options\": [\n            {\n                \"title\": \"Faculty\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"Fellowship (Other Institution)\",\n                \"value\": \"2\"\n            },\n            {\n                \"title\": \"Group Practice\",\n                \"value\": \"3\"\n            },\n            {\n                \"title\": \"Private Practice\",\n                \"value\": \"4\"\n            },\n            {\n                \"title\": \"Research\",\n                \"value\": \"5\"\n            },\n            {\n                \"title\": \"other...\",\n                \"value\": \"9\"\n            },\n            {\n                \"title\": \"Fellowship\",\n                \"value\": \"6\"\n            },\n            {\n                \"title\": \"Military\",\n                \"value\": \"7\"\n            },\n            {\n                \"title\": \"Public Health\",\n                \"value\": \"8\"\n            },\n            {\n                \"title\": \"Residency\",\n                \"value\": \"10\"\n            },\n            {\n                \"title\": \"Residency (Other Institution)\",\n                \"value\": \"11\"\n            }\n        ]\n    },\n    \"alumni_dues\": {\n        \"options\": [\n            {\n                \"title\": \"Paid\",\n                \"value\": \"Paid\"\n            },\n            {\n                \"title\": \"Unpaid\",\n                \"value\": \"Unpaid\"\n            }\n        ]\n    },\n    \"compensation\": {\n        \"options\": [\n            {\n                \"title\": \"Non-Funded\",\n                \"value\": \"Non-Funded\"\n            }\n        ]\n    },\n    \"test_benefits\": {\n        \"options\": [\n            {\n                \"title\": \"Yes\",\n                \"value\": \"Yes\"\n            },\n            {\n                \"title\": \"No\",\n                \"value\": \"No\"\n            },\n            {\n                \"title\": \"(unknown)\",\n                \"value\": \"\"\n            }\n        ]\n    },\n    \"parking_form\": {\n        \"options\": [\n            {\n                \"title\": \"Yes\",\n                \"value\": \"Yes\"\n            },\n            {\n                \"title\": \"No\",\n                \"value\": \"No\"\n            },\n            {\n                \"title\": \"(unknown)\",\n                \"value\": \"\"\n            }\n        ]\n    },\n    \"data_coll_form\": {\n        \"options\": [\n            {\n                \"title\": \"Yes\",\n                \"value\": \"Yes\"\n            },\n            {\n                \"title\": \"No\",\n                \"value\": \"No\"\n            },\n            {\n                \"title\": \"(unknown)\",\n                \"value\": \"\"\n            }\n        ]\n    },\n    \"va_field\": {\n        \"options\": [\n            {\n                \"title\": \"Non-Veteran\",\n                \"value\": \"Non-Veteran\"\n            },\n            {\n                \"title\": \"Veteran\",\n                \"value\": \"Veteran\"\n            }\n        ]\n    },\n    \"post_residency_activity\": {\n        \"options\": [\n            {\n                \"title\": \"Rural\",\n                \"value\": \"Rural\"\n            },\n            {\n                \"title\": \"Urban\",\n                \"value\": \"Urban\"\n            }\n        ]\n    },\n    \"current_academic_year_status\": {\n        \"options\": [\n            {\n                \"title\": \"IA\",\n                \"value\": \"IA\"\n            },\n            {\n                \"title\": \"AL\",\n                \"value\": \"AL\"\n            },\n            {\n                \"title\": \"AK\",\n                \"value\": \"AK\"\n            },\n            {\n                \"title\": \"AS\",\n                \"value\": \"AS\"\n            },\n            {\n                \"title\": \"AZ\",\n                \"value\": \"AZ\"\n            },\n            {\n                \"title\": \"AR\",\n                \"value\": \"AR\"\n            },\n            {\n                \"title\": \"CA\",\n                \"value\": \"CA\"\n            },\n            {\n                \"title\": \"CO\",\n                \"value\": \"CO\"\n            },\n            {\n                \"title\": \"CT\",\n                \"value\": \"CT\"\n            },\n            {\n                \"title\": \"DE\",\n                \"value\": \"DE\"\n            },\n            {\n                \"title\": \"DC\",\n                \"value\": \"DC\"\n            },\n            {\n                \"title\": \"FM\",\n                \"value\": \"FM\"\n            },\n            {\n                \"title\": \"FL\",\n                \"value\": \"FL\"\n            },\n            {\n                \"title\": \"GA\",\n                \"value\": \"GA\"\n            },\n            {\n                \"title\": \"GU\",\n                \"value\": \"GU\"\n            },\n            {\n                \"title\": \"HI\",\n                \"value\": \"HI\"\n            },\n            {\n                \"title\": \"ID\",\n                \"value\": \"ID\"\n            },\n            {\n                \"title\": \"IL\",\n                \"value\": \"IL\"\n            },\n            {\n                \"title\": \"IN\",\n                \"value\": \"IN\"\n            },\n            {\n                \"title\": \"KS\",\n                \"value\": \"KS\"\n            },\n            {\n                \"title\": \"KY\",\n                \"value\": \"KY\"\n            },\n            {\n                \"title\": \"LA\",\n                \"value\": \"LA\"\n            },\n            {\n                \"title\": \"ME\",\n                \"value\": \"ME\"\n            },\n            {\n                \"title\": \"MH\",\n                \"value\": \"MH\"\n            },\n            {\n                \"title\": \"MD\",\n                \"value\": \"MD\"\n            },\n            {\n                \"title\": \"MA\",\n                \"value\": \"MA\"\n            },\n            {\n                \"title\": \"MI\",\n                \"value\": \"MI\"\n            },\n            {\n                \"title\": \"MN\",\n                \"value\": \"MN\"\n            },\n            {\n                \"title\": \"MS\",\n                \"value\": \"MS\"\n            },\n            {\n                \"title\": \"MO\",\n                \"value\": \"MO\"\n            },\n            {\n                \"title\": \"MT\",\n                \"value\": \"MT\"\n            },\n            {\n                \"title\": \"NE\",\n                \"value\": \"NE\"\n            },\n            {\n                \"title\": \"NV\",\n                \"value\": \"NV\"\n            },\n            {\n                \"title\": \"NH\",\n                \"value\": \"NH\"\n            },\n            {\n                \"title\": \"NJ\",\n                \"value\": \"NJ\"\n            },\n            {\n                \"title\": \"NM\",\n                \"value\": \"NM\"\n            },\n            {\n                \"title\": \"NY\",\n                \"value\": \"NY\"\n            },\n            {\n                \"title\": \"NC\",\n                \"value\": \"NC\"\n            },\n            {\n                \"title\": \"ND\",\n                \"value\": \"ND\"\n            },\n            {\n                \"title\": \"MP\",\n                \"value\": \"MP\"\n            },\n            {\n                \"title\": \"OH\",\n                \"value\": \"OH\"\n            },\n            {\n                \"title\": \"OK\",\n                \"value\": \"OK\"\n            },\n            {\n                \"title\": \"OR\",\n                \"value\": \"OR\"\n            },\n            {\n                \"title\": \"PW\",\n                \"value\": \"PW\"\n            },\n            {\n                \"title\": \"PA\",\n                \"value\": \"PA\"\n            },\n            {\n                \"title\": \"PR\",\n                \"value\": \"PR\"\n            },\n            {\n                \"title\": \"RI\",\n                \"value\": \"RI\"\n            },\n            {\n                \"title\": \"SC\",\n                \"value\": \"SC\"\n            },\n            {\n                \"title\": \"SD\",\n                \"value\": \"SD\"\n            },\n            {\n                \"title\": \"TN\",\n                \"value\": \"TN\"\n            },\n            {\n                \"title\": \"TX\",\n                \"value\": \"TX\"\n            },\n            {\n                \"title\": \"UT\",\n                \"value\": \"UT\"\n            },\n            {\n                \"title\": \"VT\",\n                \"value\": \"VT\"\n            },\n            {\n                \"title\": \"VI\",\n                \"value\": \"VI\"\n            },\n            {\n                \"title\": \"VA\",\n                \"value\": \"VA\"\n            },\n            {\n                \"title\": \"WA\",\n                \"value\": \"WA\"\n            },\n            {\n                \"title\": \"WV\",\n                \"value\": \"WV\"\n            },\n            {\n                \"title\": \"WI\",\n                \"value\": \"WI\"\n            },\n            {\n                \"title\": \"WY\",\n                \"value\": \"WY\"\n            },\n            {\n                \"title\": \"AB\",\n                \"value\": \"AB\"\n            },\n            {\n                \"title\": \"BC\",\n                \"value\": \"BC\"\n            },\n            {\n                \"title\": \"MB\",\n                \"value\": \"MB\"\n            },\n            {\n                \"title\": \"NB\",\n                \"value\": \"NB\"\n            },\n            {\n                \"title\": \"NL\",\n                \"value\": \"NL\"\n            },\n            {\n                \"title\": \"NT\",\n                \"value\": \"NT\"\n            },\n            {\n                \"title\": \"NS\",\n                \"value\": \"NS\"\n            },\n            {\n                \"title\": \"NU\",\n                \"value\": \"NU\"\n            },\n            {\n                \"title\": \"ON\",\n                \"value\": \"ON\"\n            },\n            {\n                \"title\": \"PE\",\n                \"value\": \"PE\"\n            },\n            {\n                \"title\": \"QC\",\n                \"value\": \"QC\"\n            },\n            {\n                \"title\": \"SK\",\n                \"value\": \"SK\"\n            },\n            {\n                \"title\": \"YT\",\n                \"value\": \"YT\"\n            }\n        ]\n    },\n    \"shoe_size\": {\n        \"options\": [\n            {\n                \"title\": \"1\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"2\",\n                \"value\": \"2\"\n            }\n        ]\n    },\n    \"test_demo_field\": {\n        \"options\": [\n            {\n                \"title\": \"1\",\n                \"value\": \"1\"\n            },\n            {\n                \"title\": \"2\",\n                \"value\": \"2\"\n            }\n        ]\n    }\n}"}],"_postman_id":"e7bb30f5-687b-48c7-9200-5df8b0c74760"},{"name":"users/studentInfo","id":"daad81d9-f9a7-436f-bc66-9b36bbcee1a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"userID\": \t98634}","description":"<p>example only</p>\n","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/studentInfo","description":"<p>Provides all demographic data for a single student.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.06</td>\n        <td></td>\n</tr></table>\n\n<h6>Response Data</h6>\n\n<p>Varies by institution based on enabled demographic fields.  Custom demographic fields are also included.</p>\n","urlObject":{"path":["users","studentInfo"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"43d2ae61-1bb9-4df8-8b8a-bf4209e9b70d","name":"users/studentInfo","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"userID\": \t98634}","description":"example only","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/studentInfo"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 29 May 2020 18:55:41 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"name_last\": \"Aashaw\",\n    \"name_first\": \"Mary\",\n    \"name_middle\": \"James\",\n    \"name_alias\": null,\n    \"email\": \"demotest2@medhub.com\",\n    \"username\": \"tmpmdishaw\",\n    \"studentID\": \"123445\",\n    \"typeID\": \"1\",\n    \"type_name\": \"Medical Student\",\n    \"level\": \"3\",\n    \"status\": \"active\",\n    \"birth_place\": null,\n    \"birth_date\": \"1983-07-01\",\n    \"gender\": null,\n    \"citizenship\": null,\n    \"ethnicity\": null,\n    \"start_date\": null,\n    \"phone_home\": null,\n    \"phone_work\": null,\n    \"phone_mobile\": null,\n    \"address_current_line1\": null,\n    \"address_current_line2\": null,\n    \"address_current_city\": null,\n    \"address_current_state\": null,\n    \"address_current_zipcode\": null,\n    \"address_current_country\": null,\n    \"address_permanent_line1\": null,\n    \"address_permanent_line2\": null,\n    \"address_permanent_city\": null,\n    \"address_permanent_state\": null,\n    \"address_permanent_zipcode\": null,\n    \"address_permanent_country\": null,\n    \"address_other_description\": null,\n    \"address_other_line1\": null,\n    \"address_other_line2\": null,\n    \"address_other_city\": null,\n    \"address_other_state\": null,\n    \"address_other_zipcode\": null,\n    \"address_other_country\": null,\n    \"institution_abbreviation\": \"Sand\",\n    \"first_name\": \"Mary\",\n    \"last_name\": \"Aashaw\",\n    \"email_address\": \"demotest2@medhub.com\",\n    \"active_y_n\": \"1\",\n    \"access\": \"0\",\n    \"current_y_n\": \"1\",\n    \"training_year\": \"3\",\n    \"banner_id\": \"123445\",\n    \"date_of_birth\": \"1983-07-01\",\n    \"prev_last_name\": null,\n    \"aamc_identifier\": \"4342434234\",\n    \"npi\": null,\n    \"place_of_birth\": null,\n    \"country_of_birth\": null,\n    \"ethnic_origin\": null,\n    \"visa_type\": null,\n    \"visa_issued\": null,\n    \"visa_expires\": null,\n    \"marital_status\": null,\n    \"spouse_name\": null,\n    \"children\": null,\n    \"demographics_comments\": null,\n    \"pref_contact\": \"Email\",\n    \"home_phone\": null,\n    \"cell_phone\": null,\n    \"other_work_phone\": null,\n    \"pager\": \"12345678\",\n    \"email_secondary\": null,\n    \"mailbox\": null,\n    \"current_address_address_1\": null,\n    \"current_address_address_2\": null,\n    \"current_address_city\": null,\n    \"current_address_state\": null,\n    \"current_address_country\": null,\n    \"current_address_zipcode\": null,\n    \"internal_address_address_1\": null,\n    \"internal_address_address_2\": null,\n    \"internal_address_city\": null,\n    \"internal_address_state\": null,\n    \"internal_address_country\": null,\n    \"internal_address_zipcode\": null,\n    \"permanent_address_address_1\": null,\n    \"permanent_address_address_2\": null,\n    \"permanent_address_city\": null,\n    \"permanent_address_state\": null,\n    \"permanent_address_country\": null,\n    \"permanent_address_zipcode\": null,\n    \"other_address_description\": null,\n    \"other_address_address_1\": null,\n    \"other_address_address_2\": null,\n    \"other_address_city\": null,\n    \"other_address_state\": null,\n    \"other_address_country\": null,\n    \"other_address_zipcode\": null,\n    \"emergency_address_contact_name\": null,\n    \"emergency_address_relation\": null,\n    \"emergency_address_phone_number\": null,\n    \"emergency_address_address_1\": null,\n    \"emergency_address_address_2\": null,\n    \"emergency_address_city\": null,\n    \"emergency_address_state\": null,\n    \"emergency_address_zipcode\": null,\n    \"emergency_address_country\": null,\n    \"contact_comments\": null,\n    \"education_comments\": null,\n    \"certifications_comments\": null,\n    \"senesac_test\": null,\n    \"hobbies\": null,\n    \"test_scores_comments\": null,\n    \"matric_date\": null,\n    \"immunizations_comments\": null,\n    \"forms_files_comments\": null,\n    \"awards_discipline_comments\": null,\n    \"visa_immigration_comments\": null,\n    \"orientation_date\": null,\n    \"orientation_comments\": null,\n    \"verified\": \"0\",\n    \"training_history_comments\": null,\n    \"end_date_proj\": null,\n    \"termin_date\": null,\n    \"hospital_experience\": null,\n    \"health_issues\": null,\n    \"nrmp_number\": null,\n    \"withdraw_date\": null,\n    \"withdraw_notes\": null,\n    \"student_type\": \"In-State (OK)\",\n    \"insurance_comments\": null,\n    \"military\": \"(not indicated)\",\n    \"residency\": \"(unknown)\",\n    \"academic_plan\": \"(unknown)\",\n    \"enrollment_comments\": null,\n    \"compliance_comments\": null,\n    \"aamc_comments\": null,\n    \"ferpa_hold\": \"No\",\n    \"preferred_name\": null,\n    \"transfer_in\": null,\n    \"transfer_out\": null,\n    \"exchange\": null,\n    \"probation_status\": null,\n    \"probation_ever\": null,\n    \"aoa_member\": \"Yes\",\n    \"discussion_room\": null,\n    \"module\": null,\n    \"grad_year_projected\": \"2019\",\n    \"grad_year_actual\": null,\n    \"quartile\": null,\n    \"action\": null,\n    \"action_date\": null,\n    \"professionalism_comments\": null,\n    \"desk\": null,\n    \"degree\": null,\n    \"testing\": \"yes\",\n    \"graduated\": null,\n    \"custom_text_9\": null,\n    \"does_this_show_on_the_ad_hoc_report\": null,\n    \"cell_phone_carrier\": null,\n    \"select_hobby\": null,\n    \"major_undergraduate\": null,\n    \"major_graduate\": null,\n    \"test_education_field\": null\n}"}],"_postman_id":"daad81d9-f9a7-436f-bc66-9b36bbcee1a5"},{"name":"users/residentInfo","id":"446640ae-0833-436f-abe0-47e9d44081ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\":97927}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentInfo","description":"<p>Returns all demographic data for a single resident.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.05</td>\n        <td></td>\n</tr></table>\n\n<h6>Response Data</h6>\n\n<p>Varies by institution based on enabled demographic fields.  Custom demographic fields are also included.</p>\n","urlObject":{"path":["users","residentInfo"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"4070a25a-a21b-48bf-bba7-05ea56ab4d63","name":"users/residentInfo","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"userID\":97927}","description":"example only","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentInfo"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 13 Apr 2020 12:23:53 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"name_last\": \"Archuleta\",\n    \"name_first\": \"Alleen\",\n    \"name_middle\": null,\n    \"name_alias\": null,\n    \"email\": \"test31233@medhub.com\",\n    \"username\": \"Alleen\",\n    \"employeeID\": \"0123456789\",\n    \"typeID\": \"2\",\n    \"type_name\": \"Resident\",\n    \"programID\": \"481\",\n    \"program_name\": \"Internal Medicine - PRIMARY CARE\",\n    \"level\": \"5\",\n    \"status\": \"active\",\n    \"birth_place\": null,\n    \"birth_date\": \"1987-07-27\",\n    \"gender\": \"F\",\n    \"citizenship\": \"US\",\n    \"ethnicity\": \"NSPEC\",\n    \"school_name\": \"University of Alabama School of Medicine\",\n    \"school_degree\": \"B.A.\",\n    \"school_start_date\": \"2008-08-18\",\n    \"school_end_date\": \"2012-04-20\",\n    \"school_graduated\": true,\n    \"phone_home\": \"248-200-2000\",\n    \"phone_work\": \"734-300-3000\",\n    \"phone_mobile\": \"313-400-4000\",\n    \"address_current_line1\": \"719 Hamilton Road\",\n    \"address_current_line2\": null,\n    \"address_current_city\": \"Demotown\",\n    \"address_current_state\": \"MI\",\n    \"address_current_zipcode\": \"44444\",\n    \"address_current_country\": \"United States\",\n    \"address_permanent_line1\": \"12345 Main St\",\n    \"address_permanent_line2\": null,\n    \"address_permanent_city\": \"Dexter\",\n    \"address_permanent_state\": \"MI\",\n    \"address_permanent_zipcode\": \"48130\",\n    \"address_permanent_country\": null,\n    \"address_other_description\": \"My PO Box\",\n    \"address_other_line1\": \"PO Box 5000\",\n    \"address_other_line2\": \"j-1\",\n    \"address_other_city\": \"Ann Arbor\",\n    \"address_other_state\": \"MI\",\n    \"address_other_zipcode\": \"44445\",\n    \"address_other_country\": null,\n    \"projected_end_date\": \"2015-07-01\",\n    \"termination_date\": \"2019-07-30\",\n    \"ssn\": \"000-01-1486\",\n    \"dea\": \"123456\",\n    \"institution_abbreviation\": \"Sand\",\n    \"first_name\": \"Alleen\",\n    \"last_name\": \"Archuleta\",\n    \"email_address\": \"test31233@medhub.com\",\n    \"active\": \"1\",\n    \"access\": \"1\",\n    \"current_y_n\": \"1\",\n    \"user_id\": \"97927\",\n    \"pgy_level_current\": \"5\",\n    \"empl_id\": \"0123456789\",\n    \"date_of_birth\": \"1987-07-27\",\n    \"pref_contact\": \"Email\",\n    \"home_phone\": \"248-200-2000\",\n    \"pref_or_nickname\": null,\n    \"appt_type\": \"Resident\",\n    \"place_of_birth\": null,\n    \"ctry_of_citizenship\": \"United States\",\n    \"ethnic_origin\": \"Not Specified\",\n    \"marital_status\": null,\n    \"spouse_name\": null,\n    \"children\": null,\n    \"demographics_comments\": \"Mike res view test\",\n    \"cell_phone\": \"313-400-4000\",\n    \"work_phone\": \"734-300-3000\",\n    \"pager\": \"333-333-3333\",\n    \"current_address_address_1\": \"719 Hamilton Road\",\n    \"current_address_address_2\": null,\n    \"current_address_city\": \"Demotown\",\n    \"current_address_state\": \"MI\",\n    \"current_address_country\": \"United States\",\n    \"current_address_zipcode\": \"44444\",\n    \"permanent_address_address_1\": \"12345 Main St\",\n    \"permanent_address_address_2\": null,\n    \"permanent_address_city\": \"Dexter\",\n    \"permanent_address_state\": \"MI\",\n    \"permanent_address_country\": null,\n    \"permanent_address_zipcode\": \"48130\",\n    \"other_address_description\": \"My PO Box\",\n    \"other_address_address_1\": \"PO Box 5000\",\n    \"other_address_address_2\": \"j-1\",\n    \"other_address_city\": \"Ann Arbor\",\n    \"other_address_state\": \"MI\",\n    \"other_address_country\": null,\n    \"other_address_zipcode\": \"44445\",\n    \"education_comments\": null,\n    \"certifications_comments\": \"testing\",\n    \"training_history_comments\": \"Can you see me?\\r\\nno\",\n    \"post_residency\": \"0\",\n    \"other\": null,\n    \"test_scores_comments\": null,\n    \"gme_comments\": \"Can she see this?\",\n    \"finance_comments\": null,\n    \"verified_credentialed\": \"1\",\n    \"committee_approval_date\": null,\n    \"ecca_approval_date\": null,\n    \"verification_comments\": null,\n    \"irp_limit_date\": \"2018-06-21\",\n    \"contact_comments\": null,\n    \"forms_files_comments\": \"See internal file for more\",\n    \"compulsivity_index_comments\": null,\n    \"program_comments\": \"Can she see this?\",\n    \"fax_number\": null,\n    \"access_code\": null,\n    \"immunizations_comments\": null,\n    \"practitioner_id\": \"22244\",\n    \"npi\": null,\n    \"email_secondary\": \"username@domain.co\",\n    \"orientation_date\": \"2019-07-01\",\n    \"awards_discipline_comments\": null,\n    \"visa_immigration_comments\": null,\n    \"mailbox\": null,\n    \"country_of_birth\": null,\n    \"internal_address_address_1\": null,\n    \"internal_address_address_2\": null,\n    \"internal_address_city\": null,\n    \"internal_address_state\": null,\n    \"internal_address_country\": null,\n    \"internal_address_zipcode\": null,\n    \"orientation_comments\": null,\n    \"projected_start_date\": null,\n    \"trainee_type_current\": \"Resident\",\n    \"emergency_address_contact_name\": null,\n    \"emergency_address_relation\": null,\n    \"emergency_address_phone_home\": null,\n    \"emergency_address_address_1\": null,\n    \"emergency_address_address_2\": null,\n    \"emergency_address_city\": null,\n    \"emergency_address_state\": null,\n    \"emergency_address_zipcode\": null,\n    \"emergency_address_email\": null,\n    \"aamc_number\": null,\n    \"cost_center\": null,\n    \"alumni_dues\": null,\n    \"compensation\": null,\n    \"us_entry_date\": null,\n    \"test_benefits\": \"(unknown)\",\n    \"parking_form\": \"(unknown)\",\n    \"data_coll_form\": \"(unknown)\",\n    \"compliance_comments\": null,\n    \"aoa_member\": \"0\",\n    \"last_updated\": null,\n    \"deceased\": null,\n    \"job_code\": \"0\",\n    \"custom_text_4\": null,\n    \"encode_number\": null,\n    \"shoe_size\": \"TEst Does this show for Aleen\",\n    \"ghhs_award\": null,\n    \"emergency_test\": null,\n    \"test_date_field\": null,\n    \"resident_review_date\": null,\n    \"education_date\": null,\n    \"shoe_size_2\": null,\n    \"new_hire_license_application_url\": null,\n    \"phone_alumni\": \"7345802000\",\n    \"email_alumni\": \"username@domain.com\",\n    \"alumni_comments\": null,\n    \"alumni_address_address_1\": \"123 Sesame Street\",\n    \"alumni_address_address_2\": \"\",\n    \"alumni_address_city\": \"Los Angeles\",\n    \"alumni_address_state\": \"California\",\n    \"alumni_address_country\": \"USa\",\n    \"alumni_address_zipcode\": \"90210\",\n    \"alumni\": \"1\",\n    \"emergency_address_email_address\": null,\n    \"emergency_address_phone_cell\": null,\n    \"emergency_address_phone_work\": null,\n    \"malpractice_claims\": null,\n    \"pets_name\": null,\n    \"custom_text_12\": null,\n    \"va_field\": null,\n    \"current_academic_year_status\": null,\n    \"undergrad_major\": null,\n    \"score\": null,\n    \"opt_out_emergency_contact\": null,\n    \"county\": null,\n    \"test_demo_field\": null,\n    \"work_address_test\": null,\n    \"testing\": null,\n    \"committee\": null\n}"}],"_postman_id":"446640ae-0833-436f-abe0-47e9d44081ed"},{"name":"users/facultyInfo","id":"f148e826-84c9-4675-b1a4-ba4fca726273","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"userID\":\t\"116358\"}","description":"<p>example only</p>\n","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/facultyInfo","description":"<p>Provides all demographic data for a single faculty account.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td></td>\n        <td></td>\n</tr></table>\n\n<h6>Response Data</h6>\n\n<p>Varies by institution based on enabled demographic fields.</p>\n","urlObject":{"path":["users","facultyInfo"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"ca93f050-cdd9-4228-a9e8-96e84acdff24","name":"users/facultyInfo","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"userID\":\t\"116358\"}","description":"example only","type":"text"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/facultyInfo"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 29 May 2020 20:18:02 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"institution_abbreviation\": \"Sand\",\n    \"username\": \"APIExample2\",\n    \"first_name\": \"API\",\n    \"last_name\": \"ExampleFaculty\",\n    \"email\": \"APITest@test.com\",\n    \"specialty\": null,\n    \"contact_phone\": \"555-555-5555\",\n    \"contact_pager\": null,\n    \"title\": null,\n    \"interests_clinical\": null,\n    \"interests_research\": null,\n    \"contact_pager_alpha\": null,\n    \"contact_fax\": null,\n    \"work_address_contact_address_work\": null,\n    \"home_address_contact_address_home\": null,\n    \"biography\": null,\n    \"photo\": \"0\",\n    \"notes\": null,\n    \"children_names\": null,\n    \"employeeid\": \"1234API\",\n    \"name_suffix\": \"III\",\n    \"contact_mailcode\": null,\n    \"staff_type\": null,\n    \"review_qtr\": \"0\",\n    \"npi\": null,\n    \"name_prefix\": \"Dr.\",\n    \"contact_phone_home\": \"444-444-4444\",\n    \"contact_phone_cell\": \"777-777-7777\",\n    \"inst_start_date\": \"2017-05-01\",\n    \"inst_end_date\": null,\n    \"gender\": null,\n    \"rank\": null,\n    \"typeid\": null,\n    \"faculty_deptid\": \"0\"\n}"}],"_postman_id":"f148e826-84c9-4675-b1a4-ba4fca726273"},{"name":"users/studentUpdate","id":"2f3b7e71-970f-4223-8503-643283a54819","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\":\"119712\", \"fields\":[{\"username\":\"APIUpdateExample\"},{\"gender\":[{\"value\":\"M\"}]}]}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/studentUpdate","description":"<p>Update a student account in MedHub.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.20</td>\n        <td>student's unique MedHub ID</td>\n    </tr>\n    <tr>\n        <td>fields</td>\n        <td>array</td>\n        <td>Yes</td>\n        <td>v1.20</td>\n        <td>This array will contain the fields to update in the student account paired with their update values. Use users/studentFields to get a list of all available student demographic fields. <em>Note: fields that cannot be removed or nulled as part of this update call include all the fields that are required to create a new student account, including: institution_abbreviation, last_name, first_name, username, email_address, training_year, student_type.</em></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\nHTTP Success or Error message will be returned.","urlObject":{"path":["users","studentUpdate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"7a325a81-e892-4c4b-87a3-466d7920897a","name":"users/studentUpdate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":\"119712\", \"fields\":[{\"username\":\"APIUpdateExample\"},{\"gender\":[{\"value\":\"M\"}]}]}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/studentUpdate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Apr 2020 16:18:39 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"2f3b7e71-970f-4223-8503-643283a54819"},{"name":"users/residentUpdate","id":"083b5e2d-0bdb-40c0-bbe7-46288aef5d1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\":\"97927\",\"fields\":[{\"empl_id\":\"1234ABC\"},{\"email_address\":\"APItest@test.com\"}]}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentUpdate","description":"<p>Update a resident account in MedHub.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.20</div><div><div><div><div></div></div></div><div></div></div></td><td><div>resident's unique MedHub ID</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>fields</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.20</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This array will contain the fields to update in the resident account paired with their update values. Use users/residentFields to get a list of all available resident demographic fields. <i>Note: fields that cannot be removed or nulled as part of this update call include all the fields that are required to create a new resident account, including: last_name, first_name, username, email, program_abbreviation_current, pgy_level_current, program_start_date, program_end_date, trainee_type_current.</i></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<p>HTTP Success or Error message will be returned.</p>\n","urlObject":{"path":["users","residentUpdate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"30cb4b8d-7754-4e37-8807-0abb7a770ecd","name":"users/residentUpdate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":\"97927\",\"fields\":[{\"empl_id\":\"1234ABC\"},{\"email_address\":\"APItest@test.com\"}]}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentUpdate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 29 May 2020 20:00:47 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"083b5e2d-0bdb-40c0-bbe7-46288aef5d1e"},{"name":"users/facultyUpdate","id":"19850446-ad6b-478e-8eea-62ef2ead0fe3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\":\"77116\",\"fields\":[{\"employeeid\":\"123API\"},{\"email\":\"APItest@test.com\"}]}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/facultyUpdate","description":"<p>Update a faculty account in MedHub.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.21</td>\n        <td>faculty's unique MedHub ID</td>\n    </tr>\n    <tr>\n        <td>fields</td>\n        <td>array</td>\n        <td>Yes</td>\n        <td>v1.21</td>\n        <td>This array will contain the fields to update in the faculty account paired with their update values. Use users/facultyFields to get a list of all available faculty demographic fields. <em>Note: fields that cannot be removed or nulled as part of this update call include all the fields that are required to create a new faculty account, including: last_name, first_name, username, email.</em></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\nHTTP Success or Error message will be returned.","urlObject":{"path":["users","facultyUpdate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"478fec39-d279-477d-9b6a-bbc8354f1913","name":"users/facultyUpdate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":\"77116\",\"fields\":[{\"employeeid\":\"123API\"},{\"email\":\"APItest@test.com\"}]}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/facultyUpdate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 29 May 2020 20:09:07 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"19850446-ad6b-478e-8eea-62ef2ead0fe3"},{"name":"users/studentCreate","event":[{"listen":"prerequest","script":{"id":"240718db-6a2b-4aa7-9557-0d4a40e20685","exec":[""],"type":"text/javascript"}}],"id":"4fdae22a-3679-4985-8152-cee4aa9c556a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"key":"request","type":"text","value":"{\"institutionID\":\"1\",\"schoolID\":\"1\",\"fields\":[{\"last_name\":\"Example\"},{\"first_name\":\"API\"},{\"email_address\":\"test@medhub.com\"},{\"username\":\"APIExample\"},{\"training_year\":\"1\"},{\"student_type\":[{\"value\":\"1\"}]},{\"gender\":[{\"value\":\"F\"}]}]}","description":"<p>example only</p>\n"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/studentCreate","description":"<p>Creates a medical student account.  </p>\n<p><em>Note: this call does not create student training history records. These will need to be added manually through the MedHub user interface either individually or by batch action task wizard.</em></p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td>institutionID</td><td>integer</td><td>Yes</td><td>v1.20</td><td></td></tr><tr><td>schoolID</td><td>integer</td><td>Yes</td><td>v1.20</td><td></td></tr><tr><td>fields</td><td>array</td><td>Yes</td><td>v1.20</td><td><p>This array will contain the fields needed to create the new student account. Use users/studentFields to get a list of all available field names. Required fields to create a new student account include:<br /></p><ul><li><p>institution_abbreviation</p></li><li>schoolID</li><li><p>last_name</p></li><li><p>first_name</p></li><li><p>username</p></li><li><p>email_address</p></li><li><p>student_type</p></li></ul></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td>student userID</td><td>unique userID of the created student</td><td>integer</td><td>v1.20</td><td></td></tr></tbody></table>","urlObject":{"path":["users","studentCreate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"52ac26c5-2fdf-4544-8f3b-51b27af0bb6e","name":"users/studentCreate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"key":"request","type":"text","value":"{\"institutionID\":\"1\",\"schoolID\":\"1\",\"fields\":[{\"last_name\":\"Example\"},{\"first_name\":\"API\"},{\"email_address\":\"test@medhub.com\"},{\"username\":\"APIExample\"},{\"training_year\":\"1\"},{\"student_type\":[{\"value\":\"1\"}]},{\"gender\":[{\"value\":\"F\"}]}]}","description":"example only"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/studentCreate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Apr 2020 16:05:54 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"userID\": 119712\n}"}],"_postman_id":"4fdae22a-3679-4985-8152-cee4aa9c556a"},{"name":"users/residentCreate","event":[{"listen":"prerequest","script":{"id":"240718db-6a2b-4aa7-9557-0d4a40e20685","exec":[""],"type":"text/javascript"}}],"id":"da110a45-52c5-435d-8a32-320589604d17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"institutionID\":\"1\",\"fields\":[{\"last_name\":\"Resident\"},{\"first_name\":\"APIExample\"},{\"username\":\"ResAPIEx\"},{\"email_address\":\"test@medhub.com\"}]}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentCreate","description":"<p>Creates a new resident user account in MedHub.</p>\n<p><em>Note: when assigning trainee_type the assignment must be made as an array within the fields array. For example: {\"trainee_type_current\":[{\"value\": 1}]}</em></p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>institutionID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.20</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>fields</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.20</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>This array will contain the fields needed to create the new resident account. Use users/residentFields to get a list of all available field names. Required fields to create a new resident account include:<br /></p><ul><li><div>last_name</div></li><li><div>first_name</div></li><li><div>username</div></li><li><div>email_address</div></li></ul></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique user ID of the created resident</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.20</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["users","residentCreate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"85ad5464-47fe-4c5f-91dd-2ed6097bcfa8","name":"users/residentCreate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"institutionID\":\"1\",\"fields\":[{\"last_name\":\"Resident\"},{\"first_name\":\"APIExample\"},{\"username\":\"ResAPIEx\"},{\"email_address\":\"test@medhub.com\"}]}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentCreate"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Fri, 29 May 2020 20:24:59 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\"userID\":119719}"}],"_postman_id":"da110a45-52c5-435d-8a32-320589604d17"},{"name":"users/facultyCreate","event":[{"listen":"prerequest","script":{"id":"c073e2f4-df65-47dc-a073-9c83e9c9b049","exec":[""],"type":"text/javascript"}}],"id":"3cf85144-bec4-412f-87f7-0c39fcb2295e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"institutionID\":\"1\",\"fields\":[{\"last_name\":\"Faculty\"},{\"first_name\":\"APIExample\"},{\"username\":\"FacAPIEx\"},{\"email\":\"APIFacEx@medhub.com\"}]}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/facultyCreate","description":"<p>Creates a new faculty user account in MedHub.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>institutionID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.21</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>fields</td>\n        <td>array</td>\n        <td>Yes</td>\n        <td>v1.21</td>\n        <td>This array will contain the fields needed to create the new faculty account.  Use users/facultyFields to get a list of all available field names. <em>Required fields to create a new faculty account include:</em><ul><li>last_name</li>\n            <li>first_name</li>\n            <li>username</li>\n            <li>email</li></ul></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>unique user ID of the created faculty account</td>\n        <td>integer</td>\n        <td>v1.21</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["users","facultyCreate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"96f64fbb-8f85-4eb7-8fd9-c17f94b9af8e","name":"users/facultyCreate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"institutionID\":\"1\",\"fields\":[{\"last_name\":\"Faculty\"},{\"first_name\":\"APIExample\"},{\"username\":\"FacAPIEx\"},{\"email\":\"APIFacEx@medhub.com\"}]}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/facultyCreate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 29 May 2020 20:24:19 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"userID\": 119718\n}"}],"_postman_id":"3cf85144-bec4-412f-87f7-0c39fcb2295e"},{"name":"users/residentsCount","id":"bb9c4d42-3e19-43f2-b37d-d6c5084994a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"programID\":890}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentsCount","description":"<p>Lists the number of active residents in a specified program</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>programID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.22</td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n\n<p>Response will show the number of active residents.</p>\n","urlObject":{"path":["users","residentsCount"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"ef8becec-28c9-48fb-85d7-aa67d59571ec","name":"users/residentsCount","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"programID\":890}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentsCount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 13 Apr 2020 12:56:16 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"3"}],"_postman_id":"bb9c4d42-3e19-43f2-b37d-d6c5084994a8"},{"name":"users/residentEducation","event":[{"listen":"prerequest","script":{"id":"663a8b9d-7c80-4837-a8e8-026173004fb3","exec":[""],"type":"text/javascript"}}],"id":"04b69b9e-8083-4d3a-8ef4-fd0a7517ab85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"userID\":97927}","type":"text","description":"<p>example only</p>\n"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentEducation","description":"<p>Retrieves a list of a resident's education records.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td></td>\n        <td>unique user identifier</td>\n    \n</tr></table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>school_name</td>\n        <td>name of school</td>\n        <td>string</td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>school_type</td>\n        <td>type of school</td>\n        <td>integer</td>\n        <td></td>\n        <td>values: 1 = medical school, 2 = graduate school, 3 = undergraduate school</td>\n    </tr>\n    <tr>\n        <td>school_code</td>\n        <td></td>\n        <td>integer</td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>schoolID</td>\n        <td>unique school identifier</td>\n        <td>integer</td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>graduated</td>\n        <td>value for wether or not resident graduated from the school</td>\n        <td>integer</td>\n        <td></td>\n        <td>value 1 = yes (graduated), value 0 = no (not graduated)</td>\n    </tr>\n    <tr>\n        <td>date_attended_start</td>\n        <td>date the resident started attending the school</td>\n        <td>date</td>\n        <td></td>\n        <td>format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>date_attended_end</td>\n        <td>date the resident stopped attending the school</td>\n        <td>date</td>\n        <td></td>\n        <td>format YYYY-MM-DD</td>\n    </tr>\n    <tr>\n        <td>school_degree</td>\n        <td>degree granted to the resident</td>\n        <td>string</td>\n        <td></td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>school_country</td>\n        <td>country location of school</td>\n        <td>string</td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["users","residentEducation"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"a6f108e4-11c7-4c71-aadd-6563570793b0","name":"users/residentEducation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","value":"{{APIclientID}}","type":"text"},{"key":"ts","value":"{{unixTimestamp}}","type":"text"},{"key":"type","value":"json","type":"text"},{"key":"request","value":"{\"userID\":97927}","type":"text","description":"example only"},{"key":"verify","value":"{{verificationStringHashed}}","type":"text"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentEducation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 May 2020 19:25:50 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"school_name\": \"University of Alabama School of Medicine\",\n        \"school_type\": 1,\n        \"school_code\": 102,\n        \"schoolID\": 1,\n        \"graduated\": 1,\n        \"date_attended_start\": \"2008-08-18\",\n        \"date_attended_end\": \"2012-04-20\",\n        \"school_degree\": \"B.A.\",\n        \"school_country\": null\n    },\n    {\n        \"school_name\": \"Test\",\n        \"school_type\": 2,\n        \"school_code\": 0,\n        \"schoolID\": 346,\n        \"graduated\": 1,\n        \"date_attended_start\": \"2013-05-01\",\n        \"date_attended_end\": \"2017-04-30\",\n        \"school_degree\": \"Ph.D.\",\n        \"school_country\": null\n    },\n    {\n        \"school_name\": \"Morehouse College\",\n        \"school_type\": 3,\n        \"school_code\": 0,\n        \"schoolID\": 349,\n        \"graduated\": 1,\n        \"date_attended_start\": \"2004-05-01\",\n        \"date_attended_end\": \"2008-04-30\",\n        \"school_degree\": \"B.S.\",\n        \"school_country\": null\n    }\n]"}],"_postman_id":"04b69b9e-8083-4d3a-8ef4-fd0a7517ab85"},{"name":"users/facultyAccess","id":"140fbc72-0639-43d7-93cd-37d90229ac93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\":116772,\"programs\":[{\"value\":890,\"default\":true},{\"value\":467}]}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/facultyAccess","description":"<p>Set faculty access to only the programs and courses/clerkships provided.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.21</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>programs</td>\n        <td>array</td>\n        <td>Yes</td>\n        <td>v1.21</td>\n        <td>Array of integers identifying the program(s) where faculty will be added. Use programs/all to get a list of all available programs</td>\n    </tr>\n    <tr>\n        <td>clerkships</td>\n        <td>array</td>\n        <td>Yes</td>\n        <td>v1.21</td>\n        <td>Array of integers identifying the course/clerkship(s) where faculty will be added. Use courses/all to get a list of all available courses/clerkships</td>\n        \n</tr></table>","urlObject":{"path":["users","facultyAccess"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"cbdb12e7-34fe-4a9c-afde-1cadcfdffa37","name":"users/facultyAccess","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":116772,\"programs\":[{\"value\":890,\"default\":true},{\"value\":467}]}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/facultyAccess"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 13 Apr 2020 13:17:56 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\"\n}"}],"_postman_id":"140fbc72-0639-43d7-93cd-37d90229ac93"},{"name":"users/userLookup","id":"fbc62269-8deb-4723-883f-dc39b6e46f4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"username\":\"Chung.Haas\",\"status\":\"inactive\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/studentSearch","description":"<p>Retrieves general user information given a unique identifier (MedHub userID).</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Yes</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>userID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique user identifer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>name_last</div><div><div><div><div></div></div></div><div></div></div></td><td><div>last name of user</div><div><div><div><div></div></div></div><div></div></div></td><td><div>text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>name_first</div><div><div><div><div></div></div></div><div></div></div></td><td><div>first name of user</div><div><div><div><div></div></div></div><div></div></div></td><td><div>text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>email</div><div><div><div><div></div></div></div><div></div></div></td><td><div>email address</div><div><div><div><div></div></div></div><div></div></div></td><td><div>text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>username</div><div><div><div><div></div></div></div><div></div></div></td><td><div>user's MedHub username</div><div><div><div><div></div></div></div><div></div></div></td><td><div>text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>employeeID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>user's employee ID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>user_type</div><div><div><div><div></div></div></div><div></div></div></td><td><div>user type ID assigned in MedHub</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>use users/userTypes to get a list of all user types</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>user_type_name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>defined user type name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>programID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifer of program</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Identifies current program of resident. <i>Note, if user is faculty this field identifies their primary program</i></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>program_name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>name of program (description of programID)</div><div><div><div><div></div></div></div><div></div></div></td><td><div>text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>1.07</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>courseID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier of course</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.07</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Identifies current course of student. <i>Note, if user is faculty this field identifies their primary course</i></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>course_name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>name of course (description of courseID)</div><div><div><div><div></div></div></div><div></div></div></td><td><div>text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.07</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>courses_all</div><div><div><div><div></div></div></div><div></div></div></td><td><div>all course associations</div><div><div><div><div></div></div></div><div></div></div></td><td><div>array</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.07</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Identifies all courses a student has been associated with. <i>Note, if user is faculty this array identifies all of their course assignments</i></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>resident_typeID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier of resident type</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use users/residentTypes to get all available resident types defined by the institution. This field will be left blank for all non-resident user types.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>resident_level</div><div><div><div><div></div></div></div><div></div></div></td><td><div>resident PGY level</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>This value will be left blank for all non-resident user types.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>user status</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Values: 0 = inactive, 1 = active</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>status_name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>user status description</div><div><div><div><div></div></div></div><div></div></div></td><td><div>text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>access</div><div><div><div><div></div></div></div><div></div></div></td><td><div>user access to system</div><div><div><div><div></div></div></div><div></div></div></td><td><div>integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Values: 0 = no access, 1 = access</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>access_name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>user access description</div><div><div><div><div></div></div></div><div></div></div></td><td><div>text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.02</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>photo_full_url</div><div><div><div><div></div></div></div><div></div></div></td><td><div>URL for full-resolution photo of user</div><div><div><div><div></div></div></div><div></div></div></td><td><div>text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.05</div><div><div><div><div></div></div></div><div></div></div></td><td><div>If no photo has been uploaded for the user, this field will be blank</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>photo_thumb_url</div><div><div><div><div></div></div></div><div></div></div></td><td><div>URL for thumbnail photo of user</div><div><div><div><div></div></div></div><div></div></div></td><td><div>text</div><div><div><div><div></div></div></div><div></div></div></td><td><div>v1.05</div><div><div><div><div></div></div></div><div></div></div></td><td><div>If no photo has been uploaded for the user, this field will be blank</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["users","studentSearch"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"766c3a4f-d9f0-41d9-b2a0-c13475f8256b","name":"users/userLookup","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\":98634}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/userLookup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 05 Mar 2021 15:00:41 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"userID\": \"98634\",\n    \"name_last\": \"Aashaw\",\n    \"name_first\": \"Mary\",\n    \"email\": \"demotest2@medhub.com\",\n    \"username\": \"tmpmdishaw\",\n    \"employeeID\": \"\",\n    \"user_type\": \"8\",\n    \"user_type_name\": \"Medical Student\",\n    \"programID\": \"\",\n    \"program_name\": \"\",\n    \"programs_all\": [],\n    \"courseID\": \"\",\n    \"course_name\": \"\",\n    \"courses_all\": [],\n    \"resident_typeID\": \"\",\n    \"resident_level\": \"\",\n    \"status\": \"1\",\n    \"status_name\": \"Active\",\n    \"access\": \"1\",\n    \"access_name\": \"Access\",\n    \"photo_full_url\": \"https://sandbox.medhub.com/files/photos/m/98634.jpg\",\n    \"photo_thumb_url\": \"https://sandbox.medhub.com/files/photos/m/98634sm.jpg\"\n}"}],"_postman_id":"fbc62269-8deb-4723-883f-dc39b6e46f4e"},{"name":"users/types","id":"35223482-37ec-4f76-963d-7bfa786f7af8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>no input required</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/types","description":"<p>Retrieves a list of the user types defined by for the institution.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>n/a</td>\n        <td></td>\n        <td></td>\n        <td></td>\n        <td></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>type_name</td>\n        <td>type of user</td>\n        <td>string</td>\n        <td>v0.90</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["users","types"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"205ccd5c-a35d-47df-ace4-e339b8408aff","name":"users/types","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"no input required","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 29 May 2020 18:39:51 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"usertype\": 1,\n        \"type_name\": \"Resident\"\n    },\n    {\n        \"usertype\": 2,\n        \"type_name\": \"Faculty Member\"\n    },\n    {\n        \"usertype\": 3,\n        \"type_name\": \"Administrator\"\n    },\n    {\n        \"usertype\": 4,\n        \"type_name\": \"Paging\"\n    },\n    {\n        \"usertype\": 5,\n        \"type_name\": \"GME Office\"\n    },\n    {\n        \"usertype\": 6,\n        \"type_name\": \"Hospital Finance\"\n    },\n    {\n        \"usertype\": 7,\n        \"type_name\": \"Read-Only\"\n    },\n    {\n        \"usertype\": 8,\n        \"type_name\": \"Medical Student\"\n    },\n    {\n        \"usertype\": 10,\n        \"type_name\": \"Project Manager\"\n    },\n    {\n        \"usertype\": 11,\n        \"type_name\": \"Information Technology\"\n    },\n    {\n        \"usertype\": 12,\n        \"type_name\": \"Student Admin\"\n    },\n    {\n        \"usertype\": 13,\n        \"type_name\": \"IRIS Auditor\"\n    },\n    {\n        \"usertype\": 14,\n        \"type_name\": \"Billing\"\n    },\n    {\n        \"usertype\": 18,\n        \"type_name\": \"Course Coordinator\"\n    }\n]"}],"_postman_id":"35223482-37ec-4f76-963d-7bfa786f7af8"},{"name":"users/residentTypes","id":"99526158-c60a-433a-a080-0fe609ccaf28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>no input required</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/residentTypes","description":"<p>Retrieves a list of the resident types defined by the GME Office.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>n/a</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>typeID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier for resident type</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>type_name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>name of resident type</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>visiting_flag</div><div><div><div><div></div></div></div><div></div></div></td><td><div>flags whether or not the resident type should identify assigned residents as visitors</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>Values:<br /></p><ul><li><div>0 = Not visiting type</div></li><li><div>1 = visiting type</div></li></ul></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["users","residentTypes"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"8fe6f9e7-05e5-4a72-8e43-606fa1cfd6c7","name":"users/residentTypes","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"no input required","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/Residenttypes"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Wed, 02 Jul 2025 15:51:28 GMT"},{"key":"Content-Type","value":"text/html;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!hNVxLc9e5XiVUqUqRqNhVZ9BpnNL5s387EiozIFHh6xNyoOhFjCRHTmXN5Tq2XufZ/YEZGy0NCSJ2go=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"958f4dffcf85218b-ORD"}],"cookie":[],"responseTime":null,"body":"[{\"typeID\":\"6\",\"type_name\":\"Chief Resident\",\"visiting_flag\":\"0\"},{\"typeID\":\"8\",\"type_name\":\"Counselor\",\"visiting_flag\":\"0\"},{\"typeID\":\"3\",\"type_name\":\"Fellow\",\"visiting_flag\":\"0\"},{\"typeID\":\"1\",\"type_name\":\"Intern\",\"visiting_flag\":\"0\"},{\"typeID\":\"9\",\"type_name\":\"Non-ACGME COVID\",\"visiting_flag\":\"0\"},{\"typeID\":\"5\",\"type_name\":\"Non-ACGME Trainee\",\"visiting_flag\":\"0\"},{\"typeID\":\"7\",\"type_name\":\"Non-ACGME Visitor\",\"visiting_flag\":\"1\"},{\"typeID\":\"2\",\"type_name\":\"Resident\",\"visiting_flag\":\"0\"},{\"typeID\":\"4\",\"type_name\":\"Visiting Resident\",\"visiting_flag\":\"1\"}]"}],"_postman_id":"99526158-c60a-433a-a080-0fe609ccaf28"},{"name":"users/studentTypes","id":"4d11b0a5-e6a2-4e60-9740-284d18f718e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>no input required</p>\n","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/studentTypes","description":"<p>Retrieves a list of the student types defined by the Dean's Office.</p>\n<h6 id=\"input-variables\">Input Variables</h6>\n<table><tbody><tr><th>Variable Name</th><th>Data Type</th><th>Required</th><th>Version</th><th>Notes</th></tr><tr><td><div>n/a</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>\n\n<h6 id=\"response-data\">Response Data</h6>\n<table><tbody><tr><th>Field Name</th><th>Description</th><th>Data Type</th><th>Version</th><th>Notes</th></tr><tr><td><div>typeID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifier for student type</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>type_name</div><div><div><div><div></div></div></div><div></div></div></td><td><div>name of student type</div><div><div><div><div></div></div></div><div></div></div></td><td><div>string</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>visiting_flag</div><div><div><div><div></div></div></div><div></div></div></td><td><div>flags whether or not the student type should identify assigned students as visitors</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>Values:<br /></p><ul><li><div>0 = Not visiting type</div></li><li><div>1 = visiting type</div></li></ul></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>schoolID</div><div><div><div><div></div></div></div><div></div></div></td><td><div>unique identifer for the school</div><div><div><div><div></div></div></div><div></div></div></td><td><div>int</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td><td><div>Use schools/access to lookup existing school information</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","urlObject":{"path":["users","studentTypes"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"3f0bfe08-e153-4430-841c-e74e0e7814d3","name":"users/studentTypes","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"no input required","key":"request","type":"text","value":""},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/studentTypes"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 15 Sep 2025 14:44:19 GMT"},{"key":"Content-Type","value":"text/html;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"CF-RAY","value":"97f8e6c0ffd8e133-ORD"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Set-Cookie","value":"Ascend_Session_Cookie=!A9cUsT0jFURI084qRqNhVZ9BpnNL5o3vd3F17Vb/xRBOc9fJg21xOEf6q1eQvWbpskAH3kghLloqdGU=; path=/; Httponly; Secure"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Server","value":"cloudflare"}],"cookie":[],"responseTime":null,"body":"[{\"typeID\":3,\"type_name\":\"MSPA\",\"visiting_flag\":0,\"schoolId\":1},{\"typeID\":1,\"type_name\":\"Student\",\"visiting_flag\":0,\"schoolId\":1},{\"typeID\":2,\"type_name\":\"Visiting Student\",\"visiting_flag\":1,\"schoolId\":1}]"}],"_postman_id":"4d11b0a5-e6a2-4e60-9740-284d18f718e3"},{"name":"users/deviceToken","id":"9f8813bd-ca4c-41e6-bb94-c485696211f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"userID\": \t \t85768,\"app\":\"ios_dutyhours\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/deviceToken","description":"<p>Retrieves a user's mobile device token.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>integer</td>\n        <td>Yes</td>\n        <td>v1.22</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>app</td>\n        <td>text</td>\n        <td>Yes</td>\n        <td>v1.22</td>\n        <td>MedHub app used: values = ios_dutyhours, or android_dutyhours</td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>UDID</td>\n        <td>unique device identifer</td>\n        <td>integer</td>\n        <td>v1.22</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>token</td>\n        <td>unique identifer for user and device</td>\n        <td>integer</td>\n        <td>v1.22</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["users","deviceToken"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"69e990f3-f361-44eb-a314-388c14888ed6","name":"users/deviceToken","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"userID\": \t97927,\"app\":\"ios_dutyhours\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/deviceToken"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 29 May 2020 19:37:07 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"UDID\": \"\",\n    \"token\": \"5fc4c1c4f512fd3ab1328bc9af5cc067adaf81810e80c2398a031738a8609eae\"\n}"}],"_postman_id":"9f8813bd-ca4c-41e6-bb94-c485696211f6"},{"name":"users/authenticate","id":"367f186b-9b5c-4d6d-b2f1-cd6f4e91c5fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"<p>example only</p>\n","key":"request","type":"text","value":"{\"username\":\"APIExample\",\"passkey\":\"eca2nmhj\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/authenticate","description":"<p>User authentication, get a userID and user type for a given username and external passkey.</p>\n<h6>Input Variables</h6>\n<table>\n    <tr>\n        <th>Variable Name</th>\n        <th>Data Type</th>\n        <th>Required</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>username</td>\n        <td>text</td>\n        <td>Yes</td>\n        <td>v1.22</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>passkey</td>\n        <td>text</td>\n        <td>Yes</td>\n        <td>v1.22</td>\n        <td>External passkey for given user. <em>Note, this key is found in user preferences</em></td>\n    </tr>\n</table>\n\n<h6>Response Data</h6>\n<table>\n    <tr>\n        <th>Field Name</th>\n        <th>Description</th>\n        <th>Data Type</th>\n        <th>Version</th>\n        <th>Notes</th>\n    </tr>\n    <tr>\n        <td>result</td>\n        <td></td>\n        <td></td>\n        <td>v1.22</td>\n        <td>HTTP success or error message will be returned</td>\n    </tr>\n    <tr>\n        <td>userID</td>\n        <td>unique identifer of user</td>\n        <td>integer</td>\n        <td>v1.22</td>\n        <td></td>\n    </tr>\n    <tr>\n        <td>usertype</td>\n        <td>unique identifer of user type</td>\n        <td>integer</td>\n        <td>v1.22</td>\n        <td>Values: 1 = resident, 2 = faculty</td>\n    </tr>\n    <tr>\n        <td>failure_type</td>\n        <td>failure code</td>\n        <td>text</td>\n        <td>v1.22</td>\n        <td>Values: <ul><li>F01 = no user with this username</li>\n        <li>F02 = incorrect passkey</li>\n        <li>F03 = user does not have access to MedHub</li></ul></td>\n    </tr>\n    <tr>\n        <td>failure_description</td>\n        <td>description of failure code</td>\n        <td>text</td>\n        <td>v1.22</td>\n        <td></td>\n    </tr>\n</table>","urlObject":{"path":["users","authenticate"],"host":["https://{yourURL}.medhub.com/functions/api"],"query":[],"variable":[]}},"response":[{"id":"7828ea0c-7d6f-40b5-b572-35d2f53f73ce","name":"users/authenticate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"clientID","type":"text","value":"{{APIclientID}}"},{"key":"ts","type":"text","value":"{{unixTimestamp}}"},{"key":"type","type":"text","value":"json"},{"description":"example only","key":"request","type":"text","value":"{\"username\":\"APIExample\",\"passkey\":\"eca2nmhj\"}"},{"key":"verify","type":"text","value":"{{verificationStringHashed}}"}]},"url":"https://{yourURL}.medhub.com/functions/api/users/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 29 May 2020 19:50:46 GMT"},{"key":"Server","value":"Apache"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"text/html;charset=UTF-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"userID\": 82869,\n    \"usertype\": 8,\n    \"failure_type\": \"\",\n    \"failure_description\": \"\"\n}"}],"_postman_id":"367f186b-9b5c-4d6d-b2f1-cd6f4e91c5fb"}],"id":"700378bb-f1b7-4be4-97b6-0768f5c7ddf6","_postman_id":"700378bb-f1b7-4be4-97b6-0768f5c7ddf6","description":""}],"event":[{"listen":"prerequest","script":{"id":"7008179b-8dda-4ed5-b461-f90cf70768f5","type":"text/javascript","exec":["let clientKey = pm.variables.get(\"clientKey\");","let clientID = pm.variables.get(\"clientID\");","","// for the requestInput, first look for url params, and if","// not present there, look in the form body.","var requestInput = request.data.request;","if (!requestInput && requestInput !== '') {","    requestInput = JSON.stringify(JSON.parse(request.data).request);","}","","var unixTimestamp = parseInt((new Date()).getTime() / 1000);","var verificationString = clientID + \"|\" + unixTimestamp + \"|\" + clientKey + \"|\" + requestInput;","console.debug(\"verificationString\", verificationString);","var verificationStringHashed = CryptoJS.SHA256(verificationString);","","postman.setGlobalVariable(\"unixTimestamp\", unixTimestamp);","postman.setGlobalVariable(\"verificationStringHashed\", verificationStringHashed);",""]}},{"listen":"test","script":{"id":"e3d7bce2-35b6-44f0-8ac9-73bd371b0aa9","type":"text/javascript","exec":[""]}}],"variable":[{"key":"siteURL","value":"https://{yourURL}.medhub.com/functions/api"},{"key":"clientID","value":"{{APIclientID}}"},{"key":"clientKey","value":"{{clientKey}}"}]}