Last active
April 25, 2017 16:37
-
-
Save bengolder/39a5196caab7c38a0dd5ee9c4d01c1e7 to your computer and use it in GitHub Desktop.
Status Notifications
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <style> | |
| body { | |
| margin: 0; padding: 0; | |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif; | |
| } | |
| main { | |
| padding: 1em 2em; | |
| } | |
| .day-row > td:first-child { | |
| min-width: 8rem; | |
| } | |
| svg { | |
| border: 1px solid #eee; | |
| } | |
| .sn-tool-tip { | |
| position: fixed; | |
| padding: 0.5em 1em; | |
| background-color: #fff; | |
| font-size: 12px; | |
| font-weight: 100; | |
| border: 2px solid #000; | |
| width: 15em; | |
| height: 54px; | |
| } | |
| .category { | |
| display: block; | |
| } | |
| .category:first-child { | |
| font-weight: 600; | |
| } | |
| .color-swatch { | |
| display: inline-block; | |
| width: 1em; | |
| height: 1em; | |
| } | |
| .category .label { | |
| margin-left: .5em; | |
| } | |
| </style> | |
| <main> | |
| <h1>Status Notification Analysis</h1> | |
| <p><em>February 2017 — April 2017</em></p> | |
| <div id="chart"></table> | |
| </main> | |
| <script src="https://d3js.org/d3.v4.min.js"></script> | |
| <script> | |
| function translate(x, y){ | |
| return 'translate('+x+','+y+')'; | |
| } | |
| function getCoords (elem) { | |
| var box = elem.getBoundingClientRect(); | |
| var top = box.top + document.documentElement.scrollTop; | |
| var left = box.left + document.documentElement.scrollLeft; | |
| return { top: Math.round(top), left: Math.round(left) }; | |
| } | |
| d3.json('status_updates.json', function(data){ | |
| // get timeline | |
| var timeFormat = d3.timeFormat('%-m/%-d'); | |
| var width = 1700; | |
| var yPadding = 50; | |
| var xPadding = 30; | |
| var squareSize = 12; | |
| var snHeight = squareSize * 0.6; | |
| var nextStepWidth = snHeight * 0.7; | |
| var noteToSelfWidth = nextStepWidth * 0.6; | |
| var dateExtent = d3.extent(data.map(function(d){ | |
| return d3.timeDay.floor(new Date(d.created)); | |
| })); | |
| var days = d3.timeDay.range(dateExtent[0], dateExtent[1]) | |
| var statusTypes = d3.set(data, function(d){return d.status_type;}) | |
| data.forEach(function(d){ | |
| d.next_steps.forEach(statusTypes.add, statusTypes)}); | |
| types = statusTypes.values() | |
| var typeToColor = d3.scaleOrdinal(d3.schemeCategory20); | |
| typeToColor.domain(types); | |
| function byStatusType(a, b){ | |
| return types.indexOf(a.status_type) - types.indexOf(b.status_type) | |
| } | |
| var xScale = d3.scaleTime() | |
| .domain(dateExtent) | |
| .range([0, width]) | |
| var editBarScale = d3.scaleLinear() | |
| .domain([0, 1.0]) | |
| .range([4, squareSize]) | |
| function byX(a, b){ | |
| return xScale(new Date(a.key)) - xScale(new Date(b.key)); | |
| } | |
| var xAxis = d3.axisBottom(xScale) | |
| .ticks(d3.timeDay.every(2)) | |
| .tickSize(3) | |
| .tickFormat(timeFormat); | |
| // get color scales for status types | |
| var orgNames = d3.set( | |
| data, function(d){return d.organization_name}).values().sort() | |
| var updatesByOrgAndDay = d3.nest() | |
| .key(function(d){ return d.organization_name }).sortKeys(d3.ascending) | |
| .key( | |
| function(d){ | |
| return d3.timeDay.floor(new Date(d.created))}).sortKeys(d3.ascending) | |
| .entries(data); | |
| var yScaleMap = d3.map(); | |
| var entryDiv = d3.select('#chart'); | |
| var body = d3.select('body'); | |
| var orgUsageCharts = entryDiv.selectAll('.org-usage-chart') | |
| .data(updatesByOrgAndDay).enter() | |
| .append('div') | |
| .attr('class', 'org-usage-chart') | |
| orgUsageCharts.append('h2') | |
| .text(function(d){return d.key}); | |
| var svg = orgUsageCharts.append('svg') | |
| .attr('width', width + (xPadding * 2)) | |
| .attr('height', function(org){ | |
| var maxCount = d3.max(org.values.map(function(day){ | |
| return day.values.length; | |
| })); | |
| org.maxDayCount = maxCount; | |
| var yScale = d3.scaleLinear() | |
| .domain([0, maxCount]) | |
| .range([maxCount * snHeight, 0]) | |
| yScaleMap.set(org.key, yScale); | |
| return (maxCount * snHeight) + yPadding;}) | |
| var chart = svg.append('g') | |
| .attr('class', 'chart-container') | |
| .attr('transform', translate(xPadding, 0)) | |
| var days = chart.selectAll('.day-stack') | |
| .data(function(org){ | |
| return org.values.sort(byX) }).enter() | |
| .append('g') | |
| .attr('class', function(day){ | |
| return 'day-stack ' + timeFormat(new Date(day.key)) | |
| }) | |
| .attr('transform', function(day){ | |
| return translate(xScale(d3.timeDay.floor(new Date(day.key))), 0)}); | |
| var statusNotifications = days.selectAll('.sn') | |
| .data(function(day){ | |
| return day.values.sort(byStatusType); | |
| }).enter() | |
| .append('g') | |
| .attr('class', 'sn') | |
| .attr('transform', | |
| function(sn, i){ | |
| return translate( | |
| 0, yScaleMap.get(sn.organization_name)(i)); | |
| }) | |
| statusNotifications.append('rect') | |
| .attr('class', 'status-type') | |
| .attr('fill', function(sn){return typeToColor(sn.status_type); }) | |
| .attr('width', squareSize) | |
| .attr('height', snHeight - 2) | |
| var editBars = statusNotifications.append('rect') | |
| .attr('class', 'edit-bar') | |
| .attr('fill', '#fff') | |
| .attr('width', function(sn){ | |
| var amount = 0; | |
| if(sn.notification){ | |
| if(sn.notification.message_change){ | |
| amount = editBarScale(sn.notification.message_change); | |
| } | |
| } | |
| return amount | |
| }) | |
| .attr('height', snHeight * 0.5) | |
| .attr('x', -1) | |
| .attr('y', -1) | |
| var notesToSelves = statusNotifications.selectAll('.notes-to-self') | |
| .data(function (sn) { | |
| var notes = [] | |
| if( | |
| sn.additional_information_length && | |
| !sn.additional_information_in_sent_message) { | |
| notes.push(1); | |
| } | |
| if( | |
| sn.other_next_step_length && | |
| !sn.other_next_step_in_sent_message) { | |
| notes.push(1); | |
| } | |
| return notes | |
| }).enter().append('rect') | |
| .attr('class', 'notes-to-self') | |
| .attr('fill', '#000') | |
| .attr('x', function(n, i){ | |
| return (noteToSelfWidth * (i + 1)) * -1 | |
| }).attr('width', noteToSelfWidth - 1) | |
| .attr('height', snHeight - 2) | |
| var nextSteps = statusNotifications.selectAll('.next-step') | |
| .data(function(sn){ return sn.next_steps}).enter() | |
| .append('rect') | |
| .attr('class', 'next-step') | |
| .attr('fill', typeToColor) | |
| .attr('x', function(n, i){ | |
| var shift = squareSize + 1; | |
| var delta = i * nextStepWidth; | |
| return shift + delta;}) | |
| .attr('width', nextStepWidth - 1) | |
| .attr('height', snHeight - 2) | |
| chart.append('g') | |
| .attr('transform', function(org){ | |
| return translate((squareSize * 0.4), (org.maxDayCount + 1) * snHeight) | |
| }) | |
| .call(xAxis) | |
| var toolTip; | |
| statusNotifications.on('mouseenter', function(sn, i, something){ | |
| if(!toolTip) { | |
| var coord = getCoords(this); | |
| toolTip = body.append('aside') | |
| .attr('class', 'sn-tool-tip') | |
| .style('top', (coord.top - 72) + 'px') | |
| .style('left', (coord.left - 180) + 'px') | |
| categories = toolTip.selectAll('.category') | |
| .data(function(){ | |
| return [sn.status_type].concat(sn.next_steps); | |
| }).enter() | |
| .append('span') | |
| .attr('class', 'category') | |
| categories.append('span') | |
| .attr('class', 'color-swatch') | |
| .style('background-color', typeToColor) | |
| categories.append('span') | |
| .attr('class', 'label') | |
| .text(String) | |
| } | |
| }) | |
| statusNotifications.on('mouseleave', function(sn, i){ | |
| if (toolTip){ | |
| toolTip.remove(); | |
| toolTip = null; | |
| } | |
| }) | |
| }) | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "id": 1, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.03125, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 48, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 2, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.03125, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 48, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 3, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.005235602094240788, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 4, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.06633906633906639, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 5, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 6, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 7, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.3221476510067114, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [ | |
| "Apply at another time" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 8, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.31986531986531985, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [ | |
| "Apply at another time" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 9, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.544, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 10, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.626984126984127, | |
| "was_edited": true | |
| }, | |
| "status_type": "Granted", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 11, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 12, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 13, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 14, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 15, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.3221476510067114, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 16, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.3221476510067114, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 17, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 18, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.4480874316939891, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 19, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.5276967930029155, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 20, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 21, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 22, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.6867030965391621, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation", | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 23, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 24, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 25, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.6867030965391621, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation", | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 26, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 27, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 28, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.001890359168241984, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 164, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 29, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.001890359168241984, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 164, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 30, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.001890359168241984, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 164, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 31, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 32, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.00520833333333337, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 33, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.001890359168241984, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 164, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 34, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 35, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.001890359168241984, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 164, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 36, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.00520833333333337, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 37, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.001890359168241984, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 164, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 38, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 39, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 40, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 41, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 42, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 43, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.001890359168241984, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 164, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 44, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 45, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 46, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.004366812227074246, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 128, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 47, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.00520833333333337, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 48, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 49, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 50, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 51, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 52, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.001890359168241984, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 164, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 53, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 54, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.001890359168241984, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 164, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 55, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 56, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.001890359168241984, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 164, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 57, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 58, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 59, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 60, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 61, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 62, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 63, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 64, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.001890359168241984, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 164, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 65, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.001890359168241984, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 164, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 66, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 67, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.001890359168241984, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 164, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 68, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.001890359168241984, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 164, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 69, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 70, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.00520833333333337, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 71, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 72, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 73, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 74, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 75, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 76, | |
| "created": "2017-02-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 77, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 78, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.0014306151645206988, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 249, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 79, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 80, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.3262032085561497, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 73, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 81, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0021505376344086446, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 176, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 82, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.2702702702702703, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 52, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 83, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.017021276595744705, | |
| "was_edited": true | |
| }, | |
| "status_type": "Granted", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 139, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 84, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0014347202295552641, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 248, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 85, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0014347202295552641, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 248, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 86, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 87, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0025974025974025983, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 136, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 88, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 89, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0034843205574912606, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 87, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 90, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0014347202295552641, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 248, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 91, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0013793103448276334, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 170, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 92, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.1523809523809524, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 170, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 93, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 94, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0014347202295552641, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 248, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 95, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0014347202295552641, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 248, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 96, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 97, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 98, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0014347202295552641, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 248, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 99, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0014347202295552641, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 248, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 100, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0014347202295552641, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 248, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 101, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0014347202295552641, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 248, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 102, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0014347202295552641, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 248, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 103, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.26112185686653777, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 66, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 104, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.34827586206896555, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 83, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 105, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0005803830528148257, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 761, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 106, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0010672358591248265, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 368, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 107, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 108, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 109, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 110, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 111, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 112, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 113, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 114, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 115, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.32015810276679846, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 116, | |
| "created": "2017-02-23", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 117, | |
| "created": "2017-02-24", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 118, | |
| "created": "2017-02-24", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 119, | |
| "created": "2017-02-24", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.24789915966386555, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 99, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 120, | |
| "created": "2017-02-26", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.68359375, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit letters of recommendation", | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 121, | |
| "created": "2017-02-26", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 122, | |
| "created": "2017-02-27", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0021505376344086446, | |
| "was_edited": true | |
| }, | |
| "status_type": "Granted", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 136, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 123, | |
| "created": "2017-02-27", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 124, | |
| "created": "2017-02-28", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.00952380952380949, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 170, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 125, | |
| "created": "2017-02-28", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.003831417624521105, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 51, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 126, | |
| "created": "2017-02-28", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.003076923076923088, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 68, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 127, | |
| "created": "2017-02-28", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.003984063745019917, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 46, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 128, | |
| "created": "2017-02-28", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0020618556701030855, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 148, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 129, | |
| "created": "2017-02-28", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0034602076124568004, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 65, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 130, | |
| "created": "2017-02-28", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0031347962382445305, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 65, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 131, | |
| "created": "2017-02-28", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.6730038022813688, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation", | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 132, | |
| "created": "2017-03-01", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.4159061277705346, | |
| "was_edited": true | |
| }, | |
| "status_type": "Granted", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results", | |
| "Contact us", | |
| "Apply at another time", | |
| "Other next steps" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 43, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 60, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 133, | |
| "created": "2017-03-01", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.15522388059701497, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 182, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 134, | |
| "created": "2017-03-01", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.002012072434607659, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 148, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 135, | |
| "created": "2017-03-01", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.001697792869269965, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 194, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 136, | |
| "created": "2017-03-02", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.556786703601108, | |
| "was_edited": true | |
| }, | |
| "status_type": "Court Date", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Contact us" | |
| ], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 43, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 137, | |
| "created": "2017-03-02", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.3277777777777777, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 41, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 138, | |
| "created": "2017-03-02", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.3959731543624161, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 33, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 139, | |
| "created": "2017-03-02", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 140, | |
| "created": "2017-03-03", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.21134020618556704, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date" | |
| ], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 46, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 141, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.005977796754910281, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 497, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 142, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.24467005076142134, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 259, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 143, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 144, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.0117647058823529, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 145, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.0019267822736031004, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 77, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 146, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.22406639004149376, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 106, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 147, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.18438761776581425, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [ | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 207, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 148, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 149, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0025062656641604564, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 104, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 150, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 151, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.7005545286506469, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results", | |
| "Contact us" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 152, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 153, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 154, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.005494505494505475, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 155, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.4473161033797217, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 58, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 156, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 157, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.003215434083601254, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 60, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 158, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 159, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 160, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 161, | |
| "created": "2017-03-06", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.002331002331002363, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 158, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 162, | |
| "created": "2017-03-07", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.005494505494505475, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 163, | |
| "created": "2017-03-07", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.09273182957393489, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 164, | |
| "created": "2017-03-07", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.6920152091254752, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 165, | |
| "created": "2017-03-09", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0034129692832765013, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 52, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 166, | |
| "created": "2017-03-09", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0017825311942959443, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 88, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 167, | |
| "created": "2017-03-09", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0034129692832765013, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 90, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 168, | |
| "created": "2017-03-09", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.3149425287356322, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 69, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 169, | |
| "created": "2017-03-09", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.3149425287356322, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 69, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 170, | |
| "created": "2017-03-09", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0031152647975077885, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 66, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 171, | |
| "created": "2017-03-10", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 172, | |
| "created": "2017-03-10", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 173, | |
| "created": "2017-03-10", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 174, | |
| "created": "2017-03-10", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.00520833333333337, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 175, | |
| "created": "2017-03-10", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.00520833333333337, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 176, | |
| "created": "2017-03-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.23809523809523814, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 177, | |
| "created": "2017-03-12", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.016483516483516536, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 178, | |
| "created": "2017-03-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.12463768115942031, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 179, | |
| "created": "2017-03-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 180, | |
| "created": "2017-03-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 181, | |
| "created": "2017-03-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.4581939799331104, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 182, | |
| "created": "2017-03-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.4581939799331104, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 183, | |
| "created": "2017-03-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.12039312039312045, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 184, | |
| "created": "2017-03-12", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.4581939799331104, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 185, | |
| "created": "2017-03-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.48416289592760176, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 186, | |
| "created": "2017-03-12", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.005494505494505475, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 187, | |
| "created": "2017-03-12", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.005494505494505475, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 188, | |
| "created": "2017-03-12", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.2597402597402597, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 189, | |
| "created": "2017-03-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.35260115606936415, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 190, | |
| "created": "2017-03-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.2450331125827815, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 191, | |
| "created": "2017-03-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.34883720930232553, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 192, | |
| "created": "2017-03-12", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.34883720930232553, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 193, | |
| "created": "2017-03-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.010526315789473717, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 194, | |
| "created": "2017-03-13", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.48571428571428577, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 195, | |
| "created": "2017-03-13", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.26436781609195403, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 196, | |
| "created": "2017-03-13", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 197, | |
| "created": "2017-03-13", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 198, | |
| "created": "2017-03-13", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.3977695167286245, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 199, | |
| "created": "2017-03-14", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.6684491978609626, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 200, | |
| "created": "2017-03-14", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 201, | |
| "created": "2017-03-14", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 202, | |
| "created": "2017-03-14", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 203, | |
| "created": "2017-03-14", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 204, | |
| "created": "2017-03-15", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 389, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 392, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 205, | |
| "created": "2017-03-15", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 206, | |
| "created": "2017-03-15", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 207, | |
| "created": "2017-03-15", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 129, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 208, | |
| "created": "2017-03-15", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 209, | |
| "created": "2017-03-15", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 210, | |
| "created": "2017-03-15", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.5648854961832062, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 211, | |
| "created": "2017-03-15", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.5648854961832062, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 212, | |
| "created": "2017-03-15", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.016483516483516536, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 213, | |
| "created": "2017-03-16", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.005494505494505475, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 214, | |
| "created": "2017-03-16", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 215, | |
| "created": "2017-03-16", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 216, | |
| "created": "2017-03-16", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.3465346534653465, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 217, | |
| "created": "2017-03-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.18103448275862066, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 218, | |
| "created": "2017-03-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.001808318264014508, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 176, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 219, | |
| "created": "2017-03-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 220, | |
| "created": "2017-03-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0013831258644536604, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 261, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 221, | |
| "created": "2017-03-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 222, | |
| "created": "2017-03-17", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.13539967373572592, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [ | |
| "Apply at another time" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 164, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 223, | |
| "created": "2017-03-17", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 224, | |
| "created": "2017-03-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.6082004555808656, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 225, | |
| "created": "2017-03-17", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 226, | |
| "created": "2017-03-17", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.3943661971830986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 227, | |
| "created": "2017-03-20", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.001941747572815511, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 201, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 228, | |
| "created": "2017-03-20", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 229, | |
| "created": "2017-03-20", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.018242122719734688, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 218, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 230, | |
| "created": "2017-03-20", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.4285714285714286, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 231, | |
| "created": "2017-03-20", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.23809523809523814, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 232, | |
| "created": "2017-03-20", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.44329896907216493, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 233, | |
| "created": "2017-03-20", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 234, | |
| "created": "2017-03-21", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 235, | |
| "created": "2017-03-21", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.4450867052023122, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [ | |
| "Other next steps" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 236, | |
| "created": "2017-03-21", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 237, | |
| "created": "2017-03-21", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0027100271002710175, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 105, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 238, | |
| "created": "2017-03-21", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.3310104529616724, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 239, | |
| "created": "2017-03-21", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.17748917748917747, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 240, | |
| "created": "2017-03-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.016483516483516536, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 241, | |
| "created": "2017-03-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.016483516483516536, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 242, | |
| "created": "2017-03-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.010526315789473717, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 243, | |
| "created": "2017-03-22", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.01320132013201325, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 217, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 244, | |
| "created": "2017-03-23", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.016483516483516536, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 245, | |
| "created": "2017-03-23", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.010526315789473717, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 246, | |
| "created": "2017-03-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.005494505494505475, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 247, | |
| "created": "2017-03-23", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.21126760563380287, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 248, | |
| "created": "2017-03-23", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.005494505494505475, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 249, | |
| "created": "2017-03-23", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 250, | |
| "created": "2017-03-23", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.5759162303664922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 251, | |
| "created": "2017-03-24", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0033222591362126463, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 56, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 252, | |
| "created": "2017-03-27", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.2887537993920972, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 253, | |
| "created": "2017-03-27", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.34246575342465757, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 254, | |
| "created": "2017-03-27", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.07428571428571429, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 648, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 255, | |
| "created": "2017-03-27", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.002331002331002363, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 22, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 256, | |
| "created": "2017-03-27", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.002680965147453085, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 92, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 257, | |
| "created": "2017-03-27", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Granted", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 118, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 258, | |
| "created": "2017-03-28", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.7231503579952268, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 259, | |
| "created": "2017-03-28", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0020618556701030855, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 186, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 260, | |
| "created": "2017-03-28", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.24894514767932485, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 121, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 261, | |
| "created": "2017-03-29", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 262, | |
| "created": "2017-03-29", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 263, | |
| "created": "2017-03-29", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.5390334572490707, | |
| "was_edited": true | |
| }, | |
| "status_type": "Granted", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 264, | |
| "created": "2017-03-29", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.3157894736842105, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 65, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 265, | |
| "created": "2017-03-29", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 266, | |
| "created": "2017-03-29", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.2827324478178368, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 71, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 267, | |
| "created": "2017-03-29", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0017421602787456303, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 219, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 268, | |
| "created": "2017-03-29", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 269, | |
| "created": "2017-03-29", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.00219780219780219, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 127, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 270, | |
| "created": "2017-03-29", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.001890359168241984, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 164, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 271, | |
| "created": "2017-03-29", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.00222717149220486, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 124, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 272, | |
| "created": "2017-03-29", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0022172949002217113, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 125, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 273, | |
| "created": "2017-03-29", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.001615508885298822, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 209, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 274, | |
| "created": "2017-03-29", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0016583747927031434, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 201, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 275, | |
| "created": "2017-03-29", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0017452006980802626, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 186, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 276, | |
| "created": "2017-03-30", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0030030030030030463, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 72, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 277, | |
| "created": "2017-03-30", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0030030030030030463, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 72, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 278, | |
| "created": "2017-03-30", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0033670033670033517, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 69, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 279, | |
| "created": "2017-03-30", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0033670033670033517, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 69, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 280, | |
| "created": "2017-03-30", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 281, | |
| "created": "2017-04-03", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.08321964529331516, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 194, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 282, | |
| "created": "2017-04-03", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.7878554957724827, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 283, | |
| "created": "2017-04-03", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.05777777777777782, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 977, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 284, | |
| "created": "2017-04-03", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.025322079075966286, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 1097, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 285, | |
| "created": "2017-04-03", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Granted", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 4, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 4, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 286, | |
| "created": "2017-04-03", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.024422442244224407, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 119, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 539, | |
| "other_next_step_in_sent_message": false | |
| }, | |
| { | |
| "id": 287, | |
| "created": "2017-04-03", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0008810572687224516, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 482, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 288, | |
| "created": "2017-04-03", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 77, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 446, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 289, | |
| "created": "2017-04-03", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.012658227848101222, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 95, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 290, | |
| "created": "2017-04-03", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0019342359767892114, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 158, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 291, | |
| "created": "2017-04-04", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.1821086261980831, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 128, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 292, | |
| "created": "2017-04-04", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0016638935108153063, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 108, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 293, | |
| "created": "2017-04-04", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0016103059581320522, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 118, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 294, | |
| "created": "2017-04-04", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.018549747048903886, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 414, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 295, | |
| "created": "2017-04-04", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0024449877750610804, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 110, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 296, | |
| "created": "2017-04-05", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.4794520547945206, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 297, | |
| "created": "2017-04-05", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 298, | |
| "created": "2017-04-05", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 299, | |
| "created": "2017-04-05", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.4571428571428572, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 300, | |
| "created": "2017-04-05", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 301, | |
| "created": "2017-04-05", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 302, | |
| "created": "2017-04-05", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 303, | |
| "created": "2017-04-05", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 304, | |
| "created": "2017-04-05", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 305, | |
| "created": "2017-04-05", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.010638297872340385, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 306, | |
| "created": "2017-04-05", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 307, | |
| "created": "2017-04-05", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.00241740531829171, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 537, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 308, | |
| "created": "2017-04-05", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.22974101921470347, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Other next steps" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 464, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 309, | |
| "created": "2017-04-05", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 310, | |
| "created": "2017-04-06", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.18426966292134828, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 311, | |
| "created": "2017-04-06", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 312, | |
| "created": "2017-04-06", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.25373134328358204, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 313, | |
| "created": "2017-04-06", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 314, | |
| "created": "2017-04-06", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 315, | |
| "created": "2017-04-07", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.025700259890268584, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 1690, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 316, | |
| "created": "2017-04-07", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.04754098360655734, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 582, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 317, | |
| "created": "2017-04-07", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 318, | |
| "created": "2017-04-07", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 319, | |
| "created": "2017-04-07", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 320, | |
| "created": "2017-04-07", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 321, | |
| "created": "2017-04-08", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Wait for court results" | |
| ], | |
| "organization_name": "Alameda County Public Defender's Office", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 322, | |
| "created": "2017-04-10", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.01098901098901095, | |
| "was_edited": true | |
| }, | |
| "status_type": "Granted", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 323, | |
| "created": "2017-04-10", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.22313084112149528, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation", | |
| "Contact us" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 606, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 324, | |
| "created": "2017-04-10", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.06297709923664119, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 981, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 325, | |
| "created": "2017-04-10", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.00520833333333337, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 326, | |
| "created": "2017-04-10", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.00520833333333337, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 327, | |
| "created": "2017-04-10", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.005076142131979711, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 42, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 328, | |
| "created": "2017-04-10", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0038910505836575737, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 72, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 329, | |
| "created": "2017-04-10", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.017857142857142905, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 330, | |
| "created": "2017-04-10", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.00520833333333337, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 331, | |
| "created": "2017-04-10", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.00520833333333337, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 332, | |
| "created": "2017-04-10", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.06434782608695655, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court results", | |
| "Apply at another time" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 968, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 333, | |
| "created": "2017-04-11", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.00520833333333337, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 334, | |
| "created": "2017-04-11", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.00520833333333337, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 335, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [ | |
| "Apply at another time" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 240, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 336, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [ | |
| "Apply at another time" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 347, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 337, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0011273957158962622, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 343, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 338, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.08333333333333337, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 75, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 222, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 339, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 340, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 341, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 266, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 342, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 343, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 75, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 403, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 344, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.0037174721189591198, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "East Bay Community Law Center", | |
| "additional_information_length": 575, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 345, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 255, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 346, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.010526315789473717, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "East Bay Community Law Center", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 347, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.025590551181102317, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 168, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 348, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.010526315789473717, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "East Bay Community Law Center", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 349, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0010111223458038054, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 394, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 350, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.03543307086614178, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Wait for court date", | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 224, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 351, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 208, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 352, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0017271157167529916, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 152, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 73, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 353, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.010526315789473717, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "East Bay Community Law Center", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 354, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.045395590142671804, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 185, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 355, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0018552875695733162, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 169, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 356, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.011425135297654876, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 158, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 329, | |
| "other_next_step_in_sent_message": false | |
| }, | |
| { | |
| "id": 357, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0015948963317384823, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 257, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 358, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.09556313993174059, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [ | |
| "Apply at another time" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 165, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 359, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.045304777594728174, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Other next steps" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 1159, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 360, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.1493428912783752, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 356, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 361, | |
| "created": "2017-04-12", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.3089579524680073, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 81, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 362, | |
| "created": "2017-04-13", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.19532163742690056, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Other next steps" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 188, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 688, | |
| "other_next_step_in_sent_message": false | |
| }, | |
| { | |
| "id": 363, | |
| "created": "2017-04-13", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 199, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 165, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 364, | |
| "created": "2017-04-13", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0011198208286674616, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 361, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 365, | |
| "created": "2017-04-13", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.23592814371257487, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 65, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 20, | |
| "other_next_step_in_sent_message": false | |
| }, | |
| { | |
| "id": 366, | |
| "created": "2017-04-13", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.479136690647482, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 149, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 367, | |
| "created": "2017-04-13", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.4946466809421841, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 382, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 368, | |
| "created": "2017-04-14", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 169, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 89, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 369, | |
| "created": "2017-04-14", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.3496503496503497, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 321, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 370, | |
| "created": "2017-04-14", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 171, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 79, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 371, | |
| "created": "2017-04-14", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 165, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 75, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 372, | |
| "created": "2017-04-14", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0013422818791946067, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 316, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 373, | |
| "created": "2017-04-14", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0014598540145985828, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 286, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 374, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 174, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 174, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 375, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0008643042350907626, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 493, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 376, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 377, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Granted", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 174, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 174, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 378, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 170, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 174, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 379, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 380, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0013140604467805073, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 324, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 381, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.000711743772242035, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 174, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 174, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 382, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 174, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 175, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 383, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 230, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 384, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0014598540145985828, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 257, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 385, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 172, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 175, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 386, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 174, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 175, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 387, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0019646365422396617, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 169, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 388, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 389, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 172, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 175, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 390, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0014224751066855834, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 295, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 391, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.001848428835489857, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 214, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 392, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.002624671916010457, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 134, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 393, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0019120458891013214, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 176, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 394, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0018691588785046953, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 182, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 395, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0018552875695733162, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 184, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 396, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 397, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 174, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 175, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 398, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [], | |
| "message_change": 0.0022471910112359383, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 166, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 399, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 174, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 175, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 400, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 401, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 402, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 403, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 404, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 405, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0019267822736031004, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 174, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 406, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 170, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 175, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 407, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0014598540145985828, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 286, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 408, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0014430014430014682, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 290, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 409, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.2514851485148515, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 60, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 410, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 174, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 175, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 411, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0008628127696289623, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 494, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 412, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0019047619047618536, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 206, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 413, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.001615508885298822, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 224, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 414, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0016051364365970988, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 255, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 415, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.002331002331002363, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 158, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 416, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 174, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 175, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 417, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0017452006980802626, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 230, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 418, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0008628127696289623, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 494, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 419, | |
| "created": "2017-04-17", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.009140767824497242, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 81, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 420, | |
| "created": "2017-04-18", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.00520833333333337, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 421, | |
| "created": "2017-04-18", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0033670033670033517, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 69, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 422, | |
| "created": "2017-04-18", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0033222591362126463, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 56, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 423, | |
| "created": "2017-04-18", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.005235602094240788, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 424, | |
| "created": "2017-04-18", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.005235602094240788, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 425, | |
| "created": "2017-04-18", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0015220700152207556, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 137, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 426, | |
| "created": "2017-04-18", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0025188916876573986, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 104, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 427, | |
| "created": "2017-04-18", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.001686340640809414, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 202, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 428, | |
| "created": "2017-04-18", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.001980198019801982, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 60, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 429, | |
| "created": "2017-04-18", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.564638783269962, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us", | |
| "Other next steps" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 352, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 430, | |
| "created": "2017-04-19", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 431, | |
| "created": "2017-04-19", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 432, | |
| "created": "2017-04-19", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.0014598540145985828, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 286, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 433, | |
| "created": "2017-04-20", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.6896807720861173, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 33, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 38, | |
| "other_next_step_in_sent_message": false | |
| }, | |
| { | |
| "id": 434, | |
| "created": "2017-04-20", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 435, | |
| "created": "2017-04-20", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.26990692864529475, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 436, | |
| "created": "2017-04-20", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit personal statement", | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 174, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 175, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 437, | |
| "created": "2017-04-20", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.0, | |
| "was_edited": false | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Submit letters of recommendation" | |
| ], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 176, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 175, | |
| "other_next_step_in_sent_message": true | |
| }, | |
| { | |
| "id": 438, | |
| "created": "2017-04-20", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.001814882032667886, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "Solano County Public Defender", | |
| "additional_information_length": 219, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 439, | |
| "created": "2017-04-20", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.604782882315922, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 252, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 440, | |
| "created": "2017-04-21", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.004149377593360981, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 41, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 441, | |
| "created": "2017-04-21", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.010638297872340385, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 442, | |
| "created": "2017-04-21", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.010638297872340385, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 443, | |
| "created": "2017-04-21", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.010638297872340385, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 444, | |
| "created": "2017-04-21", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.010638297872340385, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 445, | |
| "created": "2017-04-21", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.010638297872340385, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 446, | |
| "created": "2017-04-21", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.002004008016032066, | |
| "was_edited": true | |
| }, | |
| "status_type": "Not Eligible", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 149, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 447, | |
| "created": "2017-04-21", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.0034602076124568004, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "Fresno County Public Defender", | |
| "additional_information_length": 65, | |
| "additional_information_in_sent_message": true, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 448, | |
| "created": "2017-04-21", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.015625, | |
| "was_edited": true | |
| }, | |
| "status_type": "No Convictions", | |
| "next_steps": [], | |
| "organization_name": "Contra Costa Public Defender", | |
| "additional_information_length": 0, | |
| "additional_information_in_sent_message": null, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 449, | |
| "created": "2017-04-21", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.6750599520383693, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [ | |
| "Contact us", | |
| "Apply at another time" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 176, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 450, | |
| "created": "2017-04-21", | |
| "notification": { | |
| "contact_info": [ | |
| "sms", | |
| "email" | |
| ], | |
| "message_change": 0.7205029013539652, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 331, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 451, | |
| "created": "2017-04-21", | |
| "notification": { | |
| "contact_info": [ | |
| "sms" | |
| ], | |
| "message_change": 0.6869679109364768, | |
| "was_edited": true | |
| }, | |
| "status_type": "Can't Proceed", | |
| "next_steps": [ | |
| "Contact us" | |
| ], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 218, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| }, | |
| { | |
| "id": 452, | |
| "created": "2017-04-21", | |
| "notification": { | |
| "contact_info": [ | |
| "email" | |
| ], | |
| "message_change": 0.6730091613812543, | |
| "was_edited": true | |
| }, | |
| "status_type": "Eligible", | |
| "next_steps": [], | |
| "organization_name": "San Diego County Public Defender", | |
| "additional_information_length": 198, | |
| "additional_information_in_sent_message": false, | |
| "other_next_step_length": 0, | |
| "other_next_step_in_sent_message": null | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment