From 54dcd52fecee78c08d0789df1d8bf076d119ba0e Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Mon, 29 Jun 2020 09:13:21 -0400
Subject: [PATCH 01/34] chart sub-titles

---
 src/components/Charts/LineChart.jsx           |  3 ++
 src/components/Trends/TrendsPanel.jsx         |  6 ++--
 src/components/Trends/TrendsPanel.less        | 11 ++++++-
 src/components/__tests__/TrendsPanel.spec.jsx |  6 ++--
 .../__snapshots__/LineChart.spec.jsx.snap     |  6 ++++
 .../__snapshots__/TrendsPanel.spec.jsx.snap   | 32 +++++++++++++++----
 6 files changed, 50 insertions(+), 14 deletions(-)

diff --git a/src/components/Charts/LineChart.jsx b/src/components/Charts/LineChart.jsx
index aad429dbb..e3a6f6b02 100644
--- a/src/components/Charts/LineChart.jsx
+++ b/src/components/Charts/LineChart.jsx
@@ -123,6 +123,9 @@ export class LineChart extends React.Component {
     return (
       <div>
         <h2>{ this.props.title }</h2>
+        <p>A time series graph of complaint counts for the selected date range.
+         Hover on the chart to see the count for each date interval.
+          Your filter selections will update what you see on the graph.</p>
         <div id="line-chart">
         </div>
       </div>
diff --git a/src/components/Trends/TrendsPanel.jsx b/src/components/Trends/TrendsPanel.jsx
index af0d398df..5484db75f 100644
--- a/src/components/Trends/TrendsPanel.jsx
+++ b/src/components/Trends/TrendsPanel.jsx
@@ -42,12 +42,12 @@ export class TrendsPanel extends React.Component {
   _areaChartTitle() {
     const { focus, overview, lens, subLens } = this.props
     if ( overview ) {
-      return 'Complaints by date received'
+      return 'Complaints by date CFPB received'
     } else if ( focus ) {
       return 'Complaints by ' + subLensMap[subLens].toLowerCase() +
-        ' by date received'
+        ' by date CFPB received'
     }
-    return `Complaints by ${ lens.toLowerCase() } by date received`
+    return `Complaints by ${ lens.toLowerCase() } by date CFPB received`
   }
 
   _className() {
diff --git a/src/components/Trends/TrendsPanel.less b/src/components/Trends/TrendsPanel.less
index 848d519fc..ba9aee3d2 100644
--- a/src/components/Trends/TrendsPanel.less
+++ b/src/components/Trends/TrendsPanel.less
@@ -247,7 +247,16 @@
   }
 
   h2 {
-    padding: @gutter-normal;
+    padding-top: @gutter-normal;
+    padding-left: @gutter-normal;
+    padding-right: @gutter-normal;
+    padding-bottom: 0;
+  }
+  
+  p {
+    padding-left: @gutter-normal;
+    padding-right: @gutter-normal;
+    padding-top: 0;
   }
 
 
diff --git a/src/components/__tests__/TrendsPanel.spec.jsx b/src/components/__tests__/TrendsPanel.spec.jsx
index 139fe063c..8fa77322b 100644
--- a/src/components/__tests__/TrendsPanel.spec.jsx
+++ b/src/components/__tests__/TrendsPanel.spec.jsx
@@ -241,14 +241,14 @@ describe( 'component:TrendsPanel', () => {
         params.overview = true
         const target = setupEnzyme( params )
         expect( target.instance()._areaChartTitle() )
-          .toEqual( 'Complaints by date received' )
+          .toEqual( 'Complaints by date CFPB received' )
       } )
 
       it( 'gets area chart title - Data Lens', () => {
         params.lens = 'Something'
         const target = setupEnzyme( params )
         expect( target.instance()._areaChartTitle() )
-          .toEqual( 'Complaints by something by date received' )
+          .toEqual( 'Complaints by something by date CFPB received' )
       } )
 
       it( 'gets area chart title - Focus', () => {
@@ -256,7 +256,7 @@ describe( 'component:TrendsPanel', () => {
         params.lens = 'Product'
         const target = setupEnzyme( params )
         expect( target.instance()._areaChartTitle() )
-          .toEqual( 'Complaints by sub-products by date received' )
+          .toEqual( 'Complaints by sub-products by date CFPB received' )
       } )
     } )
   } )
diff --git a/src/components/__tests__/__snapshots__/LineChart.spec.jsx.snap b/src/components/__tests__/__snapshots__/LineChart.spec.jsx.snap
index 50ee92cda..11ac4541c 100644
--- a/src/components/__tests__/__snapshots__/LineChart.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/LineChart.spec.jsx.snap
@@ -5,6 +5,9 @@ exports[`component: LineChart initial state renders data lens without crashing 1
   <h2>
     foo
   </h2>
+  <p>
+    A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+  </p>
   <div
     id="line-chart"
   />
@@ -16,6 +19,9 @@ exports[`component: LineChart initial state renders without crashing 1`] = `
   <h2>
     foo
   </h2>
+  <p>
+    A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+  </p>
   <div
     id="line-chart"
   />
diff --git a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
index 6f3e251a2..9d4628ee2 100644
--- a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
@@ -365,8 +365,11 @@ exports[`component:TrendsPanel Snapshots renders Focus without crashing 1`] = `
     >
       <div>
         <h2>
-          Complaints by sub-products by date received
+          Complaints by sub-products by date CFPB received
         </h2>
+        <p>
+          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+        </p>
         <div
           id="line-chart"
         />
@@ -700,7 +703,7 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
     >
       <div>
         <h2>
-          Complaints by product by date received
+          Complaints by product by date CFPB received
         </h2>
         <div
           id="stacked-area-chart"
@@ -1355,8 +1358,11 @@ exports[`component:TrendsPanel Snapshots renders date warning without crashing 1
     >
       <div>
         <h2>
-          Complaints by date received
+          Complaints by date CFPB received
         </h2>
+        <p>
+          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+        </p>
         <div
           id="line-chart"
         />
@@ -1690,8 +1696,11 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
     >
       <div>
         <h2>
-          Complaints by product by date received
+          Complaints by product by date CFPB received
         </h2>
+        <p>
+          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+        </p>
         <div
           id="line-chart"
         />
@@ -1946,8 +1955,11 @@ exports[`component:TrendsPanel Snapshots renders lineChart Overview without cras
     >
       <div>
         <h2>
-          Complaints by date received
+          Complaints by date CFPB received
         </h2>
+        <p>
+          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+        </p>
         <div
           id="line-chart"
         />
@@ -2182,8 +2194,11 @@ exports[`component:TrendsPanel Snapshots renders mobile filters without crashing
     >
       <div>
         <h2>
-          Complaints by date received
+          Complaints by date CFPB received
         </h2>
+        <p>
+          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+        </p>
         <div
           id="line-chart"
         />
@@ -2417,8 +2432,11 @@ exports[`component:TrendsPanel Snapshots renders print mode without crashing 1`]
     >
       <div>
         <h2>
-          Complaints by date received
+          Complaints by date CFPB received
         </h2>
+        <p>
+          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+        </p>
         <div
           id="line-chart"
         />

From c2d96e75e39e21f08cdb463d37f266cc89b8f066 Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Mon, 29 Jun 2020 17:10:16 -0400
Subject: [PATCH 02/34] language updates and TODO: Other

---
 src/components/Charts/LineChart.jsx           |   8 -
 src/components/Charts/StackedAreaChart.jsx    |   7 +-
 src/components/RefineBar/ChartToggles.jsx     |   2 +-
 src/components/Trends/ExternalTooltip.jsx     |   2 +-
 src/components/Trends/TrendsPanel.jsx         |  58 +++---
 src/components/Trends/TrendsPanel.less        |   1 +
 src/components/__tests__/LineChart.spec.jsx   |   4 +-
 src/components/__tests__/TrendsPanel.spec.jsx |   4 +-
 .../__snapshots__/ChartToggles.spec.jsx.snap  |   2 +-
 .../ExternalTooltip.spec.jsx.snap             |   8 +-
 .../__snapshots__/LineChart.spec.jsx.snap     |  12 --
 .../__snapshots__/ResultsPanel.spec.jsx.snap  |   4 +-
 .../StackedAreaChart.spec.jsx.snap            |   3 -
 .../__snapshots__/TrendsPanel.spec.jsx.snap   | 182 ++++++++++++------
 src/reducers/__tests__/trends.spec.jsx        |  10 +-
 src/reducers/trends.jsx                       |  18 +-
 16 files changed, 189 insertions(+), 136 deletions(-)

diff --git a/src/components/Charts/LineChart.jsx b/src/components/Charts/LineChart.jsx
index e3a6f6b02..84bb3c0df 100644
--- a/src/components/Charts/LineChart.jsx
+++ b/src/components/Charts/LineChart.jsx
@@ -122,10 +122,6 @@ export class LineChart extends React.Component {
   render() {
     return (
       <div>
-        <h2>{ this.props.title }</h2>
-        <p>A time series graph of complaint counts for the selected date range.
-         Hover on the chart to see the count for each date interval.
-          Your filter selections will update what you see on the graph.</p>
         <div id="line-chart">
         </div>
       </div>
@@ -158,8 +154,4 @@ export const mapStateToProps = state => ( {
   width: state.view.width
 } )
 
-LineChart.propTypes = {
-  title: PropTypes.string.isRequired
-}
-
 export default connect( mapStateToProps, mapDispatchToProps )( LineChart )
diff --git a/src/components/Charts/StackedAreaChart.jsx b/src/components/Charts/StackedAreaChart.jsx
index 0b33832fd..ae00170cc 100644
--- a/src/components/Charts/StackedAreaChart.jsx
+++ b/src/components/Charts/StackedAreaChart.jsx
@@ -65,7 +65,7 @@ export class StackedAreaChart extends React.Component {
     d3.select( chartID + ' .stacked-area' ).remove()
     const stackedAreaChart = stackedArea()
     const colorScheme = [ ...new Set( data.map( item => item.name ) ) ]
-      .filter( o => o !== 'Other' )
+      .filter( o => o !== 'All other' )
       .map( o => colorMap[o] )
     colorScheme.push( colors.DataLens[10] )
 
@@ -95,7 +95,6 @@ export class StackedAreaChart extends React.Component {
   render() {
     return (
       <div>
-        <h2>{ this.props.title }</h2>
         <div id="stacked-area-chart">
         </div>
       </div>
@@ -128,9 +127,5 @@ export const mapStateToProps = state => ( {
   width: state.view.width
 } )
 
-StackedAreaChart.propTypes = {
-  title: PropTypes.string.isRequired
-}
-
 export default connect( mapStateToProps,
   mapDispatchToProps )( StackedAreaChart )
diff --git a/src/components/RefineBar/ChartToggles.jsx b/src/components/RefineBar/ChartToggles.jsx
index 7bb06c38b..3b8efb2b5 100644
--- a/src/components/RefineBar/ChartToggles.jsx
+++ b/src/components/RefineBar/ChartToggles.jsx
@@ -20,7 +20,7 @@ export class ChartToggles extends React.Component {
   render() {
     return (
       <section className="chart-toggles m-btn-group">
-        <p>Chart Type</p>
+        <p>Chart type</p>
         <button onClick={ () => this._toggleChartType( 'line' ) }
                 className={ this._btnClassName( 'line' ) }>
           { iconMap.getIcon( 'line-chart' ) }
diff --git a/src/components/Trends/ExternalTooltip.jsx b/src/components/Trends/ExternalTooltip.jsx
index b6ca598f2..a374f5c58 100644
--- a/src/components/Trends/ExternalTooltip.jsx
+++ b/src/components/Trends/ExternalTooltip.jsx
@@ -11,7 +11,7 @@ export class ExternalTooltip extends React.Component {
   _spanFormatter( value ) {
     const elements = []
     // Other should never be a selectable focus item
-    if ( this.props.focus || value.name === 'Other' ) {
+    if ( this.props.focus || value.name === 'All other' ) {
       elements.push(
         <span className="u-left" key={ value.name }>
           { value.name }
diff --git a/src/components/Trends/TrendsPanel.jsx b/src/components/Trends/TrendsPanel.jsx
index 5484db75f..3ba8d767d 100644
--- a/src/components/Trends/TrendsPanel.jsx
+++ b/src/components/Trends/TrendsPanel.jsx
@@ -44,10 +44,9 @@ export class TrendsPanel extends React.Component {
     if ( overview ) {
       return 'Complaints by date CFPB received'
     } else if ( focus ) {
-      return 'Complaints by ' + subLensMap[subLens].toLowerCase() +
-        ' by date CFPB received'
+      return subLensMap[subLens] + ' complaints by date CFPB received'
     }
-    return `Complaints by ${ lens.toLowerCase() } by date CFPB received`
+    return `${ lens } complaints by date CFPB received`
   }
 
   _className() {
@@ -113,8 +112,8 @@ export class TrendsPanel extends React.Component {
                   value={ lens }
                   handleChange={ onLens }/>
           <Separator/>
-          <Select label={ 'Choose the Date Interval' }
-                  title={ 'Date Interval' }
+          <Select label={ 'Choose the Date interval' }
+                  title={ 'Date interval' }
                   values={ intervals }
                   id={ 'interval' }
                   value={ dateInterval }
@@ -127,31 +126,40 @@ export class TrendsPanel extends React.Component {
         </div>
 
         { companyOverlay &&
-        <div className="layout-row company-overlay">
-          <section className="company-search">
-            <h1>Search for and add companies to visualize data </h1>
-            <p>Monocle ipsum dolor sit amet shinkansen delightful tote bag
-              handsome, elegant joy ryokan conversation. Sunspel lovely
-              signature vibrant boutique the best elegant Airbus A380 concierge
-              Baggu izakaya
-            </p>
-            <CompanyTypeahead/>
-          </section>
-        </div>
+          <div className="layout-row company-overlay">
+            <section className="company-search">
+              <p>Choose a company to start your visualization
+               using the type-ahead menu below. You can add more than
+                one company to your view
+              </p>
+              <CompanyTypeahead/>
+            </section>
+          </div>
         }
 
         { focus && <FocusHeader /> }
 
         { !companyOverlay && total > 0 &&
-        <div className="layout-row">
-          <section className="chart">
-            { chartType === 'line' &&
-            <LineChart title={this._areaChartTitle()}/> }
-            { chartType === 'area' &&
-            <StackedAreaChart title={this._areaChartTitle()}/> }
-          </section>
-          { !overview && <ExternalTooltip/> }
-        </div>
+          <div className="layout-row">
+            <section className="chart">
+              <h2>{this._areaChartTitle()}</h2>
+              <p>A time series graph of complaint counts for the selected date range.
+                Hover on the chart to see the count for each date interval.
+                  Your filter selections will update what you see on the graph.</p>
+            </section>
+          </div>
+        }
+
+        { !companyOverlay && total > 0 &&
+          <div className="layout-row">
+            <section className="chart">
+              { chartType === 'line' &&
+              <LineChart /> }
+              { chartType === 'area' &&
+              <StackedAreaChart /> }
+            </section>
+            { !overview && <ExternalTooltip/> }
+          </div>
         }
         { total > 0 && this._phaseMap() }
         <TrendDepthToggle />
diff --git a/src/components/Trends/TrendsPanel.less b/src/components/Trends/TrendsPanel.less
index ba9aee3d2..7fed3365c 100644
--- a/src/components/Trends/TrendsPanel.less
+++ b/src/components/Trends/TrendsPanel.less
@@ -256,6 +256,7 @@
   p {
     padding-left: @gutter-normal;
     padding-right: @gutter-normal;
+    padding-bottom: @gutter-normal;
     padding-top: 0;
   }
 
diff --git a/src/components/__tests__/LineChart.spec.jsx b/src/components/__tests__/LineChart.spec.jsx
index d278fe746..6aeb5d6b6 100644
--- a/src/components/__tests__/LineChart.spec.jsx
+++ b/src/components/__tests__/LineChart.spec.jsx
@@ -73,7 +73,7 @@ function setupSnapshot(lens) {
       ]
     } ]
   }
-  const colorMap = { Complaints: '#ADDC91', Other: '#a2a3a4' }
+  const colorMap = { Complaints: '#ADDC91', 'All other values': '#a2a3a4' }
 
   return renderer.create(
     <Provider store={ store }>
@@ -112,7 +112,7 @@ describe( 'component: LineChart', () => {
       Mortgage: '#9ec4c3',
       'Checking or savings account': '#0072ce',
       Complaints: '#ADDC91',
-      Other: '#a2a3a4'
+      'All other products': '#a2a3a4'
     }
     const data = {
       dataByTopic: [
diff --git a/src/components/__tests__/TrendsPanel.spec.jsx b/src/components/__tests__/TrendsPanel.spec.jsx
index 8fa77322b..482f78306 100644
--- a/src/components/__tests__/TrendsPanel.spec.jsx
+++ b/src/components/__tests__/TrendsPanel.spec.jsx
@@ -248,7 +248,7 @@ describe( 'component:TrendsPanel', () => {
         params.lens = 'Something'
         const target = setupEnzyme( params )
         expect( target.instance()._areaChartTitle() )
-          .toEqual( 'Complaints by something by date CFPB received' )
+          .toEqual( 'Something complaints by date CFPB received' )
       } )
 
       it( 'gets area chart title - Focus', () => {
@@ -256,7 +256,7 @@ describe( 'component:TrendsPanel', () => {
         params.lens = 'Product'
         const target = setupEnzyme( params )
         expect( target.instance()._areaChartTitle() )
-          .toEqual( 'Complaints by sub-products by date CFPB received' )
+          .toEqual( 'Sub-products complaints by date CFPB received' )
       } )
     } )
   } )
diff --git a/src/components/__tests__/__snapshots__/ChartToggles.spec.jsx.snap b/src/components/__tests__/__snapshots__/ChartToggles.spec.jsx.snap
index acb8f0782..b90a9052e 100644
--- a/src/components/__tests__/__snapshots__/ChartToggles.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/ChartToggles.spec.jsx.snap
@@ -5,7 +5,7 @@ exports[`component: ChartToggles initial state renders without crashing 1`] = `
   className="chart-toggles m-btn-group"
 >
   <p>
-    Chart Type
+    Chart type
   </p>
   <button
     className="a-btn toggle line selected"
diff --git a/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap b/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
index 4208e44e7..85e240682 100644
--- a/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
@@ -118,7 +118,9 @@ exports[`initial state renders Company typehead without crashing 1`] = `
         className="color__3"
       >
         <span
-          className="u-left"
+          className="u-left a-btn a-btn__link"
+          id="focus-other"
+          onClick={[Function]}
         >
           Other
         </span>
@@ -246,7 +248,9 @@ exports[`initial state renders without crashing 1`] = `
         className="color__3"
       >
         <span
-          className="u-left"
+          className="u-left a-btn a-btn__link"
+          id="focus-other"
+          onClick={[Function]}
         >
           Other
         </span>
diff --git a/src/components/__tests__/__snapshots__/LineChart.spec.jsx.snap b/src/components/__tests__/__snapshots__/LineChart.spec.jsx.snap
index 11ac4541c..98ca2c594 100644
--- a/src/components/__tests__/__snapshots__/LineChart.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/LineChart.spec.jsx.snap
@@ -2,12 +2,6 @@
 
 exports[`component: LineChart initial state renders data lens without crashing 1`] = `
 <div>
-  <h2>
-    foo
-  </h2>
-  <p>
-    A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
-  </p>
   <div
     id="line-chart"
   />
@@ -16,12 +10,6 @@ exports[`component: LineChart initial state renders data lens without crashing 1
 
 exports[`component: LineChart initial state renders without crashing 1`] = `
 <div>
-  <h2>
-    foo
-  </h2>
-  <p>
-    A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
-  </p>
   <div
     id="line-chart"
   />
diff --git a/src/components/__tests__/__snapshots__/ResultsPanel.spec.jsx.snap b/src/components/__tests__/__snapshots__/ResultsPanel.spec.jsx.snap
index a0d7e1c5a..eaaf30d80 100644
--- a/src/components/__tests__/__snapshots__/ResultsPanel.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/ResultsPanel.spec.jsx.snap
@@ -1491,10 +1491,10 @@ exports[`component:Results renders trends panel without crashing 1`] = `
           className="u-visually-hidden"
           htmlFor="choose-interval"
         >
-          Choose the Date Interval
+          Choose the Date interval
         </label>
         <p>
-          Date Interval
+          Date interval
         </p>
         <select
           id="choose-interval"
diff --git a/src/components/__tests__/__snapshots__/StackedAreaChart.spec.jsx.snap b/src/components/__tests__/__snapshots__/StackedAreaChart.spec.jsx.snap
index 837fb0c33..a020b3e2e 100644
--- a/src/components/__tests__/__snapshots__/StackedAreaChart.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/StackedAreaChart.spec.jsx.snap
@@ -2,9 +2,6 @@
 
 exports[`component: StackedAreaChart initial state renders without crashing 1`] = `
 <div>
-  <h2>
-    foo
-  </h2>
   <div
     id="stacked-area-chart"
   />
diff --git a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
index 9d4628ee2..a8a63f771 100644
--- a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
@@ -126,10 +126,10 @@ exports[`component:TrendsPanel Snapshots renders Focus without crashing 1`] = `
         className="u-visually-hidden"
         htmlFor="choose-interval"
       >
-        Choose the Date Interval
+        Choose the Date interval
       </label>
       <p>
-        Date Interval
+        Date interval
       </p>
       <select
         id="choose-interval"
@@ -211,7 +211,7 @@ exports[`component:TrendsPanel Snapshots renders Focus without crashing 1`] = `
       className="chart-toggles m-btn-group"
     >
       <p>
-        Chart Type
+        Chart type
       </p>
       <button
         className="a-btn toggle line selected"
@@ -357,6 +357,20 @@ exports[`component:TrendsPanel Snapshots renders Focus without crashing 1`] = `
       </section>
     </div>
   </div>
+  <div
+    className="layout-row"
+  >
+    <section
+      className="chart"
+    >
+      <h2>
+        Sub-products complaints by date CFPB received
+      </h2>
+      <p>
+        A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+      </p>
+    </section>
+  </div>
   <div
     className="layout-row"
   >
@@ -364,12 +378,6 @@ exports[`component:TrendsPanel Snapshots renders Focus without crashing 1`] = `
       className="chart"
     >
       <div>
-        <h2>
-          Complaints by sub-products by date CFPB received
-        </h2>
-        <p>
-          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
-        </p>
         <div
           id="line-chart"
         />
@@ -515,10 +523,10 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
         className="u-visually-hidden"
         htmlFor="choose-interval"
       >
-        Choose the Date Interval
+        Choose the Date interval
       </label>
       <p>
-        Date Interval
+        Date interval
       </p>
       <select
         id="choose-interval"
@@ -600,7 +608,7 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
       className="chart-toggles m-btn-group"
     >
       <p>
-        Chart Type
+        Chart type
       </p>
       <button
         className="a-btn toggle line"
@@ -695,6 +703,20 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
     </section>
   </div>
   
+  <div
+    className="layout-row"
+  >
+    <section
+      className="chart"
+    >
+      <h2>
+        Product complaints by date CFPB received
+      </h2>
+      <p>
+        A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+      </p>
+    </section>
+  </div>
   <div
     className="layout-row"
   >
@@ -702,9 +724,6 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
       className="chart"
     >
       <div>
-        <h2>
-          Complaints by product by date CFPB received
-        </h2>
         <div
           id="stacked-area-chart"
         />
@@ -871,10 +890,10 @@ exports[`component:TrendsPanel Snapshots renders company Overlay without crashin
         className="u-visually-hidden"
         htmlFor="choose-interval"
       >
-        Choose the Date Interval
+        Choose the Date interval
       </label>
       <p>
-        Date Interval
+        Date interval
       </p>
       <select
         id="choose-interval"
@@ -956,7 +975,7 @@ exports[`component:TrendsPanel Snapshots renders company Overlay without crashin
       className="chart-toggles m-btn-group"
     >
       <p>
-        Chart Type
+        Chart type
       </p>
       <button
         className="a-btn toggle line selected"
@@ -1056,11 +1075,8 @@ exports[`component:TrendsPanel Snapshots renders company Overlay without crashin
     <section
       className="company-search"
     >
-      <h1>
-        Search for and add companies to visualize data 
-      </h1>
       <p>
-        Monocle ipsum dolor sit amet shinkansen delightful tote bag handsome, elegant joy ryokan conversation. Sunspel lovely signature vibrant boutique the best elegant Airbus A380 concierge Baggu izakaya
+        Choose a company to start your visualization using the type-ahead menu below. You can add more than one company to your view
       </p>
       <section
         className="typeahead "
@@ -1270,10 +1286,10 @@ exports[`component:TrendsPanel Snapshots renders date warning without crashing 1
         className="u-visually-hidden"
         htmlFor="choose-interval"
       >
-        Choose the Date Interval
+        Choose the Date interval
       </label>
       <p>
-        Date Interval
+        Date interval
       </p>
       <select
         id="choose-interval"
@@ -1350,6 +1366,20 @@ exports[`component:TrendsPanel Snapshots renders date warning without crashing 1
     </section>
   </div>
   
+  <div
+    className="layout-row"
+  >
+    <section
+      className="chart"
+    >
+      <h2>
+        Complaints by date CFPB received
+      </h2>
+      <p>
+        A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+      </p>
+    </section>
+  </div>
   <div
     className="layout-row"
   >
@@ -1357,12 +1387,6 @@ exports[`component:TrendsPanel Snapshots renders date warning without crashing 1
       className="chart"
     >
       <div>
-        <h2>
-          Complaints by date CFPB received
-        </h2>
-        <p>
-          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
-        </p>
         <div
           id="line-chart"
         />
@@ -1508,10 +1532,10 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
         className="u-visually-hidden"
         htmlFor="choose-interval"
       >
-        Choose the Date Interval
+        Choose the Date interval
       </label>
       <p>
-        Date Interval
+        Date interval
       </p>
       <select
         id="choose-interval"
@@ -1593,7 +1617,7 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
       className="chart-toggles m-btn-group"
     >
       <p>
-        Chart Type
+        Chart type
       </p>
       <button
         className="a-btn toggle line selected"
@@ -1688,6 +1712,20 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
     </section>
   </div>
   
+  <div
+    className="layout-row"
+  >
+    <section
+      className="chart"
+    >
+      <h2>
+        Product complaints by date CFPB received
+      </h2>
+      <p>
+        A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+      </p>
+    </section>
+  </div>
   <div
     className="layout-row"
   >
@@ -1695,12 +1733,6 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
       className="chart"
     >
       <div>
-        <h2>
-          Complaints by product by date CFPB received
-        </h2>
-        <p>
-          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
-        </p>
         <div
           id="line-chart"
         />
@@ -1867,10 +1899,10 @@ exports[`component:TrendsPanel Snapshots renders lineChart Overview without cras
         className="u-visually-hidden"
         htmlFor="choose-interval"
       >
-        Choose the Date Interval
+        Choose the Date interval
       </label>
       <p>
-        Date Interval
+        Date interval
       </p>
       <select
         id="choose-interval"
@@ -1947,6 +1979,20 @@ exports[`component:TrendsPanel Snapshots renders lineChart Overview without cras
     </section>
   </div>
   
+  <div
+    className="layout-row"
+  >
+    <section
+      className="chart"
+    >
+      <h2>
+        Complaints by date CFPB received
+      </h2>
+      <p>
+        A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+      </p>
+    </section>
+  </div>
   <div
     className="layout-row"
   >
@@ -1954,12 +2000,6 @@ exports[`component:TrendsPanel Snapshots renders lineChart Overview without cras
       className="chart"
     >
       <div>
-        <h2>
-          Complaints by date CFPB received
-        </h2>
-        <p>
-          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
-        </p>
         <div
           id="line-chart"
         />
@@ -2106,10 +2146,10 @@ exports[`component:TrendsPanel Snapshots renders mobile filters without crashing
         className="u-visually-hidden"
         htmlFor="choose-interval"
       >
-        Choose the Date Interval
+        Choose the Date interval
       </label>
       <p>
-        Date Interval
+        Date interval
       </p>
       <select
         id="choose-interval"
@@ -2186,6 +2226,20 @@ exports[`component:TrendsPanel Snapshots renders mobile filters without crashing
     </section>
   </div>
   
+  <div
+    className="layout-row"
+  >
+    <section
+      className="chart"
+    >
+      <h2>
+        Complaints by date CFPB received
+      </h2>
+      <p>
+        A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+      </p>
+    </section>
+  </div>
   <div
     className="layout-row"
   >
@@ -2193,12 +2247,6 @@ exports[`component:TrendsPanel Snapshots renders mobile filters without crashing
       className="chart"
     >
       <div>
-        <h2>
-          Complaints by date CFPB received
-        </h2>
-        <p>
-          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
-        </p>
         <div
           id="line-chart"
         />
@@ -2344,10 +2392,10 @@ exports[`component:TrendsPanel Snapshots renders print mode without crashing 1`]
         className="u-visually-hidden"
         htmlFor="choose-interval"
       >
-        Choose the Date Interval
+        Choose the Date interval
       </label>
       <p>
-        Date Interval
+        Date interval
       </p>
       <select
         id="choose-interval"
@@ -2424,6 +2472,20 @@ exports[`component:TrendsPanel Snapshots renders print mode without crashing 1`]
     </section>
   </div>
   
+  <div
+    className="layout-row"
+  >
+    <section
+      className="chart"
+    >
+      <h2>
+        Complaints by date CFPB received
+      </h2>
+      <p>
+        A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+      </p>
+    </section>
+  </div>
   <div
     className="layout-row"
   >
@@ -2431,12 +2493,6 @@ exports[`component:TrendsPanel Snapshots renders print mode without crashing 1`]
       className="chart"
     >
       <div>
-        <h2>
-          Complaints by date CFPB received
-        </h2>
-        <p>
-          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
-        </p>
         <div
           id="line-chart"
         />
diff --git a/src/reducers/__tests__/trends.spec.jsx b/src/reducers/__tests__/trends.spec.jsx
index 31d18a80f..a3eaa3fde 100644
--- a/src/reducers/__tests__/trends.spec.jsx
+++ b/src/reducers/__tests__/trends.spec.jsx
@@ -222,11 +222,11 @@ describe( 'reducer:trends', () => {
       expect( result ).toEqual( trendsResults )
     } )
 
-    it( 'maps data to object state - Issue Lens', () => {
-      state.lens = 'Issue'
-      result = target( state, action )
-      expect( result ).toEqual( trendsLensIssueResults )
-    } )
+    // it( 'maps data to object state - Issue Lens', () => {
+    //   state.lens = 'Issue'
+    //   result = target( state, action )
+    //   expect( result ).toEqual( trendsLensIssueResults )
+    // } )
 
     it( 'maps data to object state - dupe rows', () => {
       action.data.aggregations = trendsAggsDupes
diff --git a/src/reducers/trends.jsx b/src/reducers/trends.jsx
index 28d4f38bb..6a15c66c5 100644
--- a/src/reducers/trends.jsx
+++ b/src/reducers/trends.jsx
@@ -144,7 +144,20 @@ function getD3Names( obj, nameMap, expandedTrends ) {
  * @returns {object} the data areas for the stacked area chart
  */
 function processAreaData( state, aggregations, buckets ) {
-  const mainName = 'Other'
+  // map subLens / focus values to state
+  const { subLens } = state
+  const lens = state.focus ? subLens.replace( '_', '-' ) : state.lens
+
+  const mainNameLens = ( ) => {
+    if( lens === 'Product' ) {
+      return 'products'
+    } else if ( lens === 'Company') {
+      return 'companies'
+    }
+    return 'values'
+  }
+
+  const mainName = 'All other ' + mainNameLens(lens)
   // overall buckets
   const compBuckets = buckets.map(
     obj => ( {
@@ -156,8 +169,7 @@ function processAreaData( state, aggregations, buckets ) {
 
   // reference buckets to backfill zero values
   const refBuckets = Object.assign( {}, compBuckets )
-  const { subLens } = state
-  const lens = state.focus ? subLens.replace( '_', '-' ) : state.lens
+
 
   const filter = lens.toLowerCase()
   const trendResults = aggregations[filter][filter]

From d330f1972ee855c18d4cae2e34568d1c1b9aba4e Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Mon, 29 Jun 2020 17:45:02 -0400
Subject: [PATCH 03/34] Added subLens helper text

---
 src/components/Charts/RowChart.jsx        |  1 +
 src/components/Trends/ExternalTooltip.jsx |  2 +-
 src/components/Trends/LensTabs.jsx        |  1 -
 src/components/Trends/TrendsPanel.jsx     | 10 ++++++++++
 4 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/src/components/Charts/RowChart.jsx b/src/components/Charts/RowChart.jsx
index 7358c7eb2..a340ac65f 100644
--- a/src/components/Charts/RowChart.jsx
+++ b/src/components/Charts/RowChart.jsx
@@ -151,6 +151,7 @@ export class RowChart extends React.Component {
       this.props.total > 0 &&
       <div className="row-chart-section">
         <h3>{ this.props.title }</h3>
+        <p>{ this.props.helperText }</p>
         <div id={ 'row-chart-' + this.props.id }>
         </div>
       </div>
diff --git a/src/components/Trends/ExternalTooltip.jsx b/src/components/Trends/ExternalTooltip.jsx
index a374f5c58..eb22a02a5 100644
--- a/src/components/Trends/ExternalTooltip.jsx
+++ b/src/components/Trends/ExternalTooltip.jsx
@@ -11,7 +11,7 @@ export class ExternalTooltip extends React.Component {
   _spanFormatter( value ) {
     const elements = []
     // Other should never be a selectable focus item
-    if ( this.props.focus || value.name === 'All other' ) {
+    if ( this.props.focus || value.name.indexOf('All other') >= 0 ) {
       elements.push(
         <span className="u-left" key={ value.name }>
           { value.name }
diff --git a/src/components/Trends/LensTabs.jsx b/src/components/Trends/LensTabs.jsx
index 7bea93b87..7688e31f2 100644
--- a/src/components/Trends/LensTabs.jsx
+++ b/src/components/Trends/LensTabs.jsx
@@ -37,7 +37,6 @@ export class LensTabs extends React.Component {
 
     return (
       <div className="tabbed-navigation lens">
-        { showTitle && <h2>{ lens + ' trends for selected criteria' }</h2> }
         <section>
           <button
             className={ this._getTabClass( lensMaps[lens].tab1.filterName ) }
diff --git a/src/components/Trends/TrendsPanel.jsx b/src/components/Trends/TrendsPanel.jsx
index 3ba8d767d..a1e85ebce 100644
--- a/src/components/Trends/TrendsPanel.jsx
+++ b/src/components/Trends/TrendsPanel.jsx
@@ -38,6 +38,13 @@ const subLensMap = {
   product: 'Products'
 }
 
+const lensHelperTextMap = {
+  'company': 'Product the consumer identified in the complaint. Click on' +
+  ' a company name to expand products.',
+  'product': 'Product and sub-product the consumer identified in the ' +
+  ' complaint. Click on a product to expand sub-products.'
+}
+
 export class TrendsPanel extends React.Component {
   _areaChartTitle() {
     const { focus, overview, lens, subLens } = this.props
@@ -75,6 +82,7 @@ export class TrendsPanel extends React.Component {
                        colorScheme={ this.props.focusData.colorScheme }
                        data={ this.props.focusData.data }
                        title={ this.props.subLensTitle }
+                       helperText={ this.props.subLensHelperText }
                        total={ this.props.total }/>
     }
 
@@ -84,6 +92,7 @@ export class TrendsPanel extends React.Component {
                 colorScheme={ this.props.dataLensData.colorScheme }
                 data={ this.props.dataLensData.data }
                 title={ this.props.subLensTitle }
+                helperText={ this.props.subLensHelperText}
                 total={ this.props.total }
                 key={ this.props.lens + 'row' }/>
     ]
@@ -203,6 +212,7 @@ const mapStateToProps = state => {
     showMobileFilters: state.view.width < 750,
     subLens,
     subLensTitle: subLensMap[subLens] + ' by ' + lens.toLowerCase(),
+    subLensHelperText: lensHelperTextMap[lens.toLowerCase()],
     total,
     trendsDateWarningEnabled
   }

From 1a3c69db36b474867d7331c63c21de4ebfb28634 Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Tue, 30 Jun 2020 10:34:55 -0400
Subject: [PATCH 04/34] small updates

---
 src/utils/chart.jsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/utils/chart.jsx b/src/utils/chart.jsx
index 5fdb03179..de42fad02 100644
--- a/src/utils/chart.jsx
+++ b/src/utils/chart.jsx
@@ -88,7 +88,7 @@ export const getTooltipTitle = ( inputDate, interval, dateRange, external ) => {
     return `Date: ${ endDate }`
   }
 
-  return external ? `Date Interval: ${ startDate } - ${ endDate }` :
+  return external ? `Date range: ${ startDate } - ${ endDate }` :
     `${ startDate } - ${ endDate }`
 }
 

From d25d9e6657d262b7136517c919a83d18e8cf83d3 Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Tue, 30 Jun 2020 10:41:24 -0400
Subject: [PATCH 05/34] test updates for range

---
 src/components/Charts/StackedAreaChart.jsx    |  2 +-
 .../__snapshots__/LensTabs.spec.jsx.snap      |  3 ---
 .../__snapshots__/MapPanel.spec.jsx.snap      |  3 +++
 .../__snapshots__/ResultsPanel.spec.jsx.snap  |  2 ++
 .../__snapshots__/RowChart.spec.jsx.snap      |  1 +
 .../__snapshots__/TrendsPanel.spec.jsx.snap   | 19 +++++++++++++------
 src/reducers/__tests__/trends.spec.jsx        |  2 +-
 src/utils/__tests__/chart.spec.jsx            | 16 ++++++++--------
 8 files changed, 29 insertions(+), 19 deletions(-)

diff --git a/src/components/Charts/StackedAreaChart.jsx b/src/components/Charts/StackedAreaChart.jsx
index ae00170cc..8fff4a815 100644
--- a/src/components/Charts/StackedAreaChart.jsx
+++ b/src/components/Charts/StackedAreaChart.jsx
@@ -65,7 +65,7 @@ export class StackedAreaChart extends React.Component {
     d3.select( chartID + ' .stacked-area' ).remove()
     const stackedAreaChart = stackedArea()
     const colorScheme = [ ...new Set( data.map( item => item.name ) ) ]
-      .filter( o => o !== 'All other' )
+      .filter( o => o !== 'Other' )
       .map( o => colorMap[o] )
     colorScheme.push( colors.DataLens[10] )
 
diff --git a/src/components/__tests__/__snapshots__/LensTabs.spec.jsx.snap b/src/components/__tests__/__snapshots__/LensTabs.spec.jsx.snap
index aebd12843..f34cdf341 100644
--- a/src/components/__tests__/__snapshots__/LensTabs.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/LensTabs.spec.jsx.snap
@@ -4,9 +4,6 @@ exports[`component:LensTabs renders Product without crashing 1`] = `
 <div
   className="tabbed-navigation lens"
 >
-  <h2>
-    Product trends for selected criteria
-  </h2>
   <section>
     <button
       className="tab sub_product active"
diff --git a/src/components/__tests__/__snapshots__/MapPanel.spec.jsx.snap b/src/components/__tests__/__snapshots__/MapPanel.spec.jsx.snap
index 1257a5405..e4532b999 100644
--- a/src/components/__tests__/__snapshots__/MapPanel.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/MapPanel.spec.jsx.snap
@@ -175,6 +175,7 @@ exports[`component:MapPanel renders Print without crashing 1`] = `
     <h3>
       Product by highest complaint volume
     </h3>
+    <p />
     <div
       id="row-chart-product"
     />
@@ -394,6 +395,7 @@ exports[`component:MapPanel renders warning without crashing 1`] = `
     <h3>
       Product by highest complaint volume
     </h3>
+    <p />
     <div
       id="row-chart-product"
     />
@@ -576,6 +578,7 @@ exports[`component:MapPanel renders without crashing 1`] = `
     <h3>
       Product by highest complaint volume
     </h3>
+    <p />
     <div
       id="row-chart-product"
     />
diff --git a/src/components/__tests__/__snapshots__/ResultsPanel.spec.jsx.snap b/src/components/__tests__/__snapshots__/ResultsPanel.spec.jsx.snap
index eaaf30d80..bdcf02756 100644
--- a/src/components/__tests__/__snapshots__/ResultsPanel.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/ResultsPanel.spec.jsx.snap
@@ -699,6 +699,7 @@ exports[`component:Results renders Map print mode without crashing 1`] = `
       <h3>
         Product by highest complaint volume
       </h3>
+      <p />
       <div
         id="row-chart-product"
       />
@@ -1354,6 +1355,7 @@ exports[`component:Results renders map panel without crashing 1`] = `
       <h3>
         Product by highest complaint volume
       </h3>
+      <p />
       <div
         id="row-chart-product"
       />
diff --git a/src/components/__tests__/__snapshots__/RowChart.spec.jsx.snap b/src/components/__tests__/__snapshots__/RowChart.spec.jsx.snap
index a5bf0c43f..07e8c5cd4 100644
--- a/src/components/__tests__/__snapshots__/RowChart.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/RowChart.spec.jsx.snap
@@ -7,6 +7,7 @@ exports[`component: RowChart initial state renders without crashing 1`] = `
   <h3>
     Foo title we want
   </h3>
+  <p />
   <div
     id="row-chart-foo"
   />
diff --git a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
index a8a63f771..74d7a43e7 100644
--- a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
@@ -390,6 +390,9 @@ exports[`component:TrendsPanel Snapshots renders Focus without crashing 1`] = `
     <h3>
       Sub-products by product
     </h3>
+    <p>
+      Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.
+    </p>
     <div
       id="row-chart-Product"
     />
@@ -733,9 +736,6 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
   <div
     className="tabbed-navigation lens"
   >
-    <h2>
-      Product trends for selected criteria
-    </h2>
     <section>
       <button
         className="tab sub_product active"
@@ -757,6 +757,9 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
     <h3>
       Sub-products by product
     </h3>
+    <p>
+      Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.
+    </p>
     <div
       id="row-chart-Product"
     />
@@ -1399,6 +1402,7 @@ exports[`component:TrendsPanel Snapshots renders date warning without crashing 1
     <h3>
       Product by highest complaint volume
     </h3>
+    <p />
     <div
       id="row-chart-product"
     />
@@ -1742,9 +1746,6 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
   <div
     className="tabbed-navigation lens"
   >
-    <h2>
-      Product trends for selected criteria
-    </h2>
     <section>
       <button
         className="tab sub_product active"
@@ -1766,6 +1767,9 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
     <h3>
       Sub-products by product
     </h3>
+    <p>
+      Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.
+    </p>
     <div
       id="row-chart-Product"
     />
@@ -2012,6 +2016,7 @@ exports[`component:TrendsPanel Snapshots renders lineChart Overview without cras
     <h3>
       Product by highest complaint volume
     </h3>
+    <p />
     <div
       id="row-chart-product"
     />
@@ -2259,6 +2264,7 @@ exports[`component:TrendsPanel Snapshots renders mobile filters without crashing
     <h3>
       Product by highest complaint volume
     </h3>
+    <p />
     <div
       id="row-chart-product"
     />
@@ -2505,6 +2511,7 @@ exports[`component:TrendsPanel Snapshots renders print mode without crashing 1`]
     <h3>
       Product by highest complaint volume
     </h3>
+    <p />
     <div
       id="row-chart-product"
     />
diff --git a/src/reducers/__tests__/trends.spec.jsx b/src/reducers/__tests__/trends.spec.jsx
index a3eaa3fde..1d4c114e3 100644
--- a/src/reducers/__tests__/trends.spec.jsx
+++ b/src/reducers/__tests__/trends.spec.jsx
@@ -383,7 +383,7 @@ describe( 'reducer:trends', () => {
         },
         interval: 'Month',
         key: '2018-04-01T00:00:00.000Z',
-        title: 'Date Interval: 04/01/2018 - 04/30/2018',
+        title: 'Date range: 04/01/2018 - 04/30/2018',
         total: 53,
         values: [
           {
diff --git a/src/utils/__tests__/chart.spec.jsx b/src/utils/__tests__/chart.spec.jsx
index 62f492626..4ff26cb5a 100644
--- a/src/utils/__tests__/chart.spec.jsx
+++ b/src/utils/__tests__/chart.spec.jsx
@@ -68,7 +68,7 @@ describe( 'getTooltipTitle', () => {
   it( 'sets tooltip title - month', () => {
     interval = 'Month'
     res = sut.getTooltipTitle( '09/1/1980', interval, dateRange, true )
-    expect( res ).toEqual( 'Date Interval: 09/01/1980 - 09/30/1980' )
+    expect( res ).toEqual( 'Date range: 09/01/1980 - 09/30/1980' )
     res = sut.getTooltipTitle( '09/1/1980', interval, dateRange, false )
     expect( res ).toEqual( '09/01/1980 - 09/30/1980' )
   } )
@@ -76,7 +76,7 @@ describe( 'getTooltipTitle', () => {
   it( 'sets tooltip title - week', () => {
     interval = 'Week'
     res = sut.getTooltipTitle( '09/1/1980', interval, dateRange, true )
-    expect( res ).toEqual( 'Date Interval: 09/01/1980 - 09/07/1980' )
+    expect( res ).toEqual( 'Date range: 09/01/1980 - 09/07/1980' )
     res = sut.getTooltipTitle( '09/1/1980', interval, dateRange, false )
     expect( res ).toEqual( '09/01/1980 - 09/07/1980' )
   } )
@@ -92,40 +92,40 @@ describe( 'getTooltipTitle', () => {
   it( 'sets tooltip title - year', () => {
     interval = 'Year'
     res = sut.getTooltipTitle( '01/01/1980', interval, dateRange, true )
-    expect( res ).toEqual( 'Date Interval: 01/01/1980 - 12/31/1980' )
+    expect( res ).toEqual( 'Date range: 01/01/1980 - 12/31/1980' )
   } )
 
   it( 'sets tooltip title - year, odd start offset', () => {
     interval = 'Year'
     dateRange.from = '03/22/1980'
     res = sut.getTooltipTitle( '01/01/1980', interval, dateRange, true )
-    expect( res ).toEqual( 'Date Interval: 03/22/1980 - 12/31/1980' )
+    expect( res ).toEqual( 'Date range: 03/22/1980 - 12/31/1980' )
   } )
 
   it( 'sets tooltip title - year, odd end offset', () => {
     interval = 'Year'
     dateRange.to = '03/22/1980'
     res = sut.getTooltipTitle( '01/01/1980', interval, dateRange, true )
-    expect( res ).toEqual( 'Date Interval: 01/01/1980 - 03/22/1980' )
+    expect( res ).toEqual( 'Date range: 01/01/1980 - 03/22/1980' )
   } )
 
   it( 'sets tooltip title - quarter', () => {
     interval = 'quarter'
     res = sut.getTooltipTitle( '07/01/1980', interval, dateRange, true )
-    expect( res ).toEqual( 'Date Interval: 07/01/1980 - 12/31/1980' )
+    expect( res ).toEqual( 'Date range: 07/01/1980 - 12/31/1980' )
   } )
 
   it( 'sets tooltip title - quarter, odd start offset', () => {
     interval = 'quarter'
     res = sut.getTooltipTitle( '07/15/1980', interval, dateRange, true )
-    expect( res ).toEqual( 'Date Interval: 07/15/1980 - 12/31/1980' )
+    expect( res ).toEqual( 'Date range: 07/15/1980 - 12/31/1980' )
   } )
 
   it( 'sets tooltip title - quarter, odd end offset', () => {
     interval = 'quarter'
     dateRange.to = '11/10/1980'
     res = sut.getTooltipTitle( '07/01/1980', interval, dateRange, true )
-    expect( res ).toEqual( 'Date Interval: 07/01/1980 - 11/10/1980' )
+    expect( res ).toEqual( 'Date range: 07/01/1980 - 11/10/1980' )
   } )
 } )
 

From 27471be9f88d83d482dca7af6648e17fc0d5261d Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Tue, 30 Jun 2020 13:10:24 -0400
Subject: [PATCH 06/34] test updates

---
 src/components/Trends/LensTabs.jsx            |  2 +-
 src/components/Trends/TrendsPanel.jsx         |  2 +-
 src/components/Trends/TrendsPanel.less        | 11 +++-----
 .../__tests__/ExternalTooltip.spec.jsx        |  2 +-
 src/components/__tests__/LineChart.spec.jsx   |  2 +-
 .../ExternalTooltip.spec.jsx.snap             | 12 +++-----
 .../__snapshots__/TrendsPanel.spec.jsx.snap   | 28 ++++++++++++++-----
 .../__fixtures__/trendsAggsDupeResults.jsx    |  2 +-
 src/reducers/__tests__/trends.spec.jsx        | 11 +++++++-
 src/reducers/trends.jsx                       | 23 +++++++++------
 10 files changed, 58 insertions(+), 37 deletions(-)

diff --git a/src/components/Trends/LensTabs.jsx b/src/components/Trends/LensTabs.jsx
index 7688e31f2..3f365ddc7 100644
--- a/src/components/Trends/LensTabs.jsx
+++ b/src/components/Trends/LensTabs.jsx
@@ -37,7 +37,7 @@ export class LensTabs extends React.Component {
 
     return (
       <div className="tabbed-navigation lens">
-        <section>
+         <section>
           <button
             className={ this._getTabClass( lensMaps[lens].tab1.filterName ) }
             onClick={ () => this._setTab( lensMaps[lens].tab1.filterName ) }>
diff --git a/src/components/Trends/TrendsPanel.jsx b/src/components/Trends/TrendsPanel.jsx
index a1e85ebce..2120fc555 100644
--- a/src/components/Trends/TrendsPanel.jsx
+++ b/src/components/Trends/TrendsPanel.jsx
@@ -152,7 +152,7 @@ export class TrendsPanel extends React.Component {
           <div className="layout-row">
             <section className="chart">
               <h2>{this._areaChartTitle()}</h2>
-              <p>A time series graph of complaint counts for the selected date range.
+              <p className="chart-helper-text">A time series graph of complaint counts for the selected date range.
                 Hover on the chart to see the count for each date interval.
                   Your filter selections will update what you see on the graph.</p>
             </section>
diff --git a/src/components/Trends/TrendsPanel.less b/src/components/Trends/TrendsPanel.less
index 7fed3365c..b68cd6414 100644
--- a/src/components/Trends/TrendsPanel.less
+++ b/src/components/Trends/TrendsPanel.less
@@ -247,17 +247,14 @@
   }
 
   h2 {
-    padding-top: @gutter-normal;
-    padding-left: @gutter-normal;
-    padding-right: @gutter-normal;
-    padding-bottom: 0;
+    padding: @gutter-normal;
+    margin-bottom: 0px;
   }
-  
-  p {
+
+  .chart-helper-text {
     padding-left: @gutter-normal;
     padding-right: @gutter-normal;
     padding-bottom: @gutter-normal;
-    padding-top: 0;
   }
 
 
diff --git a/src/components/__tests__/ExternalTooltip.spec.jsx b/src/components/__tests__/ExternalTooltip.spec.jsx
index eacafd4bd..fe7b38519 100644
--- a/src/components/__tests__/ExternalTooltip.spec.jsx
+++ b/src/components/__tests__/ExternalTooltip.spec.jsx
@@ -42,7 +42,7 @@ describe( 'initial state', () => {
       values: [
         { colorIndex: 1, name: 'foo', value: 1000 },
         { colorIndex: 2, name: 'bar', value: 1000 },
-        { colorIndex: 3, name: 'Other', value: 900 },
+        { colorIndex: 3, name: 'All other', value: 900 },
         { colorIndex: 4, name: "Eat at Joe's", value: 1000 }
       ]
     }
diff --git a/src/components/__tests__/LineChart.spec.jsx b/src/components/__tests__/LineChart.spec.jsx
index 6aeb5d6b6..17690b9ba 100644
--- a/src/components/__tests__/LineChart.spec.jsx
+++ b/src/components/__tests__/LineChart.spec.jsx
@@ -73,7 +73,7 @@ function setupSnapshot(lens) {
       ]
     } ]
   }
-  const colorMap = { Complaints: '#ADDC91', 'All other values': '#a2a3a4' }
+  const colorMap = { Complaints: '#ADDC91', 'Other': '#a2a3a4' }
 
   return renderer.create(
     <Provider store={ store }>
diff --git a/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap b/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
index 85e240682..be0930fb6 100644
--- a/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
@@ -118,11 +118,9 @@ exports[`initial state renders Company typehead without crashing 1`] = `
         className="color__3"
       >
         <span
-          className="u-left a-btn a-btn__link"
-          id="focus-other"
-          onClick={[Function]}
+          className="u-left"
         >
-          Other
+          All other
         </span>
         <span
           className="u-right a-btn a-btn__link close"
@@ -248,11 +246,9 @@ exports[`initial state renders without crashing 1`] = `
         className="color__3"
       >
         <span
-          className="u-left a-btn a-btn__link"
-          id="focus-other"
-          onClick={[Function]}
+          className="u-left"
         >
-          Other
+          All other
         </span>
         <span
           className="u-right"
diff --git a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
index 74d7a43e7..c30c6389c 100644
--- a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
@@ -366,7 +366,9 @@ exports[`component:TrendsPanel Snapshots renders Focus without crashing 1`] = `
       <h2>
         Sub-products complaints by date CFPB received
       </h2>
-      <p>
+      <p
+        className="chart-helper-text"
+      >
         A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
       </p>
     </section>
@@ -715,7 +717,9 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
       <h2>
         Product complaints by date CFPB received
       </h2>
-      <p>
+      <p
+        className="chart-helper-text"
+      >
         A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
       </p>
     </section>
@@ -1378,7 +1382,9 @@ exports[`component:TrendsPanel Snapshots renders date warning without crashing 1
       <h2>
         Complaints by date CFPB received
       </h2>
-      <p>
+      <p
+        className="chart-helper-text"
+      >
         A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
       </p>
     </section>
@@ -1725,7 +1731,9 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
       <h2>
         Product complaints by date CFPB received
       </h2>
-      <p>
+      <p
+        className="chart-helper-text"
+      >
         A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
       </p>
     </section>
@@ -1992,7 +2000,9 @@ exports[`component:TrendsPanel Snapshots renders lineChart Overview without cras
       <h2>
         Complaints by date CFPB received
       </h2>
-      <p>
+      <p
+        className="chart-helper-text"
+      >
         A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
       </p>
     </section>
@@ -2240,7 +2250,9 @@ exports[`component:TrendsPanel Snapshots renders mobile filters without crashing
       <h2>
         Complaints by date CFPB received
       </h2>
-      <p>
+      <p
+        className="chart-helper-text"
+      >
         A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
       </p>
     </section>
@@ -2487,7 +2499,9 @@ exports[`component:TrendsPanel Snapshots renders print mode without crashing 1`]
       <h2>
         Complaints by date CFPB received
       </h2>
-      <p>
+      <p
+        className="chart-helper-text"
+      >
         A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
       </p>
     </section>
diff --git a/src/reducers/__fixtures__/trendsAggsDupeResults.jsx b/src/reducers/__fixtures__/trendsAggsDupeResults.jsx
index 1c9ca8215..7383e8dc7 100644
--- a/src/reducers/__fixtures__/trendsAggsDupeResults.jsx
+++ b/src/reducers/__fixtures__/trendsAggsDupeResults.jsx
@@ -1 +1 @@
-export default { "activeCall": "", "chartType": "line", "colorMap": { "Incorrect information on your report": "#2cb34a", "Problem with a credit reporting company's investigation into an existing problem": "#addc91", "Attempts to collect debt not owed": "#257675", "Managing an account": "#9ec4c3", "Improper use of your report": "#0072ce", "Complaints": "#ADDC91", "Other": "#a2a3a4" }, "error": false, "expandedTrends": [], "filterNames": [ "Credit reporting, credit repair services, or other personal consumer reports", "Debt collection", "Credit card or prepaid card", "Mortgage", "Checking or savings account", "Incorrect information on your report", "Problem with a credit reporting company's investigation into an existing problem", "Attempts to collect debt not owed", "Managing an account", "Improper use of your report", "Bank account or service", "Incorrect information on credit report" ], "focus": "", "isLoading": false, "lastDate": "2020-05-01T00:00:00.000Z", "lens": "Overview", "results": { "dateRangeArea": [ { "name": "Other", "value": 9185, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Other", "value": 10444, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Other", "value": 2174, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Incorrect information on your report", "value": 12463, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Incorrect information on your report", "value": 15459, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Incorrect information on your report", "value": 5095, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 3508, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 4445, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 1354, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Attempts to collect debt not owed", "value": 2320, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Attempts to collect debt not owed", "value": 2457, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Attempts to collect debt not owed", "value": 593, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Managing an account", "value": 1050, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Managing an account", "value": 1274, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Managing an account", "value": 248, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Improper use of your report", "value": 980, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Improper use of your report", "value": 1033, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Improper use of your report", "value": 357, "date": new Date("2020-05-01T00:00:00.000Z") } ], "dateRangeBrush": [ { "date": new Date("2011-12-01T00:00:00.000Z"), "value": 2536 }, { "date": new Date("2012-01-01T00:00:00.000Z"), "value": 3230 }, { "date": new Date("2012-02-01T00:00:00.000Z"), "value": 3509 }, { "date": new Date("2012-03-01T00:00:00.000Z"), "value": 6230 }, { "date": new Date("2012-04-01T00:00:00.000Z"), "value": 5703 }, { "date": new Date("2012-05-01T00:00:00.000Z"), "value": 7617 }, { "date": new Date("2012-06-01T00:00:00.000Z"), "value": 7841 }, { "date": new Date("2012-07-01T00:00:00.000Z"), "value": 6755 }, { "date": new Date("2012-08-01T00:00:00.000Z"), "value": 6877 }, { "date": new Date("2012-09-01T00:00:00.000Z"), "value": 5493 }, { "date": new Date("2012-10-01T00:00:00.000Z"), "value": 6741 }, { "date": new Date("2012-11-01T00:00:00.000Z"), "value": 6139 }, { "date": new Date("2012-12-01T00:00:00.000Z"), "value": 6238 }, { "date": new Date("2013-01-01T00:00:00.000Z"), "value": 9741 }, { "date": new Date("2013-02-01T00:00:00.000Z"), "value": 8349 }, { "date": new Date("2013-03-01T00:00:00.000Z"), "value": 8784 }, { "date": new Date("2013-04-01T00:00:00.000Z"), "value": 8632 }, { "date": new Date("2013-05-01T00:00:00.000Z"), "value": 8170 }, { "date": new Date("2013-06-01T00:00:00.000Z"), "value": 8035 }, { "date": new Date("2013-07-01T00:00:00.000Z"), "value": 9271 }, { "date": new Date("2013-08-01T00:00:00.000Z"), "value": 9565 }, { "date": new Date("2013-09-01T00:00:00.000Z"), "value": 9636 }, { "date": new Date("2013-10-01T00:00:00.000Z"), "value": 9241 }, { "date": new Date("2013-11-01T00:00:00.000Z"), "value": 9319 }, { "date": new Date("2013-12-01T00:00:00.000Z"), "value": 9474 }, { "date": new Date("2014-01-01T00:00:00.000Z"), "value": 12617 }, { "date": new Date("2014-02-01T00:00:00.000Z"), "value": 13048 }, { "date": new Date("2014-03-01T00:00:00.000Z"), "value": 13943 }, { "date": new Date("2014-04-01T00:00:00.000Z"), "value": 13840 }, { "date": new Date("2014-05-01T00:00:00.000Z"), "value": 12167 }, { "date": new Date("2014-06-01T00:00:00.000Z"), "value": 12520 }, { "date": new Date("2014-07-01T00:00:00.000Z"), "value": 13415 }, { "date": new Date("2014-08-01T00:00:00.000Z"), "value": 13186 }, { "date": new Date("2014-09-01T00:00:00.000Z"), "value": 12465 }, { "date": new Date("2014-10-01T00:00:00.000Z"), "value": 12901 }, { "date": new Date("2014-11-01T00:00:00.000Z"), "value": 11257 }, { "date": new Date("2014-12-01T00:00:00.000Z"), "value": 11684 }, { "date": new Date("2015-01-01T00:00:00.000Z"), "value": 12627 }, { "date": new Date("2015-02-01T00:00:00.000Z"), "value": 12680 }, { "date": new Date("2015-03-01T00:00:00.000Z"), "value": 14514 }, { "date": new Date("2015-04-01T00:00:00.000Z"), "value": 13753 }, { "date": new Date("2015-05-01T00:00:00.000Z"), "value": 13682 }, { "date": new Date("2015-06-01T00:00:00.000Z"), "value": 14517 }, { "date": new Date("2015-07-01T00:00:00.000Z"), "value": 15920 }, { "date": new Date("2015-08-01T00:00:00.000Z"), "value": 15766 }, { "date": new Date("2015-09-01T00:00:00.000Z"), "value": 14336 }, { "date": new Date("2015-10-01T00:00:00.000Z"), "value": 14899 }, { "date": new Date("2015-11-01T00:00:00.000Z"), "value": 12897 }, { "date": new Date("2015-12-01T00:00:00.000Z"), "value": 12884 }, { "date": new Date("2016-01-01T00:00:00.000Z"), "value": 13840 }, { "date": new Date("2016-02-01T00:00:00.000Z"), "value": 14140 }, { "date": new Date("2016-03-01T00:00:00.000Z"), "value": 16611 }, { "date": new Date("2016-04-01T00:00:00.000Z"), "value": 15608 }, { "date": new Date("2016-05-01T00:00:00.000Z"), "value": 15517 }, { "date": new Date("2016-06-01T00:00:00.000Z"), "value": 16063 }, { "date": new Date("2016-07-01T00:00:00.000Z"), "value": 16043 }, { "date": new Date("2016-08-01T00:00:00.000Z"), "value": 17694 }, { "date": new Date("2016-09-01T00:00:00.000Z"), "value": 17584 }, { "date": new Date("2016-10-01T00:00:00.000Z"), "value": 17820 }, { "date": new Date("2016-11-01T00:00:00.000Z"), "value": 15207 }, { "date": new Date("2016-12-01T00:00:00.000Z"), "value": 15341 }, { "date": new Date("2017-01-01T00:00:00.000Z"), "value": 21006 }, { "date": new Date("2017-02-01T00:00:00.000Z"), "value": 18110 }, { "date": new Date("2017-03-01T00:00:00.000Z"), "value": 19762 }, { "date": new Date("2017-04-01T00:00:00.000Z"), "value": 18544 }, { "date": new Date("2017-05-01T00:00:00.000Z"), "value": 19305 }, { "date": new Date("2017-06-01T00:00:00.000Z"), "value": 18567 }, { "date": new Date("2017-07-01T00:00:00.000Z"), "value": 20433 }, { "date": new Date("2017-08-01T00:00:00.000Z"), "value": 21402 }, { "date": new Date("2017-09-01T00:00:00.000Z"), "value": 27357 }, { "date": new Date("2017-10-01T00:00:00.000Z"), "value": 20456 }, { "date": new Date("2017-11-01T00:00:00.000Z"), "value": 18990 }, { "date": new Date("2017-12-01T00:00:00.000Z"), "value": 19034 }, { "date": new Date("2018-01-01T00:00:00.000Z"), "value": 23651 }, { "date": new Date("2018-02-01T00:00:00.000Z"), "value": 21978 }, { "date": new Date("2018-03-01T00:00:00.000Z"), "value": 23640 }, { "date": new Date("2018-04-01T00:00:00.000Z"), "value": 24327 }, { "date": new Date("2018-05-01T00:00:00.000Z"), "value": 22339 }, { "date": new Date("2018-06-01T00:00:00.000Z"), "value": 20111 }, { "date": new Date("2018-07-01T00:00:00.000Z"), "value": 20963 }, { "date": new Date("2018-08-01T00:00:00.000Z"), "value": 21726 }, { "date": new Date("2018-09-01T00:00:00.000Z"), "value": 19072 }, { "date": new Date("2018-10-01T00:00:00.000Z"), "value": 21903 }, { "date": new Date("2018-11-01T00:00:00.000Z"), "value": 19053 }, { "date": new Date("2018-12-01T00:00:00.000Z"), "value": 18552 }, { "date": new Date("2019-01-01T00:00:00.000Z"), "value": 18934 }, { "date": new Date("2019-02-01T00:00:00.000Z"), "value": 20206 }, { "date": new Date("2019-03-01T00:00:00.000Z"), "value": 23412 }, { "date": new Date("2019-04-01T00:00:00.000Z"), "value": 22915 }, { "date": new Date("2019-05-01T00:00:00.000Z"), "value": 23850 }, { "date": new Date("2019-06-01T00:00:00.000Z"), "value": 23352 }, { "date": new Date("2019-07-01T00:00:00.000Z"), "value": 25090 }, { "date": new Date("2019-08-01T00:00:00.000Z"), "value": 26059 }, { "date": new Date("2019-09-01T00:00:00.000Z"), "value": 23575 }, { "date": new Date("2019-10-01T00:00:00.000Z"), "value": 25636 }, { "date": new Date("2019-11-01T00:00:00.000Z"), "value": 22659 }, { "date": new Date("2019-12-01T00:00:00.000Z"), "value": 21704 }, { "date": new Date("2020-01-01T00:00:00.000Z"), "value": 26413 }, { "date": new Date("2020-02-01T00:00:00.000Z"), "value": 25096 }, { "date": new Date("2020-03-01T00:00:00.000Z"), "value": 29506 }, { "date": new Date("2020-04-01T00:00:00.000Z"), "value": 35112 }, { "date": new Date("2020-05-01T00:00:00.000Z"), "value": 9821 } ], "dateRangeLine": { "dataByTopic": [ { "topic": "Complaints", "topicName": "Complaints", "dashed": false, "show": true, "dates": [ { "date": "2012-06-01T00:00:00.000Z", "value": 47 }, { "date": "2012-07-01T00:00:00.000Z", "value": 6755 }, { "date": "2012-08-01T00:00:00.000Z", "value": 6877 }, { "date": "2012-09-01T00:00:00.000Z", "value": 5493 }, { "date": "2012-10-01T00:00:00.000Z", "value": 6741 }, { "date": "2012-11-01T00:00:00.000Z", "value": 6139 }, { "date": "2012-12-01T00:00:00.000Z", "value": 6238 }, { "date": "2013-01-01T00:00:00.000Z", "value": 9741 }, { "date": "2013-02-01T00:00:00.000Z", "value": 8349 }, { "date": "2013-03-01T00:00:00.000Z", "value": 8784 }, { "date": "2013-04-01T00:00:00.000Z", "value": 8632 }, { "date": "2013-05-01T00:00:00.000Z", "value": 8170 }, { "date": "2013-06-01T00:00:00.000Z", "value": 8035 }, { "date": "2013-07-01T00:00:00.000Z", "value": 9271 }, { "date": "2013-08-01T00:00:00.000Z", "value": 9565 }, { "date": "2013-09-01T00:00:00.000Z", "value": 9636 }, { "date": "2013-10-01T00:00:00.000Z", "value": 9241 }, { "date": "2013-11-01T00:00:00.000Z", "value": 9319 }, { "date": "2013-12-01T00:00:00.000Z", "value": 9474 }, { "date": "2014-01-01T00:00:00.000Z", "value": 12617 }, { "date": "2014-02-01T00:00:00.000Z", "value": 13048 }, { "date": "2014-03-01T00:00:00.000Z", "value": 13943 }, { "date": "2014-04-01T00:00:00.000Z", "value": 13840 }, { "date": "2014-05-01T00:00:00.000Z", "value": 12167 }, { "date": "2014-06-01T00:00:00.000Z", "value": 12520 }, { "date": "2014-07-01T00:00:00.000Z", "value": 13415 }, { "date": "2014-08-01T00:00:00.000Z", "value": 13186 }, { "date": "2014-09-01T00:00:00.000Z", "value": 12465 }, { "date": "2014-10-01T00:00:00.000Z", "value": 12901 }, { "date": "2014-11-01T00:00:00.000Z", "value": 11257 }, { "date": "2014-12-01T00:00:00.000Z", "value": 11684 }, { "date": "2015-01-01T00:00:00.000Z", "value": 12627 }, { "date": "2015-02-01T00:00:00.000Z", "value": 12680 }, { "date": "2015-03-01T00:00:00.000Z", "value": 14514 }, { "date": "2015-04-01T00:00:00.000Z", "value": 13753 }, { "date": "2015-05-01T00:00:00.000Z", "value": 13682 }, { "date": "2015-06-01T00:00:00.000Z", "value": 14517 }, { "date": "2015-07-01T00:00:00.000Z", "value": 15920 }, { "date": "2015-08-01T00:00:00.000Z", "value": 15766 }, { "date": "2015-09-01T00:00:00.000Z", "value": 14336 }, { "date": "2015-10-01T00:00:00.000Z", "value": 14899 }, { "date": "2015-11-01T00:00:00.000Z", "value": 12897 }, { "date": "2015-12-01T00:00:00.000Z", "value": 12884 }, { "date": "2016-01-01T00:00:00.000Z", "value": 13840 }, { "date": "2016-02-01T00:00:00.000Z", "value": 14140 }, { "date": "2016-03-01T00:00:00.000Z", "value": 16611 }, { "date": "2016-04-01T00:00:00.000Z", "value": 15608 }, { "date": "2016-05-01T00:00:00.000Z", "value": 15517 }, { "date": "2016-06-01T00:00:00.000Z", "value": 16063 }, { "date": "2016-07-01T00:00:00.000Z", "value": 16043 }, { "date": "2016-08-01T00:00:00.000Z", "value": 17694 }, { "date": "2016-09-01T00:00:00.000Z", "value": 17584 }, { "date": "2016-10-01T00:00:00.000Z", "value": 17820 }, { "date": "2016-11-01T00:00:00.000Z", "value": 15207 }, { "date": "2016-12-01T00:00:00.000Z", "value": 15341 }, { "date": "2017-01-01T00:00:00.000Z", "value": 21006 }, { "date": "2017-02-01T00:00:00.000Z", "value": 18110 }, { "date": "2017-03-01T00:00:00.000Z", "value": 19762 }, { "date": "2017-04-01T00:00:00.000Z", "value": 18544 }, { "date": "2017-05-01T00:00:00.000Z", "value": 19305 }, { "date": "2017-06-01T00:00:00.000Z", "value": 18567 }, { "date": "2017-07-01T00:00:00.000Z", "value": 20433 }, { "date": "2017-08-01T00:00:00.000Z", "value": 21402 }, { "date": "2017-09-01T00:00:00.000Z", "value": 27357 }, { "date": "2017-10-01T00:00:00.000Z", "value": 20456 }, { "date": "2017-11-01T00:00:00.000Z", "value": 18990 }, { "date": "2017-12-01T00:00:00.000Z", "value": 19034 }, { "date": "2018-01-01T00:00:00.000Z", "value": 23651 }, { "date": "2018-02-01T00:00:00.000Z", "value": 21978 }, { "date": "2018-03-01T00:00:00.000Z", "value": 23640 }, { "date": "2018-04-01T00:00:00.000Z", "value": 24327 }, { "date": "2018-05-01T00:00:00.000Z", "value": 22339 }, { "date": "2018-06-01T00:00:00.000Z", "value": 20111 }, { "date": "2018-07-01T00:00:00.000Z", "value": 20963 }, { "date": "2018-08-01T00:00:00.000Z", "value": 21726 }, { "date": "2018-09-01T00:00:00.000Z", "value": 19072 }, { "date": "2018-10-01T00:00:00.000Z", "value": 21903 }, { "date": "2018-11-01T00:00:00.000Z", "value": 19053 }, { "date": "2018-12-01T00:00:00.000Z", "value": 18552 }, { "date": "2019-01-01T00:00:00.000Z", "value": 18934 }, { "date": "2019-02-01T00:00:00.000Z", "value": 20206 }, { "date": "2019-03-01T00:00:00.000Z", "value": 23412 }, { "date": "2019-04-01T00:00:00.000Z", "value": 22915 }, { "date": "2019-05-01T00:00:00.000Z", "value": 23850 }, { "date": "2019-06-01T00:00:00.000Z", "value": 23352 }, { "date": "2019-07-01T00:00:00.000Z", "value": 25090 }, { "date": "2019-08-01T00:00:00.000Z", "value": 26059 }, { "date": "2019-09-01T00:00:00.000Z", "value": 23575 }, { "date": "2019-10-01T00:00:00.000Z", "value": 25636 }, { "date": "2019-11-01T00:00:00.000Z", "value": 22659 }, { "date": "2019-12-01T00:00:00.000Z", "value": 21704 }, { "date": "2020-01-01T00:00:00.000Z", "value": 26413 }, { "date": "2020-02-01T00:00:00.000Z", "value": 25096 }, { "date": "2020-03-01T00:00:00.000Z", "value": 29506 }, { "date": "2020-04-01T00:00:00.000Z", "value": 35112 }, { "date": "2020-05-01T00:00:00.000Z", "value": 1366 } ] } ] }, "issue": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 15.93, "name": "Incorrect information on your report", "value": 247706, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 8.73, "name": "Information belongs to someone else", "value": 135795, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.52, "name": "Account status incorrect", "value": 39240, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.3, "name": "Account information incorrect", "value": 35733, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.75, "name": "Personal information incorrect", "value": 11632, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.6, "name": "Public record information inaccurate", "value": 9279, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.6, "name": "Old information reappears or never goes away", "value": 9275, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.29, "name": "Information is missing that should be on the report", "value": 4492, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.04, "name": "Information is incorrect", "value": 684, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.01, "name": "Information that should be on the report is missing", "value": 115, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Incorrect information on your report ", "value": 1, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 6.61, "name": "Incorrect information on credit report", "value": 102686, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.38, "name": "Account status", "value": 37057, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.08, "name": "Information is not mine", "value": 32384, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.71, "name": "Account terms", "value": 10995, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.57, "name": "Public record", "value": 8876, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.48, "name": "Personal information", "value": 7529, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.38, "name": "Reinserted previously deleted info", "value": 5845, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 6.53, "name": "Loan modification,collection,foreclosure", "value": 101564, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 5.65, "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 87778, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 4.06, "name": "Their investigation did not fix an error on your report", "value": 63190, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.46, "name": "Investigation took more than 30 days", "value": 7222, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.42, "name": "Was not notified of investigation status or results", "value": 6586, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.39, "name": "Difficulty submitting a dispute or getting information about a dispute over the phone", "value": 5998, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.28, "name": "Problem with personal statement of dispute", "value": 4377, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 4.64, "name": "Loan servicing, payments, escrow account", "value": 72149, "parent": false, "visible": true, "width": 0.5 } ], "product": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 25.17, "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 391362, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 24.76, "name": "Credit reporting", "value": 384867, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.33, "name": "Other personal consumer report", "value": 5194, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.08, "name": "Credit repair services", "value": 1300, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Conventional home mortgage", "value": 1, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 18.82, "name": "Debt collection", "value": 292541, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 3.93, "name": "I do not know", "value": 61041, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.87, "name": "Other (i.e. phone, health club, etc.)", "value": 44543, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.79, "name": "Other debt", "value": 43411, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.01, "name": "Credit card debt", "value": 31279, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 1.85, "name": "Credit card", "value": 28698, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 1.52, "name": "Medical debt", "value": 23573, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 1.36, "name": "Medical", "value": 21187, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.49, "name": "Payday loan", "value": 7562, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.31, "name": "Mortgage", "value": 4809, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.31, "name": "Auto debt", "value": 4769, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.29, "name": "Payday loan debt", "value": 4501, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.24, "name": "Auto", "value": 3755, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.21, "name": "Mortgage debt", "value": 3324, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.19, "name": "Non-federal student loan", "value": 2881, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.16, "name": "Federal student loan debt", "value": 2486, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.16, "name": "Federal student loan", "value": 2475, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.14, "name": "Private student loan debt", "value": 2247, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 18.14, "name": "Mortgage ", "value": 281996, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 4.94, "name": "Other mortgage", "value": 76865, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 4.21, "name": "Conventional fixed mortgage", "value": 65380, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.8, "name": "Conventional home mortgage ", "value": 43558, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.19, "name": "FHA mortgage", "value": 34035, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 1.51, "name": "Conventional adjustable mortgage (ARM)", "value": 23400, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.7, "name": "Home equity loan or line of credit", "value": 10808, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.68, "name": "Other type of mortgage", "value": 10594, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.57, "name": "VA mortgage", "value": 8839, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.31, "name": "Home equity loan or line of credit (HELOC)", "value": 4892, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.2, "name": "Reverse mortgage", "value": 3119, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.03, "name": "Second mortgage", "value": 506, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 9.03, "name": "Credit reporting ", "value": 140432, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 5.19, "name": "Bank account or service", "value": 80702, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 3.52, "name": "Checking account", "value": 54713, "parent": "Bank account or service", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 1.12, "name": "Other bank product/service", "value": 17476, "parent": "Bank account or service", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.32, "name": "Savings account", "value": 4914, "parent": "Bank account or service", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.19, "name": "(CD) Certificate of deposit", "value": 3024, "parent": "Bank account or service", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.04, "name": "Cashing a check without an account", "value": 575, "parent": "Bank account or service", "visible": false, "width": 0.4 } ], "collections": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 6.95, "name": "Servicemember", "value": 5172, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 3.16, "name": "Older American", "value": 2352, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0.86, "name": "Older American, Servicemember", "value": 640, "parent": false, "visible": true, "width": 0.5 } ], "tags": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 7.05, "name": "Servicemember", "value": 109650, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 5.51, "name": "Older American", "value": 85620, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 1.15, "name": "Older American, Servicemember", "value": 17831, "parent": false, "visible": true, "width": 0.5 } ] }, "subLens": "", "tooltip": false, "total": 1554659 }
+export default { "activeCall": "", "chartType": "line", "colorMap": { "Incorrect information on your report": "#2cb34a", "Problem with a credit reporting company's investigation into an existing problem": "#addc91", "Attempts to collect debt not owed": "#257675", "Managing an account": "#9ec4c3", "Improper use of your report": "#0072ce", "Complaints": "#ADDC91", "Other": "#a2a3a4" }, "error": false, "expandedTrends": [], "filterNames": [ "Credit reporting, credit repair services, or other personal consumer reports", "Debt collection", "Credit card or prepaid card", "Mortgage", "Checking or savings account", "Incorrect information on your report", "Problem with a credit reporting company's investigation into an existing problem", "Attempts to collect debt not owed", "Managing an account", "Improper use of your report", "Bank account or service", "Incorrect information on credit report" ], "focus": "", "isLoading": false, "lastDate": "2020-05-01T00:00:00.000Z", "lens": "Overview", "results": { "dateRangeArea": [ { "name": "Incorrect information on your report", "value": 12463, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Incorrect information on your report", "value": 15459, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Incorrect information on your report", "value": 5095, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 3508, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 4445, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 1354, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Attempts to collect debt not owed", "value": 2320, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Attempts to collect debt not owed", "value": 2457, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Attempts to collect debt not owed", "value": 593, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Managing an account", "value": 1050, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Managing an account", "value": 1274, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Managing an account", "value": 248, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Improper use of your report", "value": 980, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Improper use of your report", "value": 1033, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Improper use of your report", "value": 357, "date": new Date("2020-05-01T00:00:00.000Z") } ], "dateRangeBrush": [ { "date": new Date("2011-12-01T00:00:00.000Z"), "value": 2536 }, { "date": new Date("2012-01-01T00:00:00.000Z"), "value": 3230 }, { "date": new Date("2012-02-01T00:00:00.000Z"), "value": 3509 }, { "date": new Date("2012-03-01T00:00:00.000Z"), "value": 6230 }, { "date": new Date("2012-04-01T00:00:00.000Z"), "value": 5703 }, { "date": new Date("2012-05-01T00:00:00.000Z"), "value": 7617 }, { "date": new Date("2012-06-01T00:00:00.000Z"), "value": 7841 }, { "date": new Date("2012-07-01T00:00:00.000Z"), "value": 6755 }, { "date": new Date("2012-08-01T00:00:00.000Z"), "value": 6877 }, { "date": new Date("2012-09-01T00:00:00.000Z"), "value": 5493 }, { "date": new Date("2012-10-01T00:00:00.000Z"), "value": 6741 }, { "date": new Date("2012-11-01T00:00:00.000Z"), "value": 6139 }, { "date": new Date("2012-12-01T00:00:00.000Z"), "value": 6238 }, { "date": new Date("2013-01-01T00:00:00.000Z"), "value": 9741 }, { "date": new Date("2013-02-01T00:00:00.000Z"), "value": 8349 }, { "date": new Date("2013-03-01T00:00:00.000Z"), "value": 8784 }, { "date": new Date("2013-04-01T00:00:00.000Z"), "value": 8632 }, { "date": new Date("2013-05-01T00:00:00.000Z"), "value": 8170 }, { "date": new Date("2013-06-01T00:00:00.000Z"), "value": 8035 }, { "date": new Date("2013-07-01T00:00:00.000Z"), "value": 9271 }, { "date": new Date("2013-08-01T00:00:00.000Z"), "value": 9565 }, { "date": new Date("2013-09-01T00:00:00.000Z"), "value": 9636 }, { "date": new Date("2013-10-01T00:00:00.000Z"), "value": 9241 }, { "date": new Date("2013-11-01T00:00:00.000Z"), "value": 9319 }, { "date": new Date("2013-12-01T00:00:00.000Z"), "value": 9474 }, { "date": new Date("2014-01-01T00:00:00.000Z"), "value": 12617 }, { "date": new Date("2014-02-01T00:00:00.000Z"), "value": 13048 }, { "date": new Date("2014-03-01T00:00:00.000Z"), "value": 13943 }, { "date": new Date("2014-04-01T00:00:00.000Z"), "value": 13840 }, { "date": new Date("2014-05-01T00:00:00.000Z"), "value": 12167 }, { "date": new Date("2014-06-01T00:00:00.000Z"), "value": 12520 }, { "date": new Date("2014-07-01T00:00:00.000Z"), "value": 13415 }, { "date": new Date("2014-08-01T00:00:00.000Z"), "value": 13186 }, { "date": new Date("2014-09-01T00:00:00.000Z"), "value": 12465 }, { "date": new Date("2014-10-01T00:00:00.000Z"), "value": 12901 }, { "date": new Date("2014-11-01T00:00:00.000Z"), "value": 11257 }, { "date": new Date("2014-12-01T00:00:00.000Z"), "value": 11684 }, { "date": new Date("2015-01-01T00:00:00.000Z"), "value": 12627 }, { "date": new Date("2015-02-01T00:00:00.000Z"), "value": 12680 }, { "date": new Date("2015-03-01T00:00:00.000Z"), "value": 14514 }, { "date": new Date("2015-04-01T00:00:00.000Z"), "value": 13753 }, { "date": new Date("2015-05-01T00:00:00.000Z"), "value": 13682 }, { "date": new Date("2015-06-01T00:00:00.000Z"), "value": 14517 }, { "date": new Date("2015-07-01T00:00:00.000Z"), "value": 15920 }, { "date": new Date("2015-08-01T00:00:00.000Z"), "value": 15766 }, { "date": new Date("2015-09-01T00:00:00.000Z"), "value": 14336 }, { "date": new Date("2015-10-01T00:00:00.000Z"), "value": 14899 }, { "date": new Date("2015-11-01T00:00:00.000Z"), "value": 12897 }, { "date": new Date("2015-12-01T00:00:00.000Z"), "value": 12884 }, { "date": new Date("2016-01-01T00:00:00.000Z"), "value": 13840 }, { "date": new Date("2016-02-01T00:00:00.000Z"), "value": 14140 }, { "date": new Date("2016-03-01T00:00:00.000Z"), "value": 16611 }, { "date": new Date("2016-04-01T00:00:00.000Z"), "value": 15608 }, { "date": new Date("2016-05-01T00:00:00.000Z"), "value": 15517 }, { "date": new Date("2016-06-01T00:00:00.000Z"), "value": 16063 }, { "date": new Date("2016-07-01T00:00:00.000Z"), "value": 16043 }, { "date": new Date("2016-08-01T00:00:00.000Z"), "value": 17694 }, { "date": new Date("2016-09-01T00:00:00.000Z"), "value": 17584 }, { "date": new Date("2016-10-01T00:00:00.000Z"), "value": 17820 }, { "date": new Date("2016-11-01T00:00:00.000Z"), "value": 15207 }, { "date": new Date("2016-12-01T00:00:00.000Z"), "value": 15341 }, { "date": new Date("2017-01-01T00:00:00.000Z"), "value": 21006 }, { "date": new Date("2017-02-01T00:00:00.000Z"), "value": 18110 }, { "date": new Date("2017-03-01T00:00:00.000Z"), "value": 19762 }, { "date": new Date("2017-04-01T00:00:00.000Z"), "value": 18544 }, { "date": new Date("2017-05-01T00:00:00.000Z"), "value": 19305 }, { "date": new Date("2017-06-01T00:00:00.000Z"), "value": 18567 }, { "date": new Date("2017-07-01T00:00:00.000Z"), "value": 20433 }, { "date": new Date("2017-08-01T00:00:00.000Z"), "value": 21402 }, { "date": new Date("2017-09-01T00:00:00.000Z"), "value": 27357 }, { "date": new Date("2017-10-01T00:00:00.000Z"), "value": 20456 }, { "date": new Date("2017-11-01T00:00:00.000Z"), "value": 18990 }, { "date": new Date("2017-12-01T00:00:00.000Z"), "value": 19034 }, { "date": new Date("2018-01-01T00:00:00.000Z"), "value": 23651 }, { "date": new Date("2018-02-01T00:00:00.000Z"), "value": 21978 }, { "date": new Date("2018-03-01T00:00:00.000Z"), "value": 23640 }, { "date": new Date("2018-04-01T00:00:00.000Z"), "value": 24327 }, { "date": new Date("2018-05-01T00:00:00.000Z"), "value": 22339 }, { "date": new Date("2018-06-01T00:00:00.000Z"), "value": 20111 }, { "date": new Date("2018-07-01T00:00:00.000Z"), "value": 20963 }, { "date": new Date("2018-08-01T00:00:00.000Z"), "value": 21726 }, { "date": new Date("2018-09-01T00:00:00.000Z"), "value": 19072 }, { "date": new Date("2018-10-01T00:00:00.000Z"), "value": 21903 }, { "date": new Date("2018-11-01T00:00:00.000Z"), "value": 19053 }, { "date": new Date("2018-12-01T00:00:00.000Z"), "value": 18552 }, { "date": new Date("2019-01-01T00:00:00.000Z"), "value": 18934 }, { "date": new Date("2019-02-01T00:00:00.000Z"), "value": 20206 }, { "date": new Date("2019-03-01T00:00:00.000Z"), "value": 23412 }, { "date": new Date("2019-04-01T00:00:00.000Z"), "value": 22915 }, { "date": new Date("2019-05-01T00:00:00.000Z"), "value": 23850 }, { "date": new Date("2019-06-01T00:00:00.000Z"), "value": 23352 }, { "date": new Date("2019-07-01T00:00:00.000Z"), "value": 25090 }, { "date": new Date("2019-08-01T00:00:00.000Z"), "value": 26059 }, { "date": new Date("2019-09-01T00:00:00.000Z"), "value": 23575 }, { "date": new Date("2019-10-01T00:00:00.000Z"), "value": 25636 }, { "date": new Date("2019-11-01T00:00:00.000Z"), "value": 22659 }, { "date": new Date("2019-12-01T00:00:00.000Z"), "value": 21704 }, { "date": new Date("2020-01-01T00:00:00.000Z"), "value": 26413 }, { "date": new Date("2020-02-01T00:00:00.000Z"), "value": 25096 }, { "date": new Date("2020-03-01T00:00:00.000Z"), "value": 29506 }, { "date": new Date("2020-04-01T00:00:00.000Z"), "value": 35112 }, { "date": new Date("2020-05-01T00:00:00.000Z"), "value": 9821 } ], "dateRangeLine": { "dataByTopic": [ { "topic": "Complaints", "topicName": "Complaints", "dashed": false, "show": true, "dates": [ { "date": "2012-06-01T00:00:00.000Z", "value": 47 }, { "date": "2012-07-01T00:00:00.000Z", "value": 6755 }, { "date": "2012-08-01T00:00:00.000Z", "value": 6877 }, { "date": "2012-09-01T00:00:00.000Z", "value": 5493 }, { "date": "2012-10-01T00:00:00.000Z", "value": 6741 }, { "date": "2012-11-01T00:00:00.000Z", "value": 6139 }, { "date": "2012-12-01T00:00:00.000Z", "value": 6238 }, { "date": "2013-01-01T00:00:00.000Z", "value": 9741 }, { "date": "2013-02-01T00:00:00.000Z", "value": 8349 }, { "date": "2013-03-01T00:00:00.000Z", "value": 8784 }, { "date": "2013-04-01T00:00:00.000Z", "value": 8632 }, { "date": "2013-05-01T00:00:00.000Z", "value": 8170 }, { "date": "2013-06-01T00:00:00.000Z", "value": 8035 }, { "date": "2013-07-01T00:00:00.000Z", "value": 9271 }, { "date": "2013-08-01T00:00:00.000Z", "value": 9565 }, { "date": "2013-09-01T00:00:00.000Z", "value": 9636 }, { "date": "2013-10-01T00:00:00.000Z", "value": 9241 }, { "date": "2013-11-01T00:00:00.000Z", "value": 9319 }, { "date": "2013-12-01T00:00:00.000Z", "value": 9474 }, { "date": "2014-01-01T00:00:00.000Z", "value": 12617 }, { "date": "2014-02-01T00:00:00.000Z", "value": 13048 }, { "date": "2014-03-01T00:00:00.000Z", "value": 13943 }, { "date": "2014-04-01T00:00:00.000Z", "value": 13840 }, { "date": "2014-05-01T00:00:00.000Z", "value": 12167 }, { "date": "2014-06-01T00:00:00.000Z", "value": 12520 }, { "date": "2014-07-01T00:00:00.000Z", "value": 13415 }, { "date": "2014-08-01T00:00:00.000Z", "value": 13186 }, { "date": "2014-09-01T00:00:00.000Z", "value": 12465 }, { "date": "2014-10-01T00:00:00.000Z", "value": 12901 }, { "date": "2014-11-01T00:00:00.000Z", "value": 11257 }, { "date": "2014-12-01T00:00:00.000Z", "value": 11684 }, { "date": "2015-01-01T00:00:00.000Z", "value": 12627 }, { "date": "2015-02-01T00:00:00.000Z", "value": 12680 }, { "date": "2015-03-01T00:00:00.000Z", "value": 14514 }, { "date": "2015-04-01T00:00:00.000Z", "value": 13753 }, { "date": "2015-05-01T00:00:00.000Z", "value": 13682 }, { "date": "2015-06-01T00:00:00.000Z", "value": 14517 }, { "date": "2015-07-01T00:00:00.000Z", "value": 15920 }, { "date": "2015-08-01T00:00:00.000Z", "value": 15766 }, { "date": "2015-09-01T00:00:00.000Z", "value": 14336 }, { "date": "2015-10-01T00:00:00.000Z", "value": 14899 }, { "date": "2015-11-01T00:00:00.000Z", "value": 12897 }, { "date": "2015-12-01T00:00:00.000Z", "value": 12884 }, { "date": "2016-01-01T00:00:00.000Z", "value": 13840 }, { "date": "2016-02-01T00:00:00.000Z", "value": 14140 }, { "date": "2016-03-01T00:00:00.000Z", "value": 16611 }, { "date": "2016-04-01T00:00:00.000Z", "value": 15608 }, { "date": "2016-05-01T00:00:00.000Z", "value": 15517 }, { "date": "2016-06-01T00:00:00.000Z", "value": 16063 }, { "date": "2016-07-01T00:00:00.000Z", "value": 16043 }, { "date": "2016-08-01T00:00:00.000Z", "value": 17694 }, { "date": "2016-09-01T00:00:00.000Z", "value": 17584 }, { "date": "2016-10-01T00:00:00.000Z", "value": 17820 }, { "date": "2016-11-01T00:00:00.000Z", "value": 15207 }, { "date": "2016-12-01T00:00:00.000Z", "value": 15341 }, { "date": "2017-01-01T00:00:00.000Z", "value": 21006 }, { "date": "2017-02-01T00:00:00.000Z", "value": 18110 }, { "date": "2017-03-01T00:00:00.000Z", "value": 19762 }, { "date": "2017-04-01T00:00:00.000Z", "value": 18544 }, { "date": "2017-05-01T00:00:00.000Z", "value": 19305 }, { "date": "2017-06-01T00:00:00.000Z", "value": 18567 }, { "date": "2017-07-01T00:00:00.000Z", "value": 20433 }, { "date": "2017-08-01T00:00:00.000Z", "value": 21402 }, { "date": "2017-09-01T00:00:00.000Z", "value": 27357 }, { "date": "2017-10-01T00:00:00.000Z", "value": 20456 }, { "date": "2017-11-01T00:00:00.000Z", "value": 18990 }, { "date": "2017-12-01T00:00:00.000Z", "value": 19034 }, { "date": "2018-01-01T00:00:00.000Z", "value": 23651 }, { "date": "2018-02-01T00:00:00.000Z", "value": 21978 }, { "date": "2018-03-01T00:00:00.000Z", "value": 23640 }, { "date": "2018-04-01T00:00:00.000Z", "value": 24327 }, { "date": "2018-05-01T00:00:00.000Z", "value": 22339 }, { "date": "2018-06-01T00:00:00.000Z", "value": 20111 }, { "date": "2018-07-01T00:00:00.000Z", "value": 20963 }, { "date": "2018-08-01T00:00:00.000Z", "value": 21726 }, { "date": "2018-09-01T00:00:00.000Z", "value": 19072 }, { "date": "2018-10-01T00:00:00.000Z", "value": 21903 }, { "date": "2018-11-01T00:00:00.000Z", "value": 19053 }, { "date": "2018-12-01T00:00:00.000Z", "value": 18552 }, { "date": "2019-01-01T00:00:00.000Z", "value": 18934 }, { "date": "2019-02-01T00:00:00.000Z", "value": 20206 }, { "date": "2019-03-01T00:00:00.000Z", "value": 23412 }, { "date": "2019-04-01T00:00:00.000Z", "value": 22915 }, { "date": "2019-05-01T00:00:00.000Z", "value": 23850 }, { "date": "2019-06-01T00:00:00.000Z", "value": 23352 }, { "date": "2019-07-01T00:00:00.000Z", "value": 25090 }, { "date": "2019-08-01T00:00:00.000Z", "value": 26059 }, { "date": "2019-09-01T00:00:00.000Z", "value": 23575 }, { "date": "2019-10-01T00:00:00.000Z", "value": 25636 }, { "date": "2019-11-01T00:00:00.000Z", "value": 22659 }, { "date": "2019-12-01T00:00:00.000Z", "value": 21704 }, { "date": "2020-01-01T00:00:00.000Z", "value": 26413 }, { "date": "2020-02-01T00:00:00.000Z", "value": 25096 }, { "date": "2020-03-01T00:00:00.000Z", "value": 29506 }, { "date": "2020-04-01T00:00:00.000Z", "value": 35112 }, { "date": "2020-05-01T00:00:00.000Z", "value": 1366 } ] } ] }, "issue": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 15.93, "name": "Incorrect information on your report", "value": 247706, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 8.73, "name": "Information belongs to someone else", "value": 135795, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.52, "name": "Account status incorrect", "value": 39240, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.3, "name": "Account information incorrect", "value": 35733, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.75, "name": "Personal information incorrect", "value": 11632, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.6, "name": "Public record information inaccurate", "value": 9279, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.6, "name": "Old information reappears or never goes away", "value": 9275, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.29, "name": "Information is missing that should be on the report", "value": 4492, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.04, "name": "Information is incorrect", "value": 684, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.01, "name": "Information that should be on the report is missing", "value": 115, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Incorrect information on your report ", "value": 1, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 6.61, "name": "Incorrect information on credit report", "value": 102686, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.38, "name": "Account status", "value": 37057, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.08, "name": "Information is not mine", "value": 32384, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.71, "name": "Account terms", "value": 10995, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.57, "name": "Public record", "value": 8876, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.48, "name": "Personal information", "value": 7529, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.38, "name": "Reinserted previously deleted info", "value": 5845, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 6.53, "name": "Loan modification,collection,foreclosure", "value": 101564, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 5.65, "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 87778, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 4.06, "name": "Their investigation did not fix an error on your report", "value": 63190, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.46, "name": "Investigation took more than 30 days", "value": 7222, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.42, "name": "Was not notified of investigation status or results", "value": 6586, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.39, "name": "Difficulty submitting a dispute or getting information about a dispute over the phone", "value": 5998, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.28, "name": "Problem with personal statement of dispute", "value": 4377, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 4.64, "name": "Loan servicing, payments, escrow account", "value": 72149, "parent": false, "visible": true, "width": 0.5 } ], "product": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 25.17, "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 391362, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 24.76, "name": "Credit reporting", "value": 384867, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.33, "name": "Other personal consumer report", "value": 5194, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.08, "name": "Credit repair services", "value": 1300, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Conventional home mortgage", "value": 1, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 18.82, "name": "Debt collection", "value": 292541, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 3.93, "name": "I do not know", "value": 61041, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.87, "name": "Other (i.e. phone, health club, etc.)", "value": 44543, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.79, "name": "Other debt", "value": 43411, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.01, "name": "Credit card debt", "value": 31279, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 1.85, "name": "Credit card", "value": 28698, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 1.52, "name": "Medical debt", "value": 23573, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 1.36, "name": "Medical", "value": 21187, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.49, "name": "Payday loan", "value": 7562, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.31, "name": "Mortgage", "value": 4809, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.31, "name": "Auto debt", "value": 4769, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.29, "name": "Payday loan debt", "value": 4501, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.24, "name": "Auto", "value": 3755, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.21, "name": "Mortgage debt", "value": 3324, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.19, "name": "Non-federal student loan", "value": 2881, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.16, "name": "Federal student loan debt", "value": 2486, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.16, "name": "Federal student loan", "value": 2475, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.14, "name": "Private student loan debt", "value": 2247, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 18.14, "name": "Mortgage ", "value": 281996, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 4.94, "name": "Other mortgage", "value": 76865, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 4.21, "name": "Conventional fixed mortgage", "value": 65380, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.8, "name": "Conventional home mortgage ", "value": 43558, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.19, "name": "FHA mortgage", "value": 34035, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 1.51, "name": "Conventional adjustable mortgage (ARM)", "value": 23400, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.7, "name": "Home equity loan or line of credit", "value": 10808, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.68, "name": "Other type of mortgage", "value": 10594, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.57, "name": "VA mortgage", "value": 8839, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.31, "name": "Home equity loan or line of credit (HELOC)", "value": 4892, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.2, "name": "Reverse mortgage", "value": 3119, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.03, "name": "Second mortgage", "value": 506, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 9.03, "name": "Credit reporting ", "value": 140432, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 5.19, "name": "Bank account or service", "value": 80702, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 3.52, "name": "Checking account", "value": 54713, "parent": "Bank account or service", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 1.12, "name": "Other bank product/service", "value": 17476, "parent": "Bank account or service", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.32, "name": "Savings account", "value": 4914, "parent": "Bank account or service", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.19, "name": "(CD) Certificate of deposit", "value": 3024, "parent": "Bank account or service", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.04, "name": "Cashing a check without an account", "value": 575, "parent": "Bank account or service", "visible": false, "width": 0.4 } ], "collections": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 6.95, "name": "Servicemember", "value": 5172, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 3.16, "name": "Older American", "value": 2352, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0.86, "name": "Older American, Servicemember", "value": 640, "parent": false, "visible": true, "width": 0.5 } ], "tags": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 7.05, "name": "Servicemember", "value": 109650, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 5.51, "name": "Older American", "value": 85620, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 1.15, "name": "Older American, Servicemember", "value": 17831, "parent": false, "visible": true, "width": 0.5 } ] }, "subLens": "", "tooltip": false, "total": 1554659 }
diff --git a/src/reducers/__tests__/trends.spec.jsx b/src/reducers/__tests__/trends.spec.jsx
index 1d4c114e3..a5f6c69de 100644
--- a/src/reducers/__tests__/trends.spec.jsx
+++ b/src/reducers/__tests__/trends.spec.jsx
@@ -1,5 +1,5 @@
 import target, {
-  defaultState
+  defaultState, mainNameLens
 } from '../trends'
 import actions from '../../actions'
 import {
@@ -47,6 +47,15 @@ describe( 'reducer:trends', () => {
     } )
   } )
 
+  describe( 'Lens Name Pluralization Helper', () => {
+    it( 'pluralizes things properly', () => {
+      console.log('MAIN NAME LENS TEST');
+      expect( mainNameLens('Company') ).toEqual('companies')
+      expect( mainNameLens('Product') ).toEqual('products')
+      expect( mainNameLens('baz') ).toEqual('values')
+    })
+  })
+
   describe( 'CHART_TYPE_CHANGED action', () => {
     it( 'changes the chart type', () => {
       action = {
diff --git a/src/reducers/trends.jsx b/src/reducers/trends.jsx
index 6a15c66c5..8f724a57b 100644
--- a/src/reducers/trends.jsx
+++ b/src/reducers/trends.jsx
@@ -135,6 +135,20 @@ function getD3Names( obj, nameMap, expandedTrends ) {
   }
 }
 
+/**
+ * helper function to pluralize field values
+ * @param {string} field name we are processing
+ * @returns {string} for consumption by AreaData function
+ */
+export function mainNameLens( lens ) {
+  if( lens === 'Product' ) {
+    return 'products'
+  } else if ( lens === 'Company') {
+    return 'companies'
+  }
+  return 'values'
+}
+
 
 /**
  * processes the stuff for the area chart, combining them if necessary
@@ -148,15 +162,6 @@ function processAreaData( state, aggregations, buckets ) {
   const { subLens } = state
   const lens = state.focus ? subLens.replace( '_', '-' ) : state.lens
 
-  const mainNameLens = ( ) => {
-    if( lens === 'Product' ) {
-      return 'products'
-    } else if ( lens === 'Company') {
-      return 'companies'
-    }
-    return 'values'
-  }
-
   const mainName = 'All other ' + mainNameLens(lens)
   // overall buckets
   const compBuckets = buckets.map(

From 0c5ff497bc635dbbac0442f9a4cf5dd4e3e31013 Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Wed, 1 Jul 2020 10:52:00 -0400
Subject: [PATCH 07/34] continued progress on other bucket

---
 src/components/Charts/StackedAreaChart.jsx         |  1 -
 src/components/Trends/ExternalTooltip.jsx          |  7 ++++---
 .../__snapshots__/ExternalTooltip.spec.jsx.snap    | 14 --------------
 .../trendsAggsMissingBucketsResults.jsx            |  2 +-
 src/reducers/trends.jsx                            |  8 +++++---
 src/utils/trends.jsx                               |  4 ++--
 6 files changed, 12 insertions(+), 24 deletions(-)

diff --git a/src/components/Charts/StackedAreaChart.jsx b/src/components/Charts/StackedAreaChart.jsx
index 8fff4a815..4c7de28ba 100644
--- a/src/components/Charts/StackedAreaChart.jsx
+++ b/src/components/Charts/StackedAreaChart.jsx
@@ -65,7 +65,6 @@ export class StackedAreaChart extends React.Component {
     d3.select( chartID + ' .stacked-area' ).remove()
     const stackedAreaChart = stackedArea()
     const colorScheme = [ ...new Set( data.map( item => item.name ) ) ]
-      .filter( o => o !== 'Other' )
       .map( o => colorMap[o] )
     colorScheme.push( colors.DataLens[10] )
 
diff --git a/src/components/Trends/ExternalTooltip.jsx b/src/components/Trends/ExternalTooltip.jsx
index eb22a02a5..3b89a2c51 100644
--- a/src/components/Trends/ExternalTooltip.jsx
+++ b/src/components/Trends/ExternalTooltip.jsx
@@ -17,8 +17,10 @@ export class ExternalTooltip extends React.Component {
           { value.name }
         </span>
       )
-    } else {
-      elements.push( <span className="u-left a-btn a-btn__link"
+      return elements
+    }
+
+    elements.push( <span className="u-left a-btn a-btn__link"
                            id={ 'focus-' + sanitizeHtmlId( value.name ) }
                            key={ value.name }
              onClick={ () => {
@@ -26,7 +28,6 @@ export class ExternalTooltip extends React.Component {
              } }>
         { value.name }
       </span> )
-    }
 
     // add in the close button for Company and there's no focus yet
     if ( this.props.showCompanyTypeahead ) {
diff --git a/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap b/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
index be0930fb6..329fddc90 100644
--- a/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
@@ -122,20 +122,6 @@ exports[`initial state renders Company typehead without crashing 1`] = `
         >
           All other
         </span>
-        <span
-          className="u-right a-btn a-btn__link close"
-          onClick={[Function]}
-        >
-          <svg
-            className="cf-icon-svg"
-            viewBox="0 0 718.9 1200"
-            xmlns="http://www.w3.org/2000/svg"
-          >
-            <path
-              d="M451.4 613.7l248.1-248.1c25.6-25.1 26-66.3.8-91.9s-66.3-26-91.9-.8l-.8.8-248.1 248.1-248.1-248.1c-25.4-25.4-66.5-25.4-91.9 0s-25.4 66.5 0 91.9l248.1 248.1L19.5 861.8c-25.6 25.1-26 66.3-.8 91.9s66.3 26 91.9.8l.8-.8 248.1-248.1 248.1 248.1c25.4 25.4 66.5 25.4 91.9 0s25.4-66.5 0-91.9L451.4 613.7z"
-            />
-          </svg>
-        </span>
         <span
           className="u-right"
         >
diff --git a/src/reducers/__fixtures__/trendsAggsMissingBucketsResults.jsx b/src/reducers/__fixtures__/trendsAggsMissingBucketsResults.jsx
index 1e2187070..1540f185a 100644
--- a/src/reducers/__fixtures__/trendsAggsMissingBucketsResults.jsx
+++ b/src/reducers/__fixtures__/trendsAggsMissingBucketsResults.jsx
@@ -1 +1 @@
-export default { "activeCall": "", "chartType": "line", "colorMap": { "Credit reporting, credit repair services, or other personal consumer reports": "#2cb34a", "Debt collection": "#addc91", "Credit card or prepaid card": "#257675", "Mortgage": "#9ec4c3", "Checking or savings account": "#0072ce", "Complaints": "#ADDC91", "Other": "#a2a3a4" }, "error": false, "expandedTrends": [], "filterNames": [ "Credit reporting, credit repair services, or other personal consumer reports", "Debt collection", "Credit card or prepaid card", "Mortgage", "Checking or savings account", "Incorrect information on your report", "Problem with a credit reporting company's investigation into an existing problem", "Attempts to collect debt not owed", "Managing an account", "Improper use of your report", "Bank account or service", "Incorrect information on credit report" ], "focus": "", "isLoading": false, "lastDate": "2020-05-18T00:00:00.000Z", "lens": "Product", "results": { "dateRangeArea": [ { "name": "Other", "value": 67, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Other", "value": 72, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Other", "value": 82, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Other", "value": 36, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Other", "value": 20, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Other", "value": 76, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Other", "value": 64, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Other", "value": 67, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Other", "value": 79, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Other", "value": 92, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Other", "value": 46, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Other", "value": 21, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Other", "value": 71, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Other", "value": 66, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Other", "value": 68, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Other", "value": 77, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Other", "value": 79, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Other", "value": 41, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Other", "value": 37, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Other", "value": 72, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Other", "value": 79, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Other", "value": 87, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Other", "value": 83, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Other", "value": 97, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Other", "value": 55, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Other", "value": 44, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Other", "value": 114, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Other", "value": 97, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Other", "value": 113, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Other", "value": 77, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Other", "value": 70, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Other", "value": 32, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Other", "value": 24, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Other", "value": 42, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Other", "value": 50, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Other", "value": 41, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Other", "value": 33, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Other", "value": 28, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Other", "value": 12, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Other", "value": 8, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Other", "value": 22, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Other", "value": 26, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Other", "value": 10, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Other", "value": 9, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Other", "value": 8, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Other", "value": 6, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Other", "value": 3, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Other", "value": 1, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 737, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 738, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 710, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 494, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 350, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 753, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 712, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 717, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 706, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 791, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 402, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 344, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 737, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 768, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 692, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 693, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 792, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 526, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 482, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 764, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 785, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 882, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 926, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 992, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 583, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 457, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 862, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 894, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 892, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 998, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 888, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 516, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 402, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 637, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 697, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 442, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 386, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 326, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 239, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 153, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 403, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 420, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 390, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 363, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 305, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 177, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 119, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 5, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Debt collection", "value": 167, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Debt collection", "value": 196, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Debt collection", "value": 142, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Debt collection", "value": 82, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Debt collection", "value": 79, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Debt collection", "value": 147, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Debt collection", "value": 182, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Debt collection", "value": 212, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Debt collection", "value": 174, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Debt collection", "value": 171, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Debt collection", "value": 93, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Debt collection", "value": 74, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Debt collection", "value": 136, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Debt collection", "value": 160, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Debt collection", "value": 159, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Debt collection", "value": 198, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Debt collection", "value": 186, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Debt collection", "value": 117, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Debt collection", "value": 75, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Debt collection", "value": 147, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Debt collection", "value": 183, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Debt collection", "value": 186, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Debt collection", "value": 201, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Debt collection", "value": 192, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Debt collection", "value": 81, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Debt collection", "value": 71, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Debt collection", "value": 163, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Debt collection", "value": 202, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Debt collection", "value": 182, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Debt collection", "value": 150, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Debt collection", "value": 138, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Debt collection", "value": 97, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Debt collection", "value": 82, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Debt collection", "value": 134, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Debt collection", "value": 103, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Debt collection", "value": 98, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Debt collection", "value": 66, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Debt collection", "value": 65, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Debt collection", "value": 29, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Debt collection", "value": 17, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Debt collection", "value": 51, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Debt collection", "value": 67, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Debt collection", "value": 37, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Debt collection", "value": 27, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Debt collection", "value": 29, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Debt collection", "value": 11, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Debt collection", "value": 11, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Debt collection", "value": 6, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 115, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 83, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 118, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 54, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 30, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 104, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 133, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 110, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 99, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 117, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 47, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 46, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 122, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 140, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 133, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 137, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 107, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 66, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 43, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 112, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 132, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 153, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 161, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 124, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 66, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 67, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 131, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 119, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 140, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 128, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 113, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 61, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 41, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 78, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 100, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 60, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 37, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 46, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 17, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 12, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 31, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 32, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 23, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 22, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 11, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 15, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 9, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 4, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Mortgage", "value": 111, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Mortgage", "value": 89, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Mortgage", "value": 95, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Mortgage", "value": 34, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Mortgage", "value": 15, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Mortgage", "value": 88, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Mortgage", "value": 91, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Mortgage", "value": 91, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Mortgage", "value": 113, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Mortgage", "value": 64, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Mortgage", "value": 31, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Mortgage", "value": 16, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Mortgage", "value": 106, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Mortgage", "value": 90, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Mortgage", "value": 92, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Mortgage", "value": 88, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Mortgage", "value": 79, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Mortgage", "value": 30, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Mortgage", "value": 16, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Mortgage", "value": 81, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Mortgage", "value": 97, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Mortgage", "value": 86, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Mortgage", "value": 83, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Mortgage", "value": 82, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Mortgage", "value": 43, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Mortgage", "value": 23, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Mortgage", "value": 79, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Mortgage", "value": 90, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Mortgage", "value": 91, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Mortgage", "value": 85, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Mortgage", "value": 80, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Mortgage", "value": 25, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Mortgage", "value": 26, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Mortgage", "value": 50, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Mortgage", "value": 42, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Mortgage", "value": 28, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Mortgage", "value": 21, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Mortgage", "value": 27, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Mortgage", "value": 8, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Mortgage", "value": 0, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Mortgage", "value": 22, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Mortgage", "value": 12, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Mortgage", "value": 6, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Mortgage", "value": 8, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Mortgage", "value": 8, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Mortgage", "value": 0, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Mortgage", "value": 2, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Mortgage", "value": 0, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 79, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 68, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 71, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 32, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 15, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 74, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 86, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 75, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 76, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 89, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 33, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 15, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 77, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 69, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 76, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 94, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 68, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 23, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 16, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 75, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 86, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 92, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 74, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 74, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 46, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 35, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 106, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 104, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 116, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 86, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 77, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 20, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 16, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 62, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 47, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 36, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 30, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 22, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 7, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 3, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 20, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 18, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 13, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 5, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 2, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 2, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 2, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 1, "date": new Date("2020-05-18T00:00:00.000Z") } ], "dateRangeBrush": [ { "date": new Date("2020-04-01T00:00:00.000Z"), "value": 1276 }, { "date": new Date("2020-04-02T00:00:00.000Z"), "value": 1246 }, { "date": new Date("2020-04-03T00:00:00.000Z"), "value": 1218 }, { "date": new Date("2020-04-04T00:00:00.000Z"), "value": 732 }, { "date": new Date("2020-04-05T00:00:00.000Z"), "value": 509 }, { "date": new Date("2020-04-06T00:00:00.000Z"), "value": 1242 }, { "date": new Date("2020-04-07T00:00:00.000Z"), "value": 1268 }, { "date": new Date("2020-04-08T00:00:00.000Z"), "value": 1272 }, { "date": new Date("2020-04-09T00:00:00.000Z"), "value": 1247 }, { "date": new Date("2020-04-10T00:00:00.000Z"), "value": 1324 }, { "date": new Date("2020-04-11T00:00:00.000Z"), "value": 652 }, { "date": new Date("2020-04-12T00:00:00.000Z"), "value": 516 }, { "date": new Date("2020-04-13T00:00:00.000Z"), "value": 1249 }, { "date": new Date("2020-04-14T00:00:00.000Z"), "value": 1293 }, { "date": new Date("2020-04-15T00:00:00.000Z"), "value": 1220 }, { "date": new Date("2020-04-16T00:00:00.000Z"), "value": 1287 }, { "date": new Date("2020-04-17T00:00:00.000Z"), "value": 1311 }, { "date": new Date("2020-04-18T00:00:00.000Z"), "value": 803 }, { "date": new Date("2020-04-19T00:00:00.000Z"), "value": 669 }, { "date": new Date("2020-04-20T00:00:00.000Z"), "value": 1251 }, { "date": new Date("2020-04-21T00:00:00.000Z"), "value": 1362 }, { "date": new Date("2020-04-22T00:00:00.000Z"), "value": 1486 }, { "date": new Date("2020-04-23T00:00:00.000Z"), "value": 1528 }, { "date": new Date("2020-04-24T00:00:00.000Z"), "value": 1561 }, { "date": new Date("2020-04-25T00:00:00.000Z"), "value": 874 }, { "date": new Date("2020-04-26T00:00:00.000Z"), "value": 697 }, { "date": new Date("2020-04-27T00:00:00.000Z"), "value": 1455 }, { "date": new Date("2020-04-28T00:00:00.000Z"), "value": 1506 }, { "date": new Date("2020-04-29T00:00:00.000Z"), "value": 1534 }, { "date": new Date("2020-04-30T00:00:00.000Z"), "value": 1524 }, { "date": new Date("2020-05-01T00:00:00.000Z"), "value": 1366 }, { "date": new Date("2020-05-02T00:00:00.000Z"), "value": 751 }, { "date": new Date("2020-05-03T00:00:00.000Z"), "value": 591 }, { "date": new Date("2020-05-04T00:00:00.000Z"), "value": 1003 }, { "date": new Date("2020-05-05T00:00:00.000Z"), "value": 1039 }, { "date": new Date("2020-05-06T00:00:00.000Z"), "value": 705 }, { "date": new Date("2020-05-07T00:00:00.000Z"), "value": 573 }, { "date": new Date("2020-05-08T00:00:00.000Z"), "value": 514 }, { "date": new Date("2020-05-09T00:00:00.000Z"), "value": 312 }, { "date": new Date("2020-05-10T00:00:00.000Z"), "value": 193 }, { "date": new Date("2020-05-11T00:00:00.000Z"), "value": 549 }, { "date": new Date("2020-05-12T00:00:00.000Z"), "value": 575 }, { "date": new Date("2020-05-13T00:00:00.000Z"), "value": 479 }, { "date": new Date("2020-05-14T00:00:00.000Z"), "value": 434 }, { "date": new Date("2020-05-15T00:00:00.000Z"), "value": 363 }, { "date": new Date("2020-05-16T00:00:00.000Z"), "value": 211 }, { "date": new Date("2020-05-17T00:00:00.000Z"), "value": 146 }, { "date": new Date("2020-05-18T00:00:00.000Z"), "value": 17 } ], "dateRangeLine": { "dataByTopic": [ { "topic": "Credit reporting, credit repair services, or other personal consumer reports", "topicName": "Credit reporting, credit repair services, or other personal consumer reports", "dashed": false, "show": true, "dates": [ { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-01T00:00:00.000Z", "value": 737 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-02T00:00:00.000Z", "value": 738 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-03T00:00:00.000Z", "value": 710 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-04T00:00:00.000Z", "value": 494 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-05T00:00:00.000Z", "value": 350 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-06T00:00:00.000Z", "value": 753 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-07T00:00:00.000Z", "value": 712 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-08T00:00:00.000Z", "value": 717 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-09T00:00:00.000Z", "value": 706 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-10T00:00:00.000Z", "value": 791 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-11T00:00:00.000Z", "value": 402 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-12T00:00:00.000Z", "value": 344 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-13T00:00:00.000Z", "value": 737 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-14T00:00:00.000Z", "value": 768 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-15T00:00:00.000Z", "value": 692 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-16T00:00:00.000Z", "value": 693 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-17T00:00:00.000Z", "value": 792 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-18T00:00:00.000Z", "value": 526 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-19T00:00:00.000Z", "value": 482 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-20T00:00:00.000Z", "value": 764 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-21T00:00:00.000Z", "value": 785 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-22T00:00:00.000Z", "value": 882 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-23T00:00:00.000Z", "value": 926 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-24T00:00:00.000Z", "value": 992 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-25T00:00:00.000Z", "value": 583 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-26T00:00:00.000Z", "value": 457 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-27T00:00:00.000Z", "value": 862 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-28T00:00:00.000Z", "value": 894 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-29T00:00:00.000Z", "value": 892 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-30T00:00:00.000Z", "value": 998 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-01T00:00:00.000Z", "value": 888 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-02T00:00:00.000Z", "value": 516 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-03T00:00:00.000Z", "value": 402 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-04T00:00:00.000Z", "value": 637 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-05T00:00:00.000Z", "value": 697 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-06T00:00:00.000Z", "value": 442 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-07T00:00:00.000Z", "value": 386 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-08T00:00:00.000Z", "value": 326 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-09T00:00:00.000Z", "value": 239 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-10T00:00:00.000Z", "value": 153 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-11T00:00:00.000Z", "value": 403 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-12T00:00:00.000Z", "value": 420 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-13T00:00:00.000Z", "value": 390 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-14T00:00:00.000Z", "value": 363 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-15T00:00:00.000Z", "value": 305 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-16T00:00:00.000Z", "value": 177 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-17T00:00:00.000Z", "value": 119 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-18T00:00:00.000Z", "value": 5 } ] }, { "topic": "Debt collection", "topicName": "Debt collection", "dashed": false, "show": true, "dates": [ { "name": "Debt collection", "date": "2020-04-01T00:00:00.000Z", "value": 167 }, { "name": "Debt collection", "date": "2020-04-02T00:00:00.000Z", "value": 196 }, { "name": "Debt collection", "date": "2020-04-03T00:00:00.000Z", "value": 142 }, { "name": "Debt collection", "date": "2020-04-04T00:00:00.000Z", "value": 82 }, { "name": "Debt collection", "date": "2020-04-05T00:00:00.000Z", "value": 79 }, { "name": "Debt collection", "date": "2020-04-06T00:00:00.000Z", "value": 147 }, { "name": "Debt collection", "date": "2020-04-07T00:00:00.000Z", "value": 182 }, { "name": "Debt collection", "date": "2020-04-08T00:00:00.000Z", "value": 212 }, { "name": "Debt collection", "date": "2020-04-09T00:00:00.000Z", "value": 174 }, { "name": "Debt collection", "date": "2020-04-10T00:00:00.000Z", "value": 171 }, { "name": "Debt collection", "date": "2020-04-11T00:00:00.000Z", "value": 93 }, { "name": "Debt collection", "date": "2020-04-12T00:00:00.000Z", "value": 74 }, { "name": "Debt collection", "date": "2020-04-13T00:00:00.000Z", "value": 136 }, { "name": "Debt collection", "date": "2020-04-14T00:00:00.000Z", "value": 160 }, { "name": "Debt collection", "date": "2020-04-15T00:00:00.000Z", "value": 159 }, { "name": "Debt collection", "date": "2020-04-16T00:00:00.000Z", "value": 198 }, { "name": "Debt collection", "date": "2020-04-17T00:00:00.000Z", "value": 186 }, { "name": "Debt collection", "date": "2020-04-18T00:00:00.000Z", "value": 117 }, { "name": "Debt collection", "date": "2020-04-19T00:00:00.000Z", "value": 75 }, { "name": "Debt collection", "date": "2020-04-20T00:00:00.000Z", "value": 147 }, { "name": "Debt collection", "date": "2020-04-21T00:00:00.000Z", "value": 183 }, { "name": "Debt collection", "date": "2020-04-22T00:00:00.000Z", "value": 186 }, { "name": "Debt collection", "date": "2020-04-23T00:00:00.000Z", "value": 201 }, { "name": "Debt collection", "date": "2020-04-24T00:00:00.000Z", "value": 192 }, { "name": "Debt collection", "date": "2020-04-25T00:00:00.000Z", "value": 81 }, { "name": "Debt collection", "date": "2020-04-26T00:00:00.000Z", "value": 71 }, { "name": "Debt collection", "date": "2020-04-27T00:00:00.000Z", "value": 163 }, { "name": "Debt collection", "date": "2020-04-28T00:00:00.000Z", "value": 202 }, { "name": "Debt collection", "date": "2020-04-29T00:00:00.000Z", "value": 182 }, { "name": "Debt collection", "date": "2020-04-30T00:00:00.000Z", "value": 150 }, { "name": "Debt collection", "date": "2020-05-01T00:00:00.000Z", "value": 138 }, { "name": "Debt collection", "date": "2020-05-02T00:00:00.000Z", "value": 97 }, { "name": "Debt collection", "date": "2020-05-03T00:00:00.000Z", "value": 82 }, { "name": "Debt collection", "date": "2020-05-04T00:00:00.000Z", "value": 134 }, { "name": "Debt collection", "date": "2020-05-05T00:00:00.000Z", "value": 103 }, { "name": "Debt collection", "date": "2020-05-06T00:00:00.000Z", "value": 98 }, { "name": "Debt collection", "date": "2020-05-07T00:00:00.000Z", "value": 66 }, { "name": "Debt collection", "date": "2020-05-08T00:00:00.000Z", "value": 65 }, { "name": "Debt collection", "date": "2020-05-09T00:00:00.000Z", "value": 29 }, { "name": "Debt collection", "date": "2020-05-10T00:00:00.000Z", "value": 17 }, { "name": "Debt collection", "date": "2020-05-11T00:00:00.000Z", "value": 51 }, { "name": "Debt collection", "date": "2020-05-12T00:00:00.000Z", "value": 67 }, { "name": "Debt collection", "date": "2020-05-13T00:00:00.000Z", "value": 37 }, { "name": "Debt collection", "date": "2020-05-14T00:00:00.000Z", "value": 27 }, { "name": "Debt collection", "date": "2020-05-15T00:00:00.000Z", "value": 29 }, { "name": "Debt collection", "date": "2020-05-16T00:00:00.000Z", "value": 11 }, { "name": "Debt collection", "date": "2020-05-17T00:00:00.000Z", "value": 11 }, { "name": "Debt collection", "date": "2020-05-18T00:00:00.000Z", "value": 6 } ] }, { "topic": "Credit card or prepaid card", "topicName": "Credit card or prepaid card", "dashed": false, "show": true, "dates": [ { "name": "Credit card or prepaid card", "date": "2020-04-01T00:00:00.000Z", "value": 115 }, { "name": "Credit card or prepaid card", "date": "2020-04-02T00:00:00.000Z", "value": 83 }, { "name": "Credit card or prepaid card", "date": "2020-04-03T00:00:00.000Z", "value": 118 }, { "name": "Credit card or prepaid card", "date": "2020-04-04T00:00:00.000Z", "value": 54 }, { "name": "Credit card or prepaid card", "date": "2020-04-05T00:00:00.000Z", "value": 30 }, { "name": "Credit card or prepaid card", "date": "2020-04-06T00:00:00.000Z", "value": 104 }, { "name": "Credit card or prepaid card", "date": "2020-04-07T00:00:00.000Z", "value": 133 }, { "name": "Credit card or prepaid card", "date": "2020-04-08T00:00:00.000Z", "value": 110 }, { "name": "Credit card or prepaid card", "date": "2020-04-09T00:00:00.000Z", "value": 99 }, { "name": "Credit card or prepaid card", "date": "2020-04-10T00:00:00.000Z", "value": 117 }, { "name": "Credit card or prepaid card", "date": "2020-04-11T00:00:00.000Z", "value": 47 }, { "name": "Credit card or prepaid card", "date": "2020-04-12T00:00:00.000Z", "value": 46 }, { "name": "Credit card or prepaid card", "date": "2020-04-13T00:00:00.000Z", "value": 122 }, { "name": "Credit card or prepaid card", "date": "2020-04-14T00:00:00.000Z", "value": 140 }, { "name": "Credit card or prepaid card", "date": "2020-04-15T00:00:00.000Z", "value": 133 }, { "name": "Credit card or prepaid card", "date": "2020-04-16T00:00:00.000Z", "value": 137 }, { "name": "Credit card or prepaid card", "date": "2020-04-17T00:00:00.000Z", "value": 107 }, { "name": "Credit card or prepaid card", "date": "2020-04-18T00:00:00.000Z", "value": 66 }, { "name": "Credit card or prepaid card", "date": "2020-04-19T00:00:00.000Z", "value": 43 }, { "name": "Credit card or prepaid card", "date": "2020-04-20T00:00:00.000Z", "value": 112 }, { "name": "Credit card or prepaid card", "date": "2020-04-21T00:00:00.000Z", "value": 132 }, { "name": "Credit card or prepaid card", "date": "2020-04-22T00:00:00.000Z", "value": 153 }, { "name": "Credit card or prepaid card", "date": "2020-04-23T00:00:00.000Z", "value": 161 }, { "name": "Credit card or prepaid card", "date": "2020-04-24T00:00:00.000Z", "value": 124 }, { "name": "Credit card or prepaid card", "date": "2020-04-25T00:00:00.000Z", "value": 66 }, { "name": "Credit card or prepaid card", "date": "2020-04-26T00:00:00.000Z", "value": 67 }, { "name": "Credit card or prepaid card", "date": "2020-04-27T00:00:00.000Z", "value": 131 }, { "name": "Credit card or prepaid card", "date": "2020-04-28T00:00:00.000Z", "value": 119 }, { "name": "Credit card or prepaid card", "date": "2020-04-29T00:00:00.000Z", "value": 140 }, { "name": "Credit card or prepaid card", "date": "2020-04-30T00:00:00.000Z", "value": 128 }, { "name": "Credit card or prepaid card", "date": "2020-05-01T00:00:00.000Z", "value": 113 }, { "name": "Credit card or prepaid card", "date": "2020-05-02T00:00:00.000Z", "value": 61 }, { "name": "Credit card or prepaid card", "date": "2020-05-03T00:00:00.000Z", "value": 41 }, { "name": "Credit card or prepaid card", "date": "2020-05-04T00:00:00.000Z", "value": 78 }, { "name": "Credit card or prepaid card", "date": "2020-05-05T00:00:00.000Z", "value": 100 }, { "name": "Credit card or prepaid card", "date": "2020-05-06T00:00:00.000Z", "value": 60 }, { "name": "Credit card or prepaid card", "date": "2020-05-07T00:00:00.000Z", "value": 37 }, { "name": "Credit card or prepaid card", "date": "2020-05-08T00:00:00.000Z", "value": 46 }, { "name": "Credit card or prepaid card", "date": "2020-05-09T00:00:00.000Z", "value": 17 }, { "name": "Credit card or prepaid card", "date": "2020-05-10T00:00:00.000Z", "value": 12 }, { "name": "Credit card or prepaid card", "date": "2020-05-11T00:00:00.000Z", "value": 31 }, { "name": "Credit card or prepaid card", "date": "2020-05-12T00:00:00.000Z", "value": 32 }, { "name": "Credit card or prepaid card", "date": "2020-05-13T00:00:00.000Z", "value": 23 }, { "name": "Credit card or prepaid card", "date": "2020-05-14T00:00:00.000Z", "value": 22 }, { "name": "Credit card or prepaid card", "date": "2020-05-15T00:00:00.000Z", "value": 11 }, { "name": "Credit card or prepaid card", "date": "2020-05-16T00:00:00.000Z", "value": 15 }, { "name": "Credit card or prepaid card", "date": "2020-05-17T00:00:00.000Z", "value": 9 }, { "name": "Credit card or prepaid card", "date": "2020-05-18T00:00:00.000Z", "value": 4 } ] }, { "topic": "Mortgage", "topicName": "Mortgage", "dashed": false, "show": true, "dates": [ { "name": "Mortgage", "date": "2020-04-01T00:00:00.000Z", "value": 111 }, { "name": "Mortgage", "date": "2020-04-02T00:00:00.000Z", "value": 89 }, { "name": "Mortgage", "date": "2020-04-03T00:00:00.000Z", "value": 95 }, { "name": "Mortgage", "date": "2020-04-04T00:00:00.000Z", "value": 34 }, { "name": "Mortgage", "date": "2020-04-05T00:00:00.000Z", "value": 15 }, { "name": "Mortgage", "date": "2020-04-06T00:00:00.000Z", "value": 88 }, { "name": "Mortgage", "date": "2020-04-07T00:00:00.000Z", "value": 91 }, { "name": "Mortgage", "date": "2020-04-08T00:00:00.000Z", "value": 91 }, { "name": "Mortgage", "date": "2020-04-09T00:00:00.000Z", "value": 113 }, { "name": "Mortgage", "date": "2020-04-10T00:00:00.000Z", "value": 64 }, { "name": "Mortgage", "date": "2020-04-11T00:00:00.000Z", "value": 31 }, { "name": "Mortgage", "date": "2020-04-12T00:00:00.000Z", "value": 16 }, { "name": "Mortgage", "date": "2020-04-13T00:00:00.000Z", "value": 106 }, { "name": "Mortgage", "date": "2020-04-14T00:00:00.000Z", "value": 90 }, { "name": "Mortgage", "date": "2020-04-15T00:00:00.000Z", "value": 92 }, { "name": "Mortgage", "date": "2020-04-16T00:00:00.000Z", "value": 88 }, { "name": "Mortgage", "date": "2020-04-17T00:00:00.000Z", "value": 79 }, { "name": "Mortgage", "date": "2020-04-18T00:00:00.000Z", "value": 30 }, { "name": "Mortgage", "date": "2020-04-19T00:00:00.000Z", "value": 16 }, { "name": "Mortgage", "date": "2020-04-20T00:00:00.000Z", "value": 81 }, { "name": "Mortgage", "date": "2020-04-21T00:00:00.000Z", "value": 97 }, { "name": "Mortgage", "date": "2020-04-22T00:00:00.000Z", "value": 86 }, { "name": "Mortgage", "date": "2020-04-23T00:00:00.000Z", "value": 83 }, { "name": "Mortgage", "date": "2020-04-24T00:00:00.000Z", "value": 82 }, { "name": "Mortgage", "date": "2020-04-25T00:00:00.000Z", "value": 43 }, { "name": "Mortgage", "date": "2020-04-26T00:00:00.000Z", "value": 23 }, { "name": "Mortgage", "date": "2020-04-27T00:00:00.000Z", "value": 79 }, { "name": "Mortgage", "date": "2020-04-28T00:00:00.000Z", "value": 90 }, { "name": "Mortgage", "date": "2020-04-29T00:00:00.000Z", "value": 91 }, { "name": "Mortgage", "date": "2020-04-30T00:00:00.000Z", "value": 85 }, { "name": "Mortgage", "date": "2020-05-01T00:00:00.000Z", "value": 80 }, { "name": "Mortgage", "date": "2020-05-02T00:00:00.000Z", "value": 25 }, { "name": "Mortgage", "date": "2020-05-03T00:00:00.000Z", "value": 26 }, { "name": "Mortgage", "date": "2020-05-04T00:00:00.000Z", "value": 50 }, { "name": "Mortgage", "date": "2020-05-05T00:00:00.000Z", "value": 42 }, { "name": "Mortgage", "date": "2020-05-06T00:00:00.000Z", "value": 28 }, { "name": "Mortgage", "date": "2020-05-07T00:00:00.000Z", "value": 21 }, { "name": "Mortgage", "date": "2020-05-08T00:00:00.000Z", "value": 27 }, { "name": "Mortgage", "date": "2020-05-09T00:00:00.000Z", "value": 8 }, { "name": "Mortgage", "date": "2020-05-10T00:00:00.000Z", "value": 0 }, { "name": "Mortgage", "date": "2020-05-11T00:00:00.000Z", "value": 22 }, { "name": "Mortgage", "date": "2020-05-12T00:00:00.000Z", "value": 12 }, { "name": "Mortgage", "date": "2020-05-13T00:00:00.000Z", "value": 6 }, { "name": "Mortgage", "date": "2020-05-14T00:00:00.000Z", "value": 8 }, { "name": "Mortgage", "date": "2020-05-15T00:00:00.000Z", "value": 8 }, { "name": "Mortgage", "date": "2020-05-16T00:00:00.000Z", "value": 0 }, { "name": "Mortgage", "date": "2020-05-17T00:00:00.000Z", "value": 2 }, { "name": "Mortgage", "date": "2020-05-18T00:00:00.000Z", "value": 0 } ] }, { "topic": "Checking or savings account", "topicName": "Checking or savings account", "dashed": false, "show": true, "dates": [ { "name": "Checking or savings account", "date": "2020-04-01T00:00:00.000Z", "value": 79 }, { "name": "Checking or savings account", "date": "2020-04-02T00:00:00.000Z", "value": 68 }, { "name": "Checking or savings account", "date": "2020-04-03T00:00:00.000Z", "value": 71 }, { "name": "Checking or savings account", "date": "2020-04-04T00:00:00.000Z", "value": 32 }, { "name": "Checking or savings account", "date": "2020-04-05T00:00:00.000Z", "value": 15 }, { "name": "Checking or savings account", "date": "2020-04-06T00:00:00.000Z", "value": 74 }, { "name": "Checking or savings account", "date": "2020-04-07T00:00:00.000Z", "value": 86 }, { "name": "Checking or savings account", "date": "2020-04-08T00:00:00.000Z", "value": 75 }, { "name": "Checking or savings account", "date": "2020-04-09T00:00:00.000Z", "value": 76 }, { "name": "Checking or savings account", "date": "2020-04-10T00:00:00.000Z", "value": 89 }, { "name": "Checking or savings account", "date": "2020-04-11T00:00:00.000Z", "value": 33 }, { "name": "Checking or savings account", "date": "2020-04-12T00:00:00.000Z", "value": 15 }, { "name": "Checking or savings account", "date": "2020-04-13T00:00:00.000Z", "value": 77 }, { "name": "Checking or savings account", "date": "2020-04-14T00:00:00.000Z", "value": 69 }, { "name": "Checking or savings account", "date": "2020-04-15T00:00:00.000Z", "value": 76 }, { "name": "Checking or savings account", "date": "2020-04-16T00:00:00.000Z", "value": 94 }, { "name": "Checking or savings account", "date": "2020-04-17T00:00:00.000Z", "value": 68 }, { "name": "Checking or savings account", "date": "2020-04-18T00:00:00.000Z", "value": 23 }, { "name": "Checking or savings account", "date": "2020-04-19T00:00:00.000Z", "value": 16 }, { "name": "Checking or savings account", "date": "2020-04-20T00:00:00.000Z", "value": 75 }, { "name": "Checking or savings account", "date": "2020-04-21T00:00:00.000Z", "value": 86 }, { "name": "Checking or savings account", "date": "2020-04-22T00:00:00.000Z", "value": 92 }, { "name": "Checking or savings account", "date": "2020-04-23T00:00:00.000Z", "value": 74 }, { "name": "Checking or savings account", "date": "2020-04-24T00:00:00.000Z", "value": 74 }, { "name": "Checking or savings account", "date": "2020-04-25T00:00:00.000Z", "value": 46 }, { "name": "Checking or savings account", "date": "2020-04-26T00:00:00.000Z", "value": 35 }, { "name": "Checking or savings account", "date": "2020-04-27T00:00:00.000Z", "value": 106 }, { "name": "Checking or savings account", "date": "2020-04-28T00:00:00.000Z", "value": 104 }, { "name": "Checking or savings account", "date": "2020-04-29T00:00:00.000Z", "value": 116 }, { "name": "Checking or savings account", "date": "2020-04-30T00:00:00.000Z", "value": 86 }, { "name": "Checking or savings account", "date": "2020-05-01T00:00:00.000Z", "value": 77 }, { "name": "Checking or savings account", "date": "2020-05-02T00:00:00.000Z", "value": 20 }, { "name": "Checking or savings account", "date": "2020-05-03T00:00:00.000Z", "value": 16 }, { "name": "Checking or savings account", "date": "2020-05-04T00:00:00.000Z", "value": 62 }, { "name": "Checking or savings account", "date": "2020-05-05T00:00:00.000Z", "value": 47 }, { "name": "Checking or savings account", "date": "2020-05-06T00:00:00.000Z", "value": 36 }, { "name": "Checking or savings account", "date": "2020-05-07T00:00:00.000Z", "value": 30 }, { "name": "Checking or savings account", "date": "2020-05-08T00:00:00.000Z", "value": 22 }, { "name": "Checking or savings account", "date": "2020-05-09T00:00:00.000Z", "value": 7 }, { "name": "Checking or savings account", "date": "2020-05-10T00:00:00.000Z", "value": 3 }, { "name": "Checking or savings account", "date": "2020-05-11T00:00:00.000Z", "value": 20 }, { "name": "Checking or savings account", "date": "2020-05-12T00:00:00.000Z", "value": 18 }, { "name": "Checking or savings account", "date": "2020-05-13T00:00:00.000Z", "value": 13 }, { "name": "Checking or savings account", "date": "2020-05-14T00:00:00.000Z", "value": 5 }, { "name": "Checking or savings account", "date": "2020-05-15T00:00:00.000Z", "value": 2 }, { "name": "Checking or savings account", "date": "2020-05-16T00:00:00.000Z", "value": 2 }, { "name": "Checking or savings account", "date": "2020-05-17T00:00:00.000Z", "value": 2 }, { "name": "Checking or savings account", "date": "2020-05-18T00:00:00.000Z", "value": 1 } ] } ] }, "issue": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 15.93, "name": "Incorrect information on your report", "value": 247706, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 8.73, "name": "Information belongs to someone else", "value": 135795, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.52, "name": "Account status incorrect", "value": 39240, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.3, "name": "Account information incorrect", "value": 35733, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.75, "name": "Personal information incorrect", "value": 11632, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.6, "name": "Public record information inaccurate", "value": 9279, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.6, "name": "Old information reappears or never goes away", "value": 9275, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.29, "name": "Information is missing that should be on the report", "value": 4492, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.04, "name": "Information is incorrect", "value": 684, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.01, "name": "Information that should be on the report is missing", "value": 115, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Incorrect information on your report ", "value": 1, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 6.61, "name": "Incorrect information on credit report", "value": 102686, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.38, "name": "Account status", "value": 37057, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.08, "name": "Information is not mine", "value": 32384, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.71, "name": "Account terms", "value": 10995, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.57, "name": "Public record", "value": 8876, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.48, "name": "Personal information", "value": 7529, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.38, "name": "Reinserted previously deleted info", "value": 5845, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 6.53, "name": "Loan modification,collection,foreclosure", "value": 101564, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 5.65, "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 87778, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 4.06, "name": "Their investigation did not fix an error on your report", "value": 63190, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.46, "name": "Investigation took more than 30 days", "value": 7222, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.42, "name": "Was not notified of investigation status or results", "value": 6586, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.39, "name": "Difficulty submitting a dispute or getting information about a dispute over the phone", "value": 5998, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.28, "name": "Problem with personal statement of dispute", "value": 4377, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 4.64, "name": "Loan servicing, payments, escrow account", "value": 72149, "parent": false, "visible": true, "width": 0.5 } ], "product": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 62.42, "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 28047, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 61.92, "name": "Credit reporting", "value": 27822, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.4, "name": "Other personal consumer report", "value": 179, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.1, "name": "Credit repair services", "value": 46, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Credit reporting, credit repair services, or other personal consumer reports", "name": "More Information about Credit reporting, credit repair services, or other personal consumer reports", "splitterText": "More Information about Credit reporting, credit repair services, or other personal consumer reports", "value": "", "parent": "Credit reporting, credit repair services, or other personal consumer reports", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 12.41, "name": "Debt collection", "value": 5576, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 3.19, "name": "I do not know", "value": 1435, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 3.19, "name": "Other debt", "value": 1435, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.96, "name": "Credit card debt", "value": 1332, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 1.91, "name": "Medical debt", "value": 858, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.39, "name": "Auto debt", "value": 175, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Debt collection", "name": "More Information about Debt collection", "splitterText": "More Information about Debt collection", "value": "", "parent": "Debt collection", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 8.57, "name": "Credit card or prepaid card", "value": 3849, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 6.14, "name": "General-purpose credit card or charge card", "value": 2759, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 1.03, "name": "Store credit card", "value": 463, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.8, "name": "Government benefit card", "value": 360, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.53, "name": "General-purpose prepaid card", "value": 236, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.05, "name": "Payroll card", "value": 24, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Credit card or prepaid card", "name": "More Information about Credit card or prepaid card", "splitterText": "More Information about Credit card or prepaid card", "value": "", "parent": "Credit card or prepaid card", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 5.66, "name": "Mortgage", "value": 2544, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 3.58, "name": "Conventional home mortgage", "value": 1607, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.97, "name": "FHA mortgage", "value": 437, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.44, "name": "VA mortgage", "value": 199, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.31, "name": "Home equity loan or line of credit (HELOC)", "value": 141, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.31, "name": "Other type of mortgage", "value": 138, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Mortgage", "name": "More Information about Mortgage", "splitterText": "More Information about Mortgage", "value": "", "parent": "Mortgage", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 5.37, "name": "Checking or savings account", "value": 2413, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 4.24, "name": "Checking account", "value": 1906, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.62, "name": "Other banking product or service", "value": 279, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.37, "name": "Savings account", "value": 167, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.14, "name": "CD (Certificate of Deposit)", "value": 61, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Checking or savings account", "name": "More Information about Checking or savings account", "splitterText": "More Information about Checking or savings account", "value": "", "parent": "Checking or savings account", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false } ], "collections": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 6.95, "name": "Servicemember", "value": 5172, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 3.16, "name": "Older American", "value": 2352, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0.86, "name": "Older American, Servicemember", "value": 640, "parent": false, "visible": true, "width": 0.5 } ], "tags": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 7.05, "name": "Servicemember", "value": 109650, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 5.51, "name": "Older American", "value": 85620, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 1.15, "name": "Older American, Servicemember", "value": 17831, "parent": false, "visible": true, "width": 0.5 } ] }, "subLens": "", "tooltip": false, "total": 44933 }
+export default { "activeCall": "", "chartType": "line", "colorMap": { "Credit reporting, credit repair services, or other personal consumer reports": "#2cb34a", "Debt collection": "#addc91", "Credit card or prepaid card": "#257675", "Mortgage": "#9ec4c3", "Checking or savings account": "#0072ce", "Complaints": "#ADDC91", "All other products": "#a2a3a4" }, "error": false, "expandedTrends": [], "filterNames": [ "Credit reporting, credit repair services, or other personal consumer reports", "Debt collection", "Credit card or prepaid card", "Mortgage", "Checking or savings account", "Incorrect information on your report", "Problem with a credit reporting company's investigation into an existing problem", "Attempts to collect debt not owed", "Managing an account", "Improper use of your report", "Bank account or service", "Incorrect information on credit report" ], "focus": "", "isLoading": false, "lastDate": "2020-05-18T00:00:00.000Z", "lens": "Product", "results": { "dateRangeArea": [ { "name": "All other products", "value": 67, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "All other products", "value": 72, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "All other products", "value": 82, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "All other products", "value": 36, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "All other products", "value": 20, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "All other products", "value": 76, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "All other products", "value": 64, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "All other products", "value": 67, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "All other products", "value": 79, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "All other products", "value": 92, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "All other products", "value": 46, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "All other products", "value": 21, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "All other products", "value": 71, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "All other products", "value": 66, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "All other products", "value": 68, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "All other products", "value": 77, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "All other products", "value": 79, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "All other products", "value": 41, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "All other products", "value": 37, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "All other products", "value": 72, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "All other products", "value": 79, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "All other products", "value": 87, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "All other products", "value": 83, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "All other products", "value": 97, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "All other products", "value": 55, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "All other products", "value": 44, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "All other products", "value": 114, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "All other products", "value": 97, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "All other products", "value": 113, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "All other products", "value": 77, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "All other products", "value": 70, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "All other products", "value": 32, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "All other products", "value": 24, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "All other products", "value": 42, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "All other products", "value": 50, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "All other products", "value": 41, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "All other products", "value": 33, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "All other products", "value": 28, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "All other products", "value": 12, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "All other products", "value": 8, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "All other products", "value": 22, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "All other products", "value": 26, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "All other products", "value": 10, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "All other products", "value": 9, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "All other products", "value": 8, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "All other products", "value": 6, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "All other products", "value": 3, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "All other products", "value": 1, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 737, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 738, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 710, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 494, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 350, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 753, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 712, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 717, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 706, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 791, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 402, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 344, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 737, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 768, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 692, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 693, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 792, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 526, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 482, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 764, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 785, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 882, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 926, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 992, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 583, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 457, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 862, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 894, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 892, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 998, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 888, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 516, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 402, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 637, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 697, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 442, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 386, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 326, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 239, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 153, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 403, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 420, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 390, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 363, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 305, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 177, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 119, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 5, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Debt collection", "value": 167, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Debt collection", "value": 196, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Debt collection", "value": 142, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Debt collection", "value": 82, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Debt collection", "value": 79, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Debt collection", "value": 147, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Debt collection", "value": 182, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Debt collection", "value": 212, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Debt collection", "value": 174, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Debt collection", "value": 171, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Debt collection", "value": 93, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Debt collection", "value": 74, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Debt collection", "value": 136, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Debt collection", "value": 160, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Debt collection", "value": 159, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Debt collection", "value": 198, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Debt collection", "value": 186, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Debt collection", "value": 117, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Debt collection", "value": 75, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Debt collection", "value": 147, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Debt collection", "value": 183, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Debt collection", "value": 186, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Debt collection", "value": 201, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Debt collection", "value": 192, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Debt collection", "value": 81, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Debt collection", "value": 71, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Debt collection", "value": 163, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Debt collection", "value": 202, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Debt collection", "value": 182, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Debt collection", "value": 150, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Debt collection", "value": 138, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Debt collection", "value": 97, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Debt collection", "value": 82, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Debt collection", "value": 134, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Debt collection", "value": 103, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Debt collection", "value": 98, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Debt collection", "value": 66, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Debt collection", "value": 65, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Debt collection", "value": 29, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Debt collection", "value": 17, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Debt collection", "value": 51, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Debt collection", "value": 67, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Debt collection", "value": 37, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Debt collection", "value": 27, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Debt collection", "value": 29, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Debt collection", "value": 11, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Debt collection", "value": 11, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Debt collection", "value": 6, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 115, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 83, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 118, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 54, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 30, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 104, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 133, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 110, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 99, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 117, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 47, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 46, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 122, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 140, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 133, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 137, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 107, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 66, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 43, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 112, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 132, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 153, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 161, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 124, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 66, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 67, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 131, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 119, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 140, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 128, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 113, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 61, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 41, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 78, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 100, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 60, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 37, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 46, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 17, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 12, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 31, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 32, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 23, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 22, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 11, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 15, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 9, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 4, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Mortgage", "value": 111, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Mortgage", "value": 89, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Mortgage", "value": 95, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Mortgage", "value": 34, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Mortgage", "value": 15, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Mortgage", "value": 88, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Mortgage", "value": 91, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Mortgage", "value": 91, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Mortgage", "value": 113, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Mortgage", "value": 64, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Mortgage", "value": 31, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Mortgage", "value": 16, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Mortgage", "value": 106, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Mortgage", "value": 90, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Mortgage", "value": 92, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Mortgage", "value": 88, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Mortgage", "value": 79, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Mortgage", "value": 30, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Mortgage", "value": 16, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Mortgage", "value": 81, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Mortgage", "value": 97, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Mortgage", "value": 86, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Mortgage", "value": 83, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Mortgage", "value": 82, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Mortgage", "value": 43, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Mortgage", "value": 23, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Mortgage", "value": 79, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Mortgage", "value": 90, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Mortgage", "value": 91, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Mortgage", "value": 85, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Mortgage", "value": 80, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Mortgage", "value": 25, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Mortgage", "value": 26, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Mortgage", "value": 50, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Mortgage", "value": 42, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Mortgage", "value": 28, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Mortgage", "value": 21, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Mortgage", "value": 27, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Mortgage", "value": 8, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Mortgage", "value": 0, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Mortgage", "value": 22, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Mortgage", "value": 12, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Mortgage", "value": 6, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Mortgage", "value": 8, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Mortgage", "value": 8, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Mortgage", "value": 0, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Mortgage", "value": 2, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Mortgage", "value": 0, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 79, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 68, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 71, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 32, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 15, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 74, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 86, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 75, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 76, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 89, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 33, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 15, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 77, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 69, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 76, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 94, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 68, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 23, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 16, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 75, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 86, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 92, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 74, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 74, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 46, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 35, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 106, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 104, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 116, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 86, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 77, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 20, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 16, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 62, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 47, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 36, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 30, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 22, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 7, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 3, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 20, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 18, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 13, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 5, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 2, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 2, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 2, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 1, "date": new Date("2020-05-18T00:00:00.000Z") } ], "dateRangeBrush": [ { "date": new Date("2020-04-01T00:00:00.000Z"), "value": 1276 }, { "date": new Date("2020-04-02T00:00:00.000Z"), "value": 1246 }, { "date": new Date("2020-04-03T00:00:00.000Z"), "value": 1218 }, { "date": new Date("2020-04-04T00:00:00.000Z"), "value": 732 }, { "date": new Date("2020-04-05T00:00:00.000Z"), "value": 509 }, { "date": new Date("2020-04-06T00:00:00.000Z"), "value": 1242 }, { "date": new Date("2020-04-07T00:00:00.000Z"), "value": 1268 }, { "date": new Date("2020-04-08T00:00:00.000Z"), "value": 1272 }, { "date": new Date("2020-04-09T00:00:00.000Z"), "value": 1247 }, { "date": new Date("2020-04-10T00:00:00.000Z"), "value": 1324 }, { "date": new Date("2020-04-11T00:00:00.000Z"), "value": 652 }, { "date": new Date("2020-04-12T00:00:00.000Z"), "value": 516 }, { "date": new Date("2020-04-13T00:00:00.000Z"), "value": 1249 }, { "date": new Date("2020-04-14T00:00:00.000Z"), "value": 1293 }, { "date": new Date("2020-04-15T00:00:00.000Z"), "value": 1220 }, { "date": new Date("2020-04-16T00:00:00.000Z"), "value": 1287 }, { "date": new Date("2020-04-17T00:00:00.000Z"), "value": 1311 }, { "date": new Date("2020-04-18T00:00:00.000Z"), "value": 803 }, { "date": new Date("2020-04-19T00:00:00.000Z"), "value": 669 }, { "date": new Date("2020-04-20T00:00:00.000Z"), "value": 1251 }, { "date": new Date("2020-04-21T00:00:00.000Z"), "value": 1362 }, { "date": new Date("2020-04-22T00:00:00.000Z"), "value": 1486 }, { "date": new Date("2020-04-23T00:00:00.000Z"), "value": 1528 }, { "date": new Date("2020-04-24T00:00:00.000Z"), "value": 1561 }, { "date": new Date("2020-04-25T00:00:00.000Z"), "value": 874 }, { "date": new Date("2020-04-26T00:00:00.000Z"), "value": 697 }, { "date": new Date("2020-04-27T00:00:00.000Z"), "value": 1455 }, { "date": new Date("2020-04-28T00:00:00.000Z"), "value": 1506 }, { "date": new Date("2020-04-29T00:00:00.000Z"), "value": 1534 }, { "date": new Date("2020-04-30T00:00:00.000Z"), "value": 1524 }, { "date": new Date("2020-05-01T00:00:00.000Z"), "value": 1366 }, { "date": new Date("2020-05-02T00:00:00.000Z"), "value": 751 }, { "date": new Date("2020-05-03T00:00:00.000Z"), "value": 591 }, { "date": new Date("2020-05-04T00:00:00.000Z"), "value": 1003 }, { "date": new Date("2020-05-05T00:00:00.000Z"), "value": 1039 }, { "date": new Date("2020-05-06T00:00:00.000Z"), "value": 705 }, { "date": new Date("2020-05-07T00:00:00.000Z"), "value": 573 }, { "date": new Date("2020-05-08T00:00:00.000Z"), "value": 514 }, { "date": new Date("2020-05-09T00:00:00.000Z"), "value": 312 }, { "date": new Date("2020-05-10T00:00:00.000Z"), "value": 193 }, { "date": new Date("2020-05-11T00:00:00.000Z"), "value": 549 }, { "date": new Date("2020-05-12T00:00:00.000Z"), "value": 575 }, { "date": new Date("2020-05-13T00:00:00.000Z"), "value": 479 }, { "date": new Date("2020-05-14T00:00:00.000Z"), "value": 434 }, { "date": new Date("2020-05-15T00:00:00.000Z"), "value": 363 }, { "date": new Date("2020-05-16T00:00:00.000Z"), "value": 211 }, { "date": new Date("2020-05-17T00:00:00.000Z"), "value": 146 }, { "date": new Date("2020-05-18T00:00:00.000Z"), "value": 17 } ], "dateRangeLine": { "dataByTopic": [ { "topic": "Credit reporting, credit repair services, or other personal consumer reports", "topicName": "Credit reporting, credit repair services, or other personal consumer reports", "dashed": false, "show": true, "dates": [ { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-01T00:00:00.000Z", "value": 737 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-02T00:00:00.000Z", "value": 738 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-03T00:00:00.000Z", "value": 710 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-04T00:00:00.000Z", "value": 494 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-05T00:00:00.000Z", "value": 350 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-06T00:00:00.000Z", "value": 753 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-07T00:00:00.000Z", "value": 712 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-08T00:00:00.000Z", "value": 717 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-09T00:00:00.000Z", "value": 706 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-10T00:00:00.000Z", "value": 791 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-11T00:00:00.000Z", "value": 402 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-12T00:00:00.000Z", "value": 344 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-13T00:00:00.000Z", "value": 737 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-14T00:00:00.000Z", "value": 768 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-15T00:00:00.000Z", "value": 692 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-16T00:00:00.000Z", "value": 693 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-17T00:00:00.000Z", "value": 792 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-18T00:00:00.000Z", "value": 526 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-19T00:00:00.000Z", "value": 482 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-20T00:00:00.000Z", "value": 764 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-21T00:00:00.000Z", "value": 785 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-22T00:00:00.000Z", "value": 882 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-23T00:00:00.000Z", "value": 926 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-24T00:00:00.000Z", "value": 992 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-25T00:00:00.000Z", "value": 583 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-26T00:00:00.000Z", "value": 457 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-27T00:00:00.000Z", "value": 862 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-28T00:00:00.000Z", "value": 894 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-29T00:00:00.000Z", "value": 892 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-30T00:00:00.000Z", "value": 998 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-01T00:00:00.000Z", "value": 888 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-02T00:00:00.000Z", "value": 516 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-03T00:00:00.000Z", "value": 402 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-04T00:00:00.000Z", "value": 637 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-05T00:00:00.000Z", "value": 697 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-06T00:00:00.000Z", "value": 442 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-07T00:00:00.000Z", "value": 386 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-08T00:00:00.000Z", "value": 326 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-09T00:00:00.000Z", "value": 239 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-10T00:00:00.000Z", "value": 153 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-11T00:00:00.000Z", "value": 403 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-12T00:00:00.000Z", "value": 420 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-13T00:00:00.000Z", "value": 390 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-14T00:00:00.000Z", "value": 363 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-15T00:00:00.000Z", "value": 305 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-16T00:00:00.000Z", "value": 177 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-17T00:00:00.000Z", "value": 119 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-18T00:00:00.000Z", "value": 5 } ] }, { "topic": "Debt collection", "topicName": "Debt collection", "dashed": false, "show": true, "dates": [ { "name": "Debt collection", "date": "2020-04-01T00:00:00.000Z", "value": 167 }, { "name": "Debt collection", "date": "2020-04-02T00:00:00.000Z", "value": 196 }, { "name": "Debt collection", "date": "2020-04-03T00:00:00.000Z", "value": 142 }, { "name": "Debt collection", "date": "2020-04-04T00:00:00.000Z", "value": 82 }, { "name": "Debt collection", "date": "2020-04-05T00:00:00.000Z", "value": 79 }, { "name": "Debt collection", "date": "2020-04-06T00:00:00.000Z", "value": 147 }, { "name": "Debt collection", "date": "2020-04-07T00:00:00.000Z", "value": 182 }, { "name": "Debt collection", "date": "2020-04-08T00:00:00.000Z", "value": 212 }, { "name": "Debt collection", "date": "2020-04-09T00:00:00.000Z", "value": 174 }, { "name": "Debt collection", "date": "2020-04-10T00:00:00.000Z", "value": 171 }, { "name": "Debt collection", "date": "2020-04-11T00:00:00.000Z", "value": 93 }, { "name": "Debt collection", "date": "2020-04-12T00:00:00.000Z", "value": 74 }, { "name": "Debt collection", "date": "2020-04-13T00:00:00.000Z", "value": 136 }, { "name": "Debt collection", "date": "2020-04-14T00:00:00.000Z", "value": 160 }, { "name": "Debt collection", "date": "2020-04-15T00:00:00.000Z", "value": 159 }, { "name": "Debt collection", "date": "2020-04-16T00:00:00.000Z", "value": 198 }, { "name": "Debt collection", "date": "2020-04-17T00:00:00.000Z", "value": 186 }, { "name": "Debt collection", "date": "2020-04-18T00:00:00.000Z", "value": 117 }, { "name": "Debt collection", "date": "2020-04-19T00:00:00.000Z", "value": 75 }, { "name": "Debt collection", "date": "2020-04-20T00:00:00.000Z", "value": 147 }, { "name": "Debt collection", "date": "2020-04-21T00:00:00.000Z", "value": 183 }, { "name": "Debt collection", "date": "2020-04-22T00:00:00.000Z", "value": 186 }, { "name": "Debt collection", "date": "2020-04-23T00:00:00.000Z", "value": 201 }, { "name": "Debt collection", "date": "2020-04-24T00:00:00.000Z", "value": 192 }, { "name": "Debt collection", "date": "2020-04-25T00:00:00.000Z", "value": 81 }, { "name": "Debt collection", "date": "2020-04-26T00:00:00.000Z", "value": 71 }, { "name": "Debt collection", "date": "2020-04-27T00:00:00.000Z", "value": 163 }, { "name": "Debt collection", "date": "2020-04-28T00:00:00.000Z", "value": 202 }, { "name": "Debt collection", "date": "2020-04-29T00:00:00.000Z", "value": 182 }, { "name": "Debt collection", "date": "2020-04-30T00:00:00.000Z", "value": 150 }, { "name": "Debt collection", "date": "2020-05-01T00:00:00.000Z", "value": 138 }, { "name": "Debt collection", "date": "2020-05-02T00:00:00.000Z", "value": 97 }, { "name": "Debt collection", "date": "2020-05-03T00:00:00.000Z", "value": 82 }, { "name": "Debt collection", "date": "2020-05-04T00:00:00.000Z", "value": 134 }, { "name": "Debt collection", "date": "2020-05-05T00:00:00.000Z", "value": 103 }, { "name": "Debt collection", "date": "2020-05-06T00:00:00.000Z", "value": 98 }, { "name": "Debt collection", "date": "2020-05-07T00:00:00.000Z", "value": 66 }, { "name": "Debt collection", "date": "2020-05-08T00:00:00.000Z", "value": 65 }, { "name": "Debt collection", "date": "2020-05-09T00:00:00.000Z", "value": 29 }, { "name": "Debt collection", "date": "2020-05-10T00:00:00.000Z", "value": 17 }, { "name": "Debt collection", "date": "2020-05-11T00:00:00.000Z", "value": 51 }, { "name": "Debt collection", "date": "2020-05-12T00:00:00.000Z", "value": 67 }, { "name": "Debt collection", "date": "2020-05-13T00:00:00.000Z", "value": 37 }, { "name": "Debt collection", "date": "2020-05-14T00:00:00.000Z", "value": 27 }, { "name": "Debt collection", "date": "2020-05-15T00:00:00.000Z", "value": 29 }, { "name": "Debt collection", "date": "2020-05-16T00:00:00.000Z", "value": 11 }, { "name": "Debt collection", "date": "2020-05-17T00:00:00.000Z", "value": 11 }, { "name": "Debt collection", "date": "2020-05-18T00:00:00.000Z", "value": 6 } ] }, { "topic": "Credit card or prepaid card", "topicName": "Credit card or prepaid card", "dashed": false, "show": true, "dates": [ { "name": "Credit card or prepaid card", "date": "2020-04-01T00:00:00.000Z", "value": 115 }, { "name": "Credit card or prepaid card", "date": "2020-04-02T00:00:00.000Z", "value": 83 }, { "name": "Credit card or prepaid card", "date": "2020-04-03T00:00:00.000Z", "value": 118 }, { "name": "Credit card or prepaid card", "date": "2020-04-04T00:00:00.000Z", "value": 54 }, { "name": "Credit card or prepaid card", "date": "2020-04-05T00:00:00.000Z", "value": 30 }, { "name": "Credit card or prepaid card", "date": "2020-04-06T00:00:00.000Z", "value": 104 }, { "name": "Credit card or prepaid card", "date": "2020-04-07T00:00:00.000Z", "value": 133 }, { "name": "Credit card or prepaid card", "date": "2020-04-08T00:00:00.000Z", "value": 110 }, { "name": "Credit card or prepaid card", "date": "2020-04-09T00:00:00.000Z", "value": 99 }, { "name": "Credit card or prepaid card", "date": "2020-04-10T00:00:00.000Z", "value": 117 }, { "name": "Credit card or prepaid card", "date": "2020-04-11T00:00:00.000Z", "value": 47 }, { "name": "Credit card or prepaid card", "date": "2020-04-12T00:00:00.000Z", "value": 46 }, { "name": "Credit card or prepaid card", "date": "2020-04-13T00:00:00.000Z", "value": 122 }, { "name": "Credit card or prepaid card", "date": "2020-04-14T00:00:00.000Z", "value": 140 }, { "name": "Credit card or prepaid card", "date": "2020-04-15T00:00:00.000Z", "value": 133 }, { "name": "Credit card or prepaid card", "date": "2020-04-16T00:00:00.000Z", "value": 137 }, { "name": "Credit card or prepaid card", "date": "2020-04-17T00:00:00.000Z", "value": 107 }, { "name": "Credit card or prepaid card", "date": "2020-04-18T00:00:00.000Z", "value": 66 }, { "name": "Credit card or prepaid card", "date": "2020-04-19T00:00:00.000Z", "value": 43 }, { "name": "Credit card or prepaid card", "date": "2020-04-20T00:00:00.000Z", "value": 112 }, { "name": "Credit card or prepaid card", "date": "2020-04-21T00:00:00.000Z", "value": 132 }, { "name": "Credit card or prepaid card", "date": "2020-04-22T00:00:00.000Z", "value": 153 }, { "name": "Credit card or prepaid card", "date": "2020-04-23T00:00:00.000Z", "value": 161 }, { "name": "Credit card or prepaid card", "date": "2020-04-24T00:00:00.000Z", "value": 124 }, { "name": "Credit card or prepaid card", "date": "2020-04-25T00:00:00.000Z", "value": 66 }, { "name": "Credit card or prepaid card", "date": "2020-04-26T00:00:00.000Z", "value": 67 }, { "name": "Credit card or prepaid card", "date": "2020-04-27T00:00:00.000Z", "value": 131 }, { "name": "Credit card or prepaid card", "date": "2020-04-28T00:00:00.000Z", "value": 119 }, { "name": "Credit card or prepaid card", "date": "2020-04-29T00:00:00.000Z", "value": 140 }, { "name": "Credit card or prepaid card", "date": "2020-04-30T00:00:00.000Z", "value": 128 }, { "name": "Credit card or prepaid card", "date": "2020-05-01T00:00:00.000Z", "value": 113 }, { "name": "Credit card or prepaid card", "date": "2020-05-02T00:00:00.000Z", "value": 61 }, { "name": "Credit card or prepaid card", "date": "2020-05-03T00:00:00.000Z", "value": 41 }, { "name": "Credit card or prepaid card", "date": "2020-05-04T00:00:00.000Z", "value": 78 }, { "name": "Credit card or prepaid card", "date": "2020-05-05T00:00:00.000Z", "value": 100 }, { "name": "Credit card or prepaid card", "date": "2020-05-06T00:00:00.000Z", "value": 60 }, { "name": "Credit card or prepaid card", "date": "2020-05-07T00:00:00.000Z", "value": 37 }, { "name": "Credit card or prepaid card", "date": "2020-05-08T00:00:00.000Z", "value": 46 }, { "name": "Credit card or prepaid card", "date": "2020-05-09T00:00:00.000Z", "value": 17 }, { "name": "Credit card or prepaid card", "date": "2020-05-10T00:00:00.000Z", "value": 12 }, { "name": "Credit card or prepaid card", "date": "2020-05-11T00:00:00.000Z", "value": 31 }, { "name": "Credit card or prepaid card", "date": "2020-05-12T00:00:00.000Z", "value": 32 }, { "name": "Credit card or prepaid card", "date": "2020-05-13T00:00:00.000Z", "value": 23 }, { "name": "Credit card or prepaid card", "date": "2020-05-14T00:00:00.000Z", "value": 22 }, { "name": "Credit card or prepaid card", "date": "2020-05-15T00:00:00.000Z", "value": 11 }, { "name": "Credit card or prepaid card", "date": "2020-05-16T00:00:00.000Z", "value": 15 }, { "name": "Credit card or prepaid card", "date": "2020-05-17T00:00:00.000Z", "value": 9 }, { "name": "Credit card or prepaid card", "date": "2020-05-18T00:00:00.000Z", "value": 4 } ] }, { "topic": "Mortgage", "topicName": "Mortgage", "dashed": false, "show": true, "dates": [ { "name": "Mortgage", "date": "2020-04-01T00:00:00.000Z", "value": 111 }, { "name": "Mortgage", "date": "2020-04-02T00:00:00.000Z", "value": 89 }, { "name": "Mortgage", "date": "2020-04-03T00:00:00.000Z", "value": 95 }, { "name": "Mortgage", "date": "2020-04-04T00:00:00.000Z", "value": 34 }, { "name": "Mortgage", "date": "2020-04-05T00:00:00.000Z", "value": 15 }, { "name": "Mortgage", "date": "2020-04-06T00:00:00.000Z", "value": 88 }, { "name": "Mortgage", "date": "2020-04-07T00:00:00.000Z", "value": 91 }, { "name": "Mortgage", "date": "2020-04-08T00:00:00.000Z", "value": 91 }, { "name": "Mortgage", "date": "2020-04-09T00:00:00.000Z", "value": 113 }, { "name": "Mortgage", "date": "2020-04-10T00:00:00.000Z", "value": 64 }, { "name": "Mortgage", "date": "2020-04-11T00:00:00.000Z", "value": 31 }, { "name": "Mortgage", "date": "2020-04-12T00:00:00.000Z", "value": 16 }, { "name": "Mortgage", "date": "2020-04-13T00:00:00.000Z", "value": 106 }, { "name": "Mortgage", "date": "2020-04-14T00:00:00.000Z", "value": 90 }, { "name": "Mortgage", "date": "2020-04-15T00:00:00.000Z", "value": 92 }, { "name": "Mortgage", "date": "2020-04-16T00:00:00.000Z", "value": 88 }, { "name": "Mortgage", "date": "2020-04-17T00:00:00.000Z", "value": 79 }, { "name": "Mortgage", "date": "2020-04-18T00:00:00.000Z", "value": 30 }, { "name": "Mortgage", "date": "2020-04-19T00:00:00.000Z", "value": 16 }, { "name": "Mortgage", "date": "2020-04-20T00:00:00.000Z", "value": 81 }, { "name": "Mortgage", "date": "2020-04-21T00:00:00.000Z", "value": 97 }, { "name": "Mortgage", "date": "2020-04-22T00:00:00.000Z", "value": 86 }, { "name": "Mortgage", "date": "2020-04-23T00:00:00.000Z", "value": 83 }, { "name": "Mortgage", "date": "2020-04-24T00:00:00.000Z", "value": 82 }, { "name": "Mortgage", "date": "2020-04-25T00:00:00.000Z", "value": 43 }, { "name": "Mortgage", "date": "2020-04-26T00:00:00.000Z", "value": 23 }, { "name": "Mortgage", "date": "2020-04-27T00:00:00.000Z", "value": 79 }, { "name": "Mortgage", "date": "2020-04-28T00:00:00.000Z", "value": 90 }, { "name": "Mortgage", "date": "2020-04-29T00:00:00.000Z", "value": 91 }, { "name": "Mortgage", "date": "2020-04-30T00:00:00.000Z", "value": 85 }, { "name": "Mortgage", "date": "2020-05-01T00:00:00.000Z", "value": 80 }, { "name": "Mortgage", "date": "2020-05-02T00:00:00.000Z", "value": 25 }, { "name": "Mortgage", "date": "2020-05-03T00:00:00.000Z", "value": 26 }, { "name": "Mortgage", "date": "2020-05-04T00:00:00.000Z", "value": 50 }, { "name": "Mortgage", "date": "2020-05-05T00:00:00.000Z", "value": 42 }, { "name": "Mortgage", "date": "2020-05-06T00:00:00.000Z", "value": 28 }, { "name": "Mortgage", "date": "2020-05-07T00:00:00.000Z", "value": 21 }, { "name": "Mortgage", "date": "2020-05-08T00:00:00.000Z", "value": 27 }, { "name": "Mortgage", "date": "2020-05-09T00:00:00.000Z", "value": 8 }, { "name": "Mortgage", "date": "2020-05-10T00:00:00.000Z", "value": 0 }, { "name": "Mortgage", "date": "2020-05-11T00:00:00.000Z", "value": 22 }, { "name": "Mortgage", "date": "2020-05-12T00:00:00.000Z", "value": 12 }, { "name": "Mortgage", "date": "2020-05-13T00:00:00.000Z", "value": 6 }, { "name": "Mortgage", "date": "2020-05-14T00:00:00.000Z", "value": 8 }, { "name": "Mortgage", "date": "2020-05-15T00:00:00.000Z", "value": 8 }, { "name": "Mortgage", "date": "2020-05-16T00:00:00.000Z", "value": 0 }, { "name": "Mortgage", "date": "2020-05-17T00:00:00.000Z", "value": 2 }, { "name": "Mortgage", "date": "2020-05-18T00:00:00.000Z", "value": 0 } ] }, { "topic": "Checking or savings account", "topicName": "Checking or savings account", "dashed": false, "show": true, "dates": [ { "name": "Checking or savings account", "date": "2020-04-01T00:00:00.000Z", "value": 79 }, { "name": "Checking or savings account", "date": "2020-04-02T00:00:00.000Z", "value": 68 }, { "name": "Checking or savings account", "date": "2020-04-03T00:00:00.000Z", "value": 71 }, { "name": "Checking or savings account", "date": "2020-04-04T00:00:00.000Z", "value": 32 }, { "name": "Checking or savings account", "date": "2020-04-05T00:00:00.000Z", "value": 15 }, { "name": "Checking or savings account", "date": "2020-04-06T00:00:00.000Z", "value": 74 }, { "name": "Checking or savings account", "date": "2020-04-07T00:00:00.000Z", "value": 86 }, { "name": "Checking or savings account", "date": "2020-04-08T00:00:00.000Z", "value": 75 }, { "name": "Checking or savings account", "date": "2020-04-09T00:00:00.000Z", "value": 76 }, { "name": "Checking or savings account", "date": "2020-04-10T00:00:00.000Z", "value": 89 }, { "name": "Checking or savings account", "date": "2020-04-11T00:00:00.000Z", "value": 33 }, { "name": "Checking or savings account", "date": "2020-04-12T00:00:00.000Z", "value": 15 }, { "name": "Checking or savings account", "date": "2020-04-13T00:00:00.000Z", "value": 77 }, { "name": "Checking or savings account", "date": "2020-04-14T00:00:00.000Z", "value": 69 }, { "name": "Checking or savings account", "date": "2020-04-15T00:00:00.000Z", "value": 76 }, { "name": "Checking or savings account", "date": "2020-04-16T00:00:00.000Z", "value": 94 }, { "name": "Checking or savings account", "date": "2020-04-17T00:00:00.000Z", "value": 68 }, { "name": "Checking or savings account", "date": "2020-04-18T00:00:00.000Z", "value": 23 }, { "name": "Checking or savings account", "date": "2020-04-19T00:00:00.000Z", "value": 16 }, { "name": "Checking or savings account", "date": "2020-04-20T00:00:00.000Z", "value": 75 }, { "name": "Checking or savings account", "date": "2020-04-21T00:00:00.000Z", "value": 86 }, { "name": "Checking or savings account", "date": "2020-04-22T00:00:00.000Z", "value": 92 }, { "name": "Checking or savings account", "date": "2020-04-23T00:00:00.000Z", "value": 74 }, { "name": "Checking or savings account", "date": "2020-04-24T00:00:00.000Z", "value": 74 }, { "name": "Checking or savings account", "date": "2020-04-25T00:00:00.000Z", "value": 46 }, { "name": "Checking or savings account", "date": "2020-04-26T00:00:00.000Z", "value": 35 }, { "name": "Checking or savings account", "date": "2020-04-27T00:00:00.000Z", "value": 106 }, { "name": "Checking or savings account", "date": "2020-04-28T00:00:00.000Z", "value": 104 }, { "name": "Checking or savings account", "date": "2020-04-29T00:00:00.000Z", "value": 116 }, { "name": "Checking or savings account", "date": "2020-04-30T00:00:00.000Z", "value": 86 }, { "name": "Checking or savings account", "date": "2020-05-01T00:00:00.000Z", "value": 77 }, { "name": "Checking or savings account", "date": "2020-05-02T00:00:00.000Z", "value": 20 }, { "name": "Checking or savings account", "date": "2020-05-03T00:00:00.000Z", "value": 16 }, { "name": "Checking or savings account", "date": "2020-05-04T00:00:00.000Z", "value": 62 }, { "name": "Checking or savings account", "date": "2020-05-05T00:00:00.000Z", "value": 47 }, { "name": "Checking or savings account", "date": "2020-05-06T00:00:00.000Z", "value": 36 }, { "name": "Checking or savings account", "date": "2020-05-07T00:00:00.000Z", "value": 30 }, { "name": "Checking or savings account", "date": "2020-05-08T00:00:00.000Z", "value": 22 }, { "name": "Checking or savings account", "date": "2020-05-09T00:00:00.000Z", "value": 7 }, { "name": "Checking or savings account", "date": "2020-05-10T00:00:00.000Z", "value": 3 }, { "name": "Checking or savings account", "date": "2020-05-11T00:00:00.000Z", "value": 20 }, { "name": "Checking or savings account", "date": "2020-05-12T00:00:00.000Z", "value": 18 }, { "name": "Checking or savings account", "date": "2020-05-13T00:00:00.000Z", "value": 13 }, { "name": "Checking or savings account", "date": "2020-05-14T00:00:00.000Z", "value": 5 }, { "name": "Checking or savings account", "date": "2020-05-15T00:00:00.000Z", "value": 2 }, { "name": "Checking or savings account", "date": "2020-05-16T00:00:00.000Z", "value": 2 }, { "name": "Checking or savings account", "date": "2020-05-17T00:00:00.000Z", "value": 2 }, { "name": "Checking or savings account", "date": "2020-05-18T00:00:00.000Z", "value": 1 } ] } ] }, "issue": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 15.93, "name": "Incorrect information on your report", "value": 247706, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 8.73, "name": "Information belongs to someone else", "value": 135795, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.52, "name": "Account status incorrect", "value": 39240, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.3, "name": "Account information incorrect", "value": 35733, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.75, "name": "Personal information incorrect", "value": 11632, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.6, "name": "Public record information inaccurate", "value": 9279, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.6, "name": "Old information reappears or never goes away", "value": 9275, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.29, "name": "Information is missing that should be on the report", "value": 4492, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.04, "name": "Information is incorrect", "value": 684, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.01, "name": "Information that should be on the report is missing", "value": 115, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Incorrect information on your report ", "value": 1, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 6.61, "name": "Incorrect information on credit report", "value": 102686, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.38, "name": "Account status", "value": 37057, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.08, "name": "Information is not mine", "value": 32384, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.71, "name": "Account terms", "value": 10995, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.57, "name": "Public record", "value": 8876, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.48, "name": "Personal information", "value": 7529, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.38, "name": "Reinserted previously deleted info", "value": 5845, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 6.53, "name": "Loan modification,collection,foreclosure", "value": 101564, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 5.65, "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 87778, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 4.06, "name": "Their investigation did not fix an error on your report", "value": 63190, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.46, "name": "Investigation took more than 30 days", "value": 7222, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.42, "name": "Was not notified of investigation status or results", "value": 6586, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.39, "name": "Difficulty submitting a dispute or getting information about a dispute over the phone", "value": 5998, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.28, "name": "Problem with personal statement of dispute", "value": 4377, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 4.64, "name": "Loan servicing, payments, escrow account", "value": 72149, "parent": false, "visible": true, "width": 0.5 } ], "product": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 62.42, "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 28047, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 61.92, "name": "Credit reporting", "value": 27822, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.4, "name": "Other personal consumer report", "value": 179, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.1, "name": "Credit repair services", "value": 46, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Credit reporting, credit repair services, or other personal consumer reports", "name": "More Information about Credit reporting, credit repair services, or other personal consumer reports", "splitterText": "More Information about Credit reporting, credit repair services, or other personal consumer reports", "value": "", "parent": "Credit reporting, credit repair services, or other personal consumer reports", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 12.41, "name": "Debt collection", "value": 5576, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 3.19, "name": "I do not know", "value": 1435, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 3.19, "name": "Other debt", "value": 1435, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 2.96, "name": "Credit card debt", "value": 1332, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 1.91, "name": "Medical debt", "value": 858, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.39, "name": "Auto debt", "value": 175, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Debt collection", "name": "More Information about Debt collection", "splitterText": "More Information about Debt collection", "value": "", "parent": "Debt collection", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 8.57, "name": "Credit card or prepaid card", "value": 3849, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 6.14, "name": "General-purpose credit card or charge card", "value": 2759, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 1.03, "name": "Store credit card", "value": 463, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.8, "name": "Government benefit card", "value": 360, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.53, "name": "General-purpose prepaid card", "value": 236, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.05, "name": "Payroll card", "value": 24, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Credit card or prepaid card", "name": "More Information about Credit card or prepaid card", "splitterText": "More Information about Credit card or prepaid card", "value": "", "parent": "Credit card or prepaid card", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 5.66, "name": "Mortgage", "value": 2544, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 3.58, "name": "Conventional home mortgage", "value": 1607, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.97, "name": "FHA mortgage", "value": 437, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.44, "name": "VA mortgage", "value": 199, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.31, "name": "Home equity loan or line of credit (HELOC)", "value": 141, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.31, "name": "Other type of mortgage", "value": 138, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Mortgage", "name": "More Information about Mortgage", "splitterText": "More Information about Mortgage", "value": "", "parent": "Mortgage", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 5.37, "name": "Checking or savings account", "value": 2413, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 4.24, "name": "Checking account", "value": 1906, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.62, "name": "Other banking product or service", "value": 279, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.37, "name": "Savings account", "value": 167, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0.14, "name": "CD (Certificate of Deposit)", "value": 61, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Checking or savings account", "name": "More Information about Checking or savings account", "splitterText": "More Information about Checking or savings account", "value": "", "parent": "Checking or savings account", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false } ], "collections": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 6.95, "name": "Servicemember", "value": 5172, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 3.16, "name": "Older American", "value": 2352, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0.86, "name": "Older American, Servicemember", "value": 640, "parent": false, "visible": true, "width": 0.5 } ], "tags": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 7.05, "name": "Servicemember", "value": 109650, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 5.51, "name": "Older American", "value": 85620, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 1.15, "name": "Older American, Servicemember", "value": 17831, "parent": false, "visible": true, "width": 0.5 } ] }, "subLens": "", "tooltip": false, "total": 44933 }
diff --git a/src/reducers/trends.jsx b/src/reducers/trends.jsx
index 8f724a57b..9064a262e 100644
--- a/src/reducers/trends.jsx
+++ b/src/reducers/trends.jsx
@@ -137,7 +137,7 @@ function getD3Names( obj, nameMap, expandedTrends ) {
 
 /**
  * helper function to pluralize field values
- * @param {string} field name we are processing
+ * @param {lens} lens value we are processing
  * @returns {string} for consumption by AreaData function
  */
 export function mainNameLens( lens ) {
@@ -196,7 +196,9 @@ function processAreaData( state, aggregations, buckets ) {
         .findIndex( k => k.name === mainName &&
           isDateEqual( k.date, p.key_as_string ) )
 
+        // POSSIBLE TODO
       /* istanbul ignore else */
+      console.log('POS: ', pos);
       if ( pos > -1 ) {
         // subtract the value from total, so we calculate the "Other" bin
         compBuckets[pos].value -= p.doc_count
@@ -309,7 +311,7 @@ export const getColorScheme = ( lens, rowNames ) => {
   const colScheme = {}
   const colorScheme = colors.DataLens
   const uniqueNames = [ ...new Set( rowNames.map( item => item.name ) ) ]
-    .filter( o => o !== 'Other' )
+    .filter( o => o !== 'All other products' )
 
   for ( let i = 0; i < uniqueNames.length; i++ ) {
     const n = uniqueNames[i]
@@ -318,7 +320,7 @@ export const getColorScheme = ( lens, rowNames ) => {
   }
 
   colScheme.Complaints = colors.BriteCharts.medium
-  colScheme.Other = colors.DataLens[10]
+  colScheme['All other products'] = colors.DataLens[10]
   return colScheme
 }
 
diff --git a/src/utils/trends.jsx b/src/utils/trends.jsx
index ab26d33de..336318d9b 100644
--- a/src/utils/trends.jsx
+++ b/src/utils/trends.jsx
@@ -35,9 +35,9 @@ export const getSubLens = lens => {
  */
 export const pruneOther = buckets => {
   const sumOther = buckets
-    .filter( o => o.name === 'Other' )
+    .filter( o => o.name.indexOf( 'Other' ) >= 0 )
     .reduce( ( prev, cur ) => prev + cur.value, 0 )
-  return sumOther > 0 ? buckets : buckets.filter( o => o.name !== 'Other' )
+  return sumOther > 0 ? buckets : buckets.filter( o => o.name.indexOf( 'Other' ) === -1 )
 }
 
 export const isGreaterThanYear = ( from, to ) => {

From 1615471002a155f21301e74516d15dd07f35773b Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Wed, 1 Jul 2020 16:10:10 -0400
Subject: [PATCH 08/34] color scheme fixes, linting

---
 src/components/Charts/LineChart.jsx        |  1 -
 src/components/Charts/StackedAreaChart.jsx |  6 ++++--
 src/components/Trends/ExternalTooltip.jsx  |  2 +-
 src/components/Trends/TrendsPanel.jsx      | 10 ++++++----
 src/reducers/trends.jsx                    | 15 +++++++++------
 src/utils/trends.jsx                       |  5 +++--
 6 files changed, 23 insertions(+), 16 deletions(-)

diff --git a/src/components/Charts/LineChart.jsx b/src/components/Charts/LineChart.jsx
index 84bb3c0df..96b35d8eb 100644
--- a/src/components/Charts/LineChart.jsx
+++ b/src/components/Charts/LineChart.jsx
@@ -7,7 +7,6 @@ import { line, tooltip } from 'britecharts'
 import { connect } from 'react-redux'
 import { hashObject } from '../../utils'
 import { isDateEqual } from '../../utils/formatDate'
-import PropTypes from 'prop-types'
 import React from 'react'
 import { updateTrendsTooltip } from '../../actions/trends'
 
diff --git a/src/components/Charts/StackedAreaChart.jsx b/src/components/Charts/StackedAreaChart.jsx
index 4c7de28ba..7bb2c965d 100644
--- a/src/components/Charts/StackedAreaChart.jsx
+++ b/src/components/Charts/StackedAreaChart.jsx
@@ -5,7 +5,6 @@ import { connect } from 'react-redux'
 import { getLastDate } from '../../utils/chart'
 import { hashObject } from '../../utils'
 import { isDateEqual } from '../../utils/formatDate'
-import PropTypes from 'prop-types'
 import React from 'react'
 import { stackedArea } from 'britecharts'
 import { updateTrendsTooltip } from '../../actions/trends'
@@ -64,7 +63,10 @@ export class StackedAreaChart extends React.Component {
     const width = this._chartWidth( chartID )
     d3.select( chartID + ' .stacked-area' ).remove()
     const stackedAreaChart = stackedArea()
-    const colorScheme = [ ...new Set( data.map( item => item.name ) ) ]
+    const colorData = data.filter(
+      item => item.name.indexOf( 'All other' ) === -1
+    )
+    const colorScheme = [ ...new Set( colorData.map( item => item.name ) ) ]
       .map( o => colorMap[o] )
     colorScheme.push( colors.DataLens[10] )
 
diff --git a/src/components/Trends/ExternalTooltip.jsx b/src/components/Trends/ExternalTooltip.jsx
index 3b89a2c51..c132116ae 100644
--- a/src/components/Trends/ExternalTooltip.jsx
+++ b/src/components/Trends/ExternalTooltip.jsx
@@ -11,7 +11,7 @@ export class ExternalTooltip extends React.Component {
   _spanFormatter( value ) {
     const elements = []
     // Other should never be a selectable focus item
-    if ( this.props.focus || value.name.indexOf('All other') >= 0 ) {
+    if ( this.props.focus || value.name.indexOf( 'All other' ) >= 0 ) {
       elements.push(
         <span className="u-left" key={ value.name }>
           { value.name }
diff --git a/src/components/Trends/TrendsPanel.jsx b/src/components/Trends/TrendsPanel.jsx
index 2120fc555..86d732d84 100644
--- a/src/components/Trends/TrendsPanel.jsx
+++ b/src/components/Trends/TrendsPanel.jsx
@@ -39,9 +39,9 @@ const subLensMap = {
 }
 
 const lensHelperTextMap = {
-  'company': 'Product the consumer identified in the complaint. Click on' +
+  company: 'Product the consumer identified in the complaint. Click on' +
   ' a company name to expand products.',
-  'product': 'Product and sub-product the consumer identified in the ' +
+  product: 'Product and sub-product the consumer identified in the ' +
   ' complaint. Click on a product to expand sub-products.'
 }
 
@@ -152,9 +152,11 @@ export class TrendsPanel extends React.Component {
           <div className="layout-row">
             <section className="chart">
               <h2>{this._areaChartTitle()}</h2>
-              <p className="chart-helper-text">A time series graph of complaint counts for the selected date range.
+              <p className="chart-helper-text">A time series graph of
+               complaint counts for the selected date range.
                 Hover on the chart to see the count for each date interval.
-                  Your filter selections will update what you see on the graph.</p>
+                  Your filter selections will update what you see on the
+                   graph.</p>
             </section>
           </div>
         }
diff --git a/src/reducers/trends.jsx b/src/reducers/trends.jsx
index 9064a262e..927454a1b 100644
--- a/src/reducers/trends.jsx
+++ b/src/reducers/trends.jsx
@@ -141,9 +141,9 @@ function getD3Names( obj, nameMap, expandedTrends ) {
  * @returns {string} for consumption by AreaData function
  */
 export function mainNameLens( lens ) {
-  if( lens === 'Product' ) {
+  if ( lens === 'Product' ) {
     return 'products'
-  } else if ( lens === 'Company') {
+  } else if ( lens === 'Company' ) {
     return 'companies'
   }
   return 'values'
@@ -162,7 +162,7 @@ function processAreaData( state, aggregations, buckets ) {
   const { subLens } = state
   const lens = state.focus ? subLens.replace( '_', '-' ) : state.lens
 
-  const mainName = 'All other ' + mainNameLens(lens)
+  const mainName = 'All other ' + mainNameLens( lens )
   // overall buckets
   const compBuckets = buckets.map(
     obj => ( {
@@ -196,9 +196,7 @@ function processAreaData( state, aggregations, buckets ) {
         .findIndex( k => k.name === mainName &&
           isDateEqual( k.date, p.key_as_string ) )
 
-        // POSSIBLE TODO
       /* istanbul ignore else */
-      console.log('POS: ', pos);
       if ( pos > -1 ) {
         // subtract the value from total, so we calculate the "Other" bin
         compBuckets[pos].value -= p.doc_count
@@ -311,7 +309,7 @@ export const getColorScheme = ( lens, rowNames ) => {
   const colScheme = {}
   const colorScheme = colors.DataLens
   const uniqueNames = [ ...new Set( rowNames.map( item => item.name ) ) ]
-    .filter( o => o !== 'All other products' )
+
 
   for ( let i = 0; i < uniqueNames.length; i++ ) {
     const n = uniqueNames[i]
@@ -320,7 +318,12 @@ export const getColorScheme = ( lens, rowNames ) => {
   }
 
   colScheme.Complaints = colors.BriteCharts.medium
+
+  // Set constant grey colors for our "other" buckets"
+  // TODO: Set these as constants / consolidate colors across charts
   colScheme['All other products'] = colors.DataLens[10]
+  colScheme['All other companies'] = colors.DataLens[10]
+  colScheme['All other values'] = colors.DataLens[10]
   return colScheme
 }
 
diff --git a/src/utils/trends.jsx b/src/utils/trends.jsx
index 336318d9b..e37b3ff87 100644
--- a/src/utils/trends.jsx
+++ b/src/utils/trends.jsx
@@ -35,9 +35,10 @@ export const getSubLens = lens => {
  */
 export const pruneOther = buckets => {
   const sumOther = buckets
-    .filter( o => o.name.indexOf( 'Other' ) >= 0 )
+    .filter( o => o.name.indexOf( 'All other' ) >= 0 )
     .reduce( ( prev, cur ) => prev + cur.value, 0 )
-  return sumOther > 0 ? buckets : buckets.filter( o => o.name.indexOf( 'Other' ) === -1 )
+  return sumOther > 0 ? buckets :
+   buckets.filter( o => o.name.indexOf( 'All other' ) === -1 )
 }
 
 export const isGreaterThanYear = ( from, to ) => {

From 048e77eeb5479218fc63d3cddaca5f9de5175f22 Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Wed, 1 Jul 2020 16:22:00 -0400
Subject: [PATCH 09/34] sub-lens tab language

---
 src/components/Trends/TrendsPanel.jsx | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/components/Trends/TrendsPanel.jsx b/src/components/Trends/TrendsPanel.jsx
index 86d732d84..03faf6054 100644
--- a/src/components/Trends/TrendsPanel.jsx
+++ b/src/components/Trends/TrendsPanel.jsx
@@ -39,10 +39,14 @@ const subLensMap = {
 }
 
 const lensHelperTextMap = {
-  company: 'Product the consumer identified in the complaint. Click on' +
+  'products': 'Product the consumer identified in the complaint.' +
+  ' Click on a company name to expand products.',
+  'companies': 'Product the consumer identified in the complaint. Click on' +
   ' a company name to expand products.',
-  product: 'Product and sub-product the consumer identified in the ' +
-  ' complaint. Click on a product to expand sub-products.'
+  'sub-products': 'Product and sub-product the consumer identified in the ' +
+  ' complaint. Click on a product to expand sub-products.',
+  'issues': 'Product and issue the consumer identified in the complaint.' +
+  ' Click on a product to expand issue.'
 }
 
 export class TrendsPanel extends React.Component {
@@ -214,7 +218,7 @@ const mapStateToProps = state => {
     showMobileFilters: state.view.width < 750,
     subLens,
     subLensTitle: subLensMap[subLens] + ' by ' + lens.toLowerCase(),
-    subLensHelperText: lensHelperTextMap[lens.toLowerCase()],
+    subLensHelperText: lensHelperTextMap[subLensMap[subLens].toLowerCase()],
     total,
     trendsDateWarningEnabled
   }

From ec8f929f28b441b63898a7b026aae315e3a07685 Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Mon, 29 Jun 2020 09:13:21 -0400
Subject: [PATCH 10/34] chart sub-titles

---
 src/components/Charts/LineChart.jsx           |  3 ++
 src/components/Trends/TrendsPanel.jsx         |  6 ++--
 src/components/Trends/TrendsPanel.less        | 11 ++++++-
 src/components/__tests__/TrendsPanel.spec.jsx |  6 ++--
 .../__snapshots__/LineChart.spec.jsx.snap     |  6 ++++
 .../__snapshots__/TrendsPanel.spec.jsx.snap   | 32 +++++++++++++++----
 6 files changed, 50 insertions(+), 14 deletions(-)

diff --git a/src/components/Charts/LineChart.jsx b/src/components/Charts/LineChart.jsx
index aad429dbb..e3a6f6b02 100644
--- a/src/components/Charts/LineChart.jsx
+++ b/src/components/Charts/LineChart.jsx
@@ -123,6 +123,9 @@ export class LineChart extends React.Component {
     return (
       <div>
         <h2>{ this.props.title }</h2>
+        <p>A time series graph of complaint counts for the selected date range.
+         Hover on the chart to see the count for each date interval.
+          Your filter selections will update what you see on the graph.</p>
         <div id="line-chart">
         </div>
       </div>
diff --git a/src/components/Trends/TrendsPanel.jsx b/src/components/Trends/TrendsPanel.jsx
index af0d398df..5484db75f 100644
--- a/src/components/Trends/TrendsPanel.jsx
+++ b/src/components/Trends/TrendsPanel.jsx
@@ -42,12 +42,12 @@ export class TrendsPanel extends React.Component {
   _areaChartTitle() {
     const { focus, overview, lens, subLens } = this.props
     if ( overview ) {
-      return 'Complaints by date received'
+      return 'Complaints by date CFPB received'
     } else if ( focus ) {
       return 'Complaints by ' + subLensMap[subLens].toLowerCase() +
-        ' by date received'
+        ' by date CFPB received'
     }
-    return `Complaints by ${ lens.toLowerCase() } by date received`
+    return `Complaints by ${ lens.toLowerCase() } by date CFPB received`
   }
 
   _className() {
diff --git a/src/components/Trends/TrendsPanel.less b/src/components/Trends/TrendsPanel.less
index 848d519fc..ba9aee3d2 100644
--- a/src/components/Trends/TrendsPanel.less
+++ b/src/components/Trends/TrendsPanel.less
@@ -247,7 +247,16 @@
   }
 
   h2 {
-    padding: @gutter-normal;
+    padding-top: @gutter-normal;
+    padding-left: @gutter-normal;
+    padding-right: @gutter-normal;
+    padding-bottom: 0;
+  }
+  
+  p {
+    padding-left: @gutter-normal;
+    padding-right: @gutter-normal;
+    padding-top: 0;
   }
 
 
diff --git a/src/components/__tests__/TrendsPanel.spec.jsx b/src/components/__tests__/TrendsPanel.spec.jsx
index 139fe063c..8fa77322b 100644
--- a/src/components/__tests__/TrendsPanel.spec.jsx
+++ b/src/components/__tests__/TrendsPanel.spec.jsx
@@ -241,14 +241,14 @@ describe( 'component:TrendsPanel', () => {
         params.overview = true
         const target = setupEnzyme( params )
         expect( target.instance()._areaChartTitle() )
-          .toEqual( 'Complaints by date received' )
+          .toEqual( 'Complaints by date CFPB received' )
       } )
 
       it( 'gets area chart title - Data Lens', () => {
         params.lens = 'Something'
         const target = setupEnzyme( params )
         expect( target.instance()._areaChartTitle() )
-          .toEqual( 'Complaints by something by date received' )
+          .toEqual( 'Complaints by something by date CFPB received' )
       } )
 
       it( 'gets area chart title - Focus', () => {
@@ -256,7 +256,7 @@ describe( 'component:TrendsPanel', () => {
         params.lens = 'Product'
         const target = setupEnzyme( params )
         expect( target.instance()._areaChartTitle() )
-          .toEqual( 'Complaints by sub-products by date received' )
+          .toEqual( 'Complaints by sub-products by date CFPB received' )
       } )
     } )
   } )
diff --git a/src/components/__tests__/__snapshots__/LineChart.spec.jsx.snap b/src/components/__tests__/__snapshots__/LineChart.spec.jsx.snap
index 50ee92cda..11ac4541c 100644
--- a/src/components/__tests__/__snapshots__/LineChart.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/LineChart.spec.jsx.snap
@@ -5,6 +5,9 @@ exports[`component: LineChart initial state renders data lens without crashing 1
   <h2>
     foo
   </h2>
+  <p>
+    A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+  </p>
   <div
     id="line-chart"
   />
@@ -16,6 +19,9 @@ exports[`component: LineChart initial state renders without crashing 1`] = `
   <h2>
     foo
   </h2>
+  <p>
+    A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+  </p>
   <div
     id="line-chart"
   />
diff --git a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
index 6f3e251a2..9d4628ee2 100644
--- a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
@@ -365,8 +365,11 @@ exports[`component:TrendsPanel Snapshots renders Focus without crashing 1`] = `
     >
       <div>
         <h2>
-          Complaints by sub-products by date received
+          Complaints by sub-products by date CFPB received
         </h2>
+        <p>
+          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+        </p>
         <div
           id="line-chart"
         />
@@ -700,7 +703,7 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
     >
       <div>
         <h2>
-          Complaints by product by date received
+          Complaints by product by date CFPB received
         </h2>
         <div
           id="stacked-area-chart"
@@ -1355,8 +1358,11 @@ exports[`component:TrendsPanel Snapshots renders date warning without crashing 1
     >
       <div>
         <h2>
-          Complaints by date received
+          Complaints by date CFPB received
         </h2>
+        <p>
+          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+        </p>
         <div
           id="line-chart"
         />
@@ -1690,8 +1696,11 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
     >
       <div>
         <h2>
-          Complaints by product by date received
+          Complaints by product by date CFPB received
         </h2>
+        <p>
+          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+        </p>
         <div
           id="line-chart"
         />
@@ -1946,8 +1955,11 @@ exports[`component:TrendsPanel Snapshots renders lineChart Overview without cras
     >
       <div>
         <h2>
-          Complaints by date received
+          Complaints by date CFPB received
         </h2>
+        <p>
+          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+        </p>
         <div
           id="line-chart"
         />
@@ -2182,8 +2194,11 @@ exports[`component:TrendsPanel Snapshots renders mobile filters without crashing
     >
       <div>
         <h2>
-          Complaints by date received
+          Complaints by date CFPB received
         </h2>
+        <p>
+          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+        </p>
         <div
           id="line-chart"
         />
@@ -2417,8 +2432,11 @@ exports[`component:TrendsPanel Snapshots renders print mode without crashing 1`]
     >
       <div>
         <h2>
-          Complaints by date received
+          Complaints by date CFPB received
         </h2>
+        <p>
+          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+        </p>
         <div
           id="line-chart"
         />

From 037070d51dcee4e55a4cf727d790771db1f03f7d Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Mon, 29 Jun 2020 17:10:16 -0400
Subject: [PATCH 11/34] language updates and TODO: Other

---
 src/components/Charts/LineChart.jsx           |   8 -
 src/components/Charts/StackedAreaChart.jsx    |   7 +-
 src/components/RefineBar/ChartToggles.jsx     |   2 +-
 src/components/Trends/ExternalTooltip.jsx     |   2 +-
 src/components/Trends/TrendsPanel.jsx         |  58 +++---
 src/components/Trends/TrendsPanel.less        |   1 +
 src/components/__tests__/LineChart.spec.jsx   |   4 +-
 src/components/__tests__/TrendsPanel.spec.jsx |   4 +-
 .../__snapshots__/ChartToggles.spec.jsx.snap  |   2 +-
 .../ExternalTooltip.spec.jsx.snap             |   8 +-
 .../__snapshots__/LineChart.spec.jsx.snap     |  12 --
 .../__snapshots__/ResultsPanel.spec.jsx.snap  |   4 +-
 .../StackedAreaChart.spec.jsx.snap            |   3 -
 .../__snapshots__/TrendsPanel.spec.jsx.snap   | 182 ++++++++++++------
 src/reducers/__tests__/trends.spec.jsx        |  10 +-
 src/reducers/trends.jsx                       |  18 +-
 16 files changed, 189 insertions(+), 136 deletions(-)

diff --git a/src/components/Charts/LineChart.jsx b/src/components/Charts/LineChart.jsx
index e3a6f6b02..84bb3c0df 100644
--- a/src/components/Charts/LineChart.jsx
+++ b/src/components/Charts/LineChart.jsx
@@ -122,10 +122,6 @@ export class LineChart extends React.Component {
   render() {
     return (
       <div>
-        <h2>{ this.props.title }</h2>
-        <p>A time series graph of complaint counts for the selected date range.
-         Hover on the chart to see the count for each date interval.
-          Your filter selections will update what you see on the graph.</p>
         <div id="line-chart">
         </div>
       </div>
@@ -158,8 +154,4 @@ export const mapStateToProps = state => ( {
   width: state.view.width
 } )
 
-LineChart.propTypes = {
-  title: PropTypes.string.isRequired
-}
-
 export default connect( mapStateToProps, mapDispatchToProps )( LineChart )
diff --git a/src/components/Charts/StackedAreaChart.jsx b/src/components/Charts/StackedAreaChart.jsx
index 0b33832fd..ae00170cc 100644
--- a/src/components/Charts/StackedAreaChart.jsx
+++ b/src/components/Charts/StackedAreaChart.jsx
@@ -65,7 +65,7 @@ export class StackedAreaChart extends React.Component {
     d3.select( chartID + ' .stacked-area' ).remove()
     const stackedAreaChart = stackedArea()
     const colorScheme = [ ...new Set( data.map( item => item.name ) ) ]
-      .filter( o => o !== 'Other' )
+      .filter( o => o !== 'All other' )
       .map( o => colorMap[o] )
     colorScheme.push( colors.DataLens[10] )
 
@@ -95,7 +95,6 @@ export class StackedAreaChart extends React.Component {
   render() {
     return (
       <div>
-        <h2>{ this.props.title }</h2>
         <div id="stacked-area-chart">
         </div>
       </div>
@@ -128,9 +127,5 @@ export const mapStateToProps = state => ( {
   width: state.view.width
 } )
 
-StackedAreaChart.propTypes = {
-  title: PropTypes.string.isRequired
-}
-
 export default connect( mapStateToProps,
   mapDispatchToProps )( StackedAreaChart )
diff --git a/src/components/RefineBar/ChartToggles.jsx b/src/components/RefineBar/ChartToggles.jsx
index 7bb06c38b..3b8efb2b5 100644
--- a/src/components/RefineBar/ChartToggles.jsx
+++ b/src/components/RefineBar/ChartToggles.jsx
@@ -20,7 +20,7 @@ export class ChartToggles extends React.Component {
   render() {
     return (
       <section className="chart-toggles m-btn-group">
-        <p>Chart Type</p>
+        <p>Chart type</p>
         <button onClick={ () => this._toggleChartType( 'line' ) }
                 className={ this._btnClassName( 'line' ) }>
           { iconMap.getIcon( 'line-chart' ) }
diff --git a/src/components/Trends/ExternalTooltip.jsx b/src/components/Trends/ExternalTooltip.jsx
index b6ca598f2..a374f5c58 100644
--- a/src/components/Trends/ExternalTooltip.jsx
+++ b/src/components/Trends/ExternalTooltip.jsx
@@ -11,7 +11,7 @@ export class ExternalTooltip extends React.Component {
   _spanFormatter( value ) {
     const elements = []
     // Other should never be a selectable focus item
-    if ( this.props.focus || value.name === 'Other' ) {
+    if ( this.props.focus || value.name === 'All other' ) {
       elements.push(
         <span className="u-left" key={ value.name }>
           { value.name }
diff --git a/src/components/Trends/TrendsPanel.jsx b/src/components/Trends/TrendsPanel.jsx
index 5484db75f..3ba8d767d 100644
--- a/src/components/Trends/TrendsPanel.jsx
+++ b/src/components/Trends/TrendsPanel.jsx
@@ -44,10 +44,9 @@ export class TrendsPanel extends React.Component {
     if ( overview ) {
       return 'Complaints by date CFPB received'
     } else if ( focus ) {
-      return 'Complaints by ' + subLensMap[subLens].toLowerCase() +
-        ' by date CFPB received'
+      return subLensMap[subLens] + ' complaints by date CFPB received'
     }
-    return `Complaints by ${ lens.toLowerCase() } by date CFPB received`
+    return `${ lens } complaints by date CFPB received`
   }
 
   _className() {
@@ -113,8 +112,8 @@ export class TrendsPanel extends React.Component {
                   value={ lens }
                   handleChange={ onLens }/>
           <Separator/>
-          <Select label={ 'Choose the Date Interval' }
-                  title={ 'Date Interval' }
+          <Select label={ 'Choose the Date interval' }
+                  title={ 'Date interval' }
                   values={ intervals }
                   id={ 'interval' }
                   value={ dateInterval }
@@ -127,31 +126,40 @@ export class TrendsPanel extends React.Component {
         </div>
 
         { companyOverlay &&
-        <div className="layout-row company-overlay">
-          <section className="company-search">
-            <h1>Search for and add companies to visualize data </h1>
-            <p>Monocle ipsum dolor sit amet shinkansen delightful tote bag
-              handsome, elegant joy ryokan conversation. Sunspel lovely
-              signature vibrant boutique the best elegant Airbus A380 concierge
-              Baggu izakaya
-            </p>
-            <CompanyTypeahead/>
-          </section>
-        </div>
+          <div className="layout-row company-overlay">
+            <section className="company-search">
+              <p>Choose a company to start your visualization
+               using the type-ahead menu below. You can add more than
+                one company to your view
+              </p>
+              <CompanyTypeahead/>
+            </section>
+          </div>
         }
 
         { focus && <FocusHeader /> }
 
         { !companyOverlay && total > 0 &&
-        <div className="layout-row">
-          <section className="chart">
-            { chartType === 'line' &&
-            <LineChart title={this._areaChartTitle()}/> }
-            { chartType === 'area' &&
-            <StackedAreaChart title={this._areaChartTitle()}/> }
-          </section>
-          { !overview && <ExternalTooltip/> }
-        </div>
+          <div className="layout-row">
+            <section className="chart">
+              <h2>{this._areaChartTitle()}</h2>
+              <p>A time series graph of complaint counts for the selected date range.
+                Hover on the chart to see the count for each date interval.
+                  Your filter selections will update what you see on the graph.</p>
+            </section>
+          </div>
+        }
+
+        { !companyOverlay && total > 0 &&
+          <div className="layout-row">
+            <section className="chart">
+              { chartType === 'line' &&
+              <LineChart /> }
+              { chartType === 'area' &&
+              <StackedAreaChart /> }
+            </section>
+            { !overview && <ExternalTooltip/> }
+          </div>
         }
         { total > 0 && this._phaseMap() }
         <TrendDepthToggle />
diff --git a/src/components/Trends/TrendsPanel.less b/src/components/Trends/TrendsPanel.less
index ba9aee3d2..7fed3365c 100644
--- a/src/components/Trends/TrendsPanel.less
+++ b/src/components/Trends/TrendsPanel.less
@@ -256,6 +256,7 @@
   p {
     padding-left: @gutter-normal;
     padding-right: @gutter-normal;
+    padding-bottom: @gutter-normal;
     padding-top: 0;
   }
 
diff --git a/src/components/__tests__/LineChart.spec.jsx b/src/components/__tests__/LineChart.spec.jsx
index d278fe746..6aeb5d6b6 100644
--- a/src/components/__tests__/LineChart.spec.jsx
+++ b/src/components/__tests__/LineChart.spec.jsx
@@ -73,7 +73,7 @@ function setupSnapshot(lens) {
       ]
     } ]
   }
-  const colorMap = { Complaints: '#ADDC91', Other: '#a2a3a4' }
+  const colorMap = { Complaints: '#ADDC91', 'All other values': '#a2a3a4' }
 
   return renderer.create(
     <Provider store={ store }>
@@ -112,7 +112,7 @@ describe( 'component: LineChart', () => {
       Mortgage: '#9ec4c3',
       'Checking or savings account': '#0072ce',
       Complaints: '#ADDC91',
-      Other: '#a2a3a4'
+      'All other products': '#a2a3a4'
     }
     const data = {
       dataByTopic: [
diff --git a/src/components/__tests__/TrendsPanel.spec.jsx b/src/components/__tests__/TrendsPanel.spec.jsx
index 8fa77322b..482f78306 100644
--- a/src/components/__tests__/TrendsPanel.spec.jsx
+++ b/src/components/__tests__/TrendsPanel.spec.jsx
@@ -248,7 +248,7 @@ describe( 'component:TrendsPanel', () => {
         params.lens = 'Something'
         const target = setupEnzyme( params )
         expect( target.instance()._areaChartTitle() )
-          .toEqual( 'Complaints by something by date CFPB received' )
+          .toEqual( 'Something complaints by date CFPB received' )
       } )
 
       it( 'gets area chart title - Focus', () => {
@@ -256,7 +256,7 @@ describe( 'component:TrendsPanel', () => {
         params.lens = 'Product'
         const target = setupEnzyme( params )
         expect( target.instance()._areaChartTitle() )
-          .toEqual( 'Complaints by sub-products by date CFPB received' )
+          .toEqual( 'Sub-products complaints by date CFPB received' )
       } )
     } )
   } )
diff --git a/src/components/__tests__/__snapshots__/ChartToggles.spec.jsx.snap b/src/components/__tests__/__snapshots__/ChartToggles.spec.jsx.snap
index acb8f0782..b90a9052e 100644
--- a/src/components/__tests__/__snapshots__/ChartToggles.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/ChartToggles.spec.jsx.snap
@@ -5,7 +5,7 @@ exports[`component: ChartToggles initial state renders without crashing 1`] = `
   className="chart-toggles m-btn-group"
 >
   <p>
-    Chart Type
+    Chart type
   </p>
   <button
     className="a-btn toggle line selected"
diff --git a/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap b/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
index 4208e44e7..85e240682 100644
--- a/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
@@ -118,7 +118,9 @@ exports[`initial state renders Company typehead without crashing 1`] = `
         className="color__3"
       >
         <span
-          className="u-left"
+          className="u-left a-btn a-btn__link"
+          id="focus-other"
+          onClick={[Function]}
         >
           Other
         </span>
@@ -246,7 +248,9 @@ exports[`initial state renders without crashing 1`] = `
         className="color__3"
       >
         <span
-          className="u-left"
+          className="u-left a-btn a-btn__link"
+          id="focus-other"
+          onClick={[Function]}
         >
           Other
         </span>
diff --git a/src/components/__tests__/__snapshots__/LineChart.spec.jsx.snap b/src/components/__tests__/__snapshots__/LineChart.spec.jsx.snap
index 11ac4541c..98ca2c594 100644
--- a/src/components/__tests__/__snapshots__/LineChart.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/LineChart.spec.jsx.snap
@@ -2,12 +2,6 @@
 
 exports[`component: LineChart initial state renders data lens without crashing 1`] = `
 <div>
-  <h2>
-    foo
-  </h2>
-  <p>
-    A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
-  </p>
   <div
     id="line-chart"
   />
@@ -16,12 +10,6 @@ exports[`component: LineChart initial state renders data lens without crashing 1
 
 exports[`component: LineChart initial state renders without crashing 1`] = `
 <div>
-  <h2>
-    foo
-  </h2>
-  <p>
-    A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
-  </p>
   <div
     id="line-chart"
   />
diff --git a/src/components/__tests__/__snapshots__/ResultsPanel.spec.jsx.snap b/src/components/__tests__/__snapshots__/ResultsPanel.spec.jsx.snap
index a0d7e1c5a..eaaf30d80 100644
--- a/src/components/__tests__/__snapshots__/ResultsPanel.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/ResultsPanel.spec.jsx.snap
@@ -1491,10 +1491,10 @@ exports[`component:Results renders trends panel without crashing 1`] = `
           className="u-visually-hidden"
           htmlFor="choose-interval"
         >
-          Choose the Date Interval
+          Choose the Date interval
         </label>
         <p>
-          Date Interval
+          Date interval
         </p>
         <select
           id="choose-interval"
diff --git a/src/components/__tests__/__snapshots__/StackedAreaChart.spec.jsx.snap b/src/components/__tests__/__snapshots__/StackedAreaChart.spec.jsx.snap
index 837fb0c33..a020b3e2e 100644
--- a/src/components/__tests__/__snapshots__/StackedAreaChart.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/StackedAreaChart.spec.jsx.snap
@@ -2,9 +2,6 @@
 
 exports[`component: StackedAreaChart initial state renders without crashing 1`] = `
 <div>
-  <h2>
-    foo
-  </h2>
   <div
     id="stacked-area-chart"
   />
diff --git a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
index 9d4628ee2..a8a63f771 100644
--- a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
@@ -126,10 +126,10 @@ exports[`component:TrendsPanel Snapshots renders Focus without crashing 1`] = `
         className="u-visually-hidden"
         htmlFor="choose-interval"
       >
-        Choose the Date Interval
+        Choose the Date interval
       </label>
       <p>
-        Date Interval
+        Date interval
       </p>
       <select
         id="choose-interval"
@@ -211,7 +211,7 @@ exports[`component:TrendsPanel Snapshots renders Focus without crashing 1`] = `
       className="chart-toggles m-btn-group"
     >
       <p>
-        Chart Type
+        Chart type
       </p>
       <button
         className="a-btn toggle line selected"
@@ -357,6 +357,20 @@ exports[`component:TrendsPanel Snapshots renders Focus without crashing 1`] = `
       </section>
     </div>
   </div>
+  <div
+    className="layout-row"
+  >
+    <section
+      className="chart"
+    >
+      <h2>
+        Sub-products complaints by date CFPB received
+      </h2>
+      <p>
+        A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+      </p>
+    </section>
+  </div>
   <div
     className="layout-row"
   >
@@ -364,12 +378,6 @@ exports[`component:TrendsPanel Snapshots renders Focus without crashing 1`] = `
       className="chart"
     >
       <div>
-        <h2>
-          Complaints by sub-products by date CFPB received
-        </h2>
-        <p>
-          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
-        </p>
         <div
           id="line-chart"
         />
@@ -515,10 +523,10 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
         className="u-visually-hidden"
         htmlFor="choose-interval"
       >
-        Choose the Date Interval
+        Choose the Date interval
       </label>
       <p>
-        Date Interval
+        Date interval
       </p>
       <select
         id="choose-interval"
@@ -600,7 +608,7 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
       className="chart-toggles m-btn-group"
     >
       <p>
-        Chart Type
+        Chart type
       </p>
       <button
         className="a-btn toggle line"
@@ -695,6 +703,20 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
     </section>
   </div>
   
+  <div
+    className="layout-row"
+  >
+    <section
+      className="chart"
+    >
+      <h2>
+        Product complaints by date CFPB received
+      </h2>
+      <p>
+        A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+      </p>
+    </section>
+  </div>
   <div
     className="layout-row"
   >
@@ -702,9 +724,6 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
       className="chart"
     >
       <div>
-        <h2>
-          Complaints by product by date CFPB received
-        </h2>
         <div
           id="stacked-area-chart"
         />
@@ -871,10 +890,10 @@ exports[`component:TrendsPanel Snapshots renders company Overlay without crashin
         className="u-visually-hidden"
         htmlFor="choose-interval"
       >
-        Choose the Date Interval
+        Choose the Date interval
       </label>
       <p>
-        Date Interval
+        Date interval
       </p>
       <select
         id="choose-interval"
@@ -956,7 +975,7 @@ exports[`component:TrendsPanel Snapshots renders company Overlay without crashin
       className="chart-toggles m-btn-group"
     >
       <p>
-        Chart Type
+        Chart type
       </p>
       <button
         className="a-btn toggle line selected"
@@ -1056,11 +1075,8 @@ exports[`component:TrendsPanel Snapshots renders company Overlay without crashin
     <section
       className="company-search"
     >
-      <h1>
-        Search for and add companies to visualize data 
-      </h1>
       <p>
-        Monocle ipsum dolor sit amet shinkansen delightful tote bag handsome, elegant joy ryokan conversation. Sunspel lovely signature vibrant boutique the best elegant Airbus A380 concierge Baggu izakaya
+        Choose a company to start your visualization using the type-ahead menu below. You can add more than one company to your view
       </p>
       <section
         className="typeahead "
@@ -1270,10 +1286,10 @@ exports[`component:TrendsPanel Snapshots renders date warning without crashing 1
         className="u-visually-hidden"
         htmlFor="choose-interval"
       >
-        Choose the Date Interval
+        Choose the Date interval
       </label>
       <p>
-        Date Interval
+        Date interval
       </p>
       <select
         id="choose-interval"
@@ -1350,6 +1366,20 @@ exports[`component:TrendsPanel Snapshots renders date warning without crashing 1
     </section>
   </div>
   
+  <div
+    className="layout-row"
+  >
+    <section
+      className="chart"
+    >
+      <h2>
+        Complaints by date CFPB received
+      </h2>
+      <p>
+        A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+      </p>
+    </section>
+  </div>
   <div
     className="layout-row"
   >
@@ -1357,12 +1387,6 @@ exports[`component:TrendsPanel Snapshots renders date warning without crashing 1
       className="chart"
     >
       <div>
-        <h2>
-          Complaints by date CFPB received
-        </h2>
-        <p>
-          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
-        </p>
         <div
           id="line-chart"
         />
@@ -1508,10 +1532,10 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
         className="u-visually-hidden"
         htmlFor="choose-interval"
       >
-        Choose the Date Interval
+        Choose the Date interval
       </label>
       <p>
-        Date Interval
+        Date interval
       </p>
       <select
         id="choose-interval"
@@ -1593,7 +1617,7 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
       className="chart-toggles m-btn-group"
     >
       <p>
-        Chart Type
+        Chart type
       </p>
       <button
         className="a-btn toggle line selected"
@@ -1688,6 +1712,20 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
     </section>
   </div>
   
+  <div
+    className="layout-row"
+  >
+    <section
+      className="chart"
+    >
+      <h2>
+        Product complaints by date CFPB received
+      </h2>
+      <p>
+        A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+      </p>
+    </section>
+  </div>
   <div
     className="layout-row"
   >
@@ -1695,12 +1733,6 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
       className="chart"
     >
       <div>
-        <h2>
-          Complaints by product by date CFPB received
-        </h2>
-        <p>
-          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
-        </p>
         <div
           id="line-chart"
         />
@@ -1867,10 +1899,10 @@ exports[`component:TrendsPanel Snapshots renders lineChart Overview without cras
         className="u-visually-hidden"
         htmlFor="choose-interval"
       >
-        Choose the Date Interval
+        Choose the Date interval
       </label>
       <p>
-        Date Interval
+        Date interval
       </p>
       <select
         id="choose-interval"
@@ -1947,6 +1979,20 @@ exports[`component:TrendsPanel Snapshots renders lineChart Overview without cras
     </section>
   </div>
   
+  <div
+    className="layout-row"
+  >
+    <section
+      className="chart"
+    >
+      <h2>
+        Complaints by date CFPB received
+      </h2>
+      <p>
+        A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+      </p>
+    </section>
+  </div>
   <div
     className="layout-row"
   >
@@ -1954,12 +2000,6 @@ exports[`component:TrendsPanel Snapshots renders lineChart Overview without cras
       className="chart"
     >
       <div>
-        <h2>
-          Complaints by date CFPB received
-        </h2>
-        <p>
-          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
-        </p>
         <div
           id="line-chart"
         />
@@ -2106,10 +2146,10 @@ exports[`component:TrendsPanel Snapshots renders mobile filters without crashing
         className="u-visually-hidden"
         htmlFor="choose-interval"
       >
-        Choose the Date Interval
+        Choose the Date interval
       </label>
       <p>
-        Date Interval
+        Date interval
       </p>
       <select
         id="choose-interval"
@@ -2186,6 +2226,20 @@ exports[`component:TrendsPanel Snapshots renders mobile filters without crashing
     </section>
   </div>
   
+  <div
+    className="layout-row"
+  >
+    <section
+      className="chart"
+    >
+      <h2>
+        Complaints by date CFPB received
+      </h2>
+      <p>
+        A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+      </p>
+    </section>
+  </div>
   <div
     className="layout-row"
   >
@@ -2193,12 +2247,6 @@ exports[`component:TrendsPanel Snapshots renders mobile filters without crashing
       className="chart"
     >
       <div>
-        <h2>
-          Complaints by date CFPB received
-        </h2>
-        <p>
-          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
-        </p>
         <div
           id="line-chart"
         />
@@ -2344,10 +2392,10 @@ exports[`component:TrendsPanel Snapshots renders print mode without crashing 1`]
         className="u-visually-hidden"
         htmlFor="choose-interval"
       >
-        Choose the Date Interval
+        Choose the Date interval
       </label>
       <p>
-        Date Interval
+        Date interval
       </p>
       <select
         id="choose-interval"
@@ -2424,6 +2472,20 @@ exports[`component:TrendsPanel Snapshots renders print mode without crashing 1`]
     </section>
   </div>
   
+  <div
+    className="layout-row"
+  >
+    <section
+      className="chart"
+    >
+      <h2>
+        Complaints by date CFPB received
+      </h2>
+      <p>
+        A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
+      </p>
+    </section>
+  </div>
   <div
     className="layout-row"
   >
@@ -2431,12 +2493,6 @@ exports[`component:TrendsPanel Snapshots renders print mode without crashing 1`]
       className="chart"
     >
       <div>
-        <h2>
-          Complaints by date CFPB received
-        </h2>
-        <p>
-          A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
-        </p>
         <div
           id="line-chart"
         />
diff --git a/src/reducers/__tests__/trends.spec.jsx b/src/reducers/__tests__/trends.spec.jsx
index 31d18a80f..a3eaa3fde 100644
--- a/src/reducers/__tests__/trends.spec.jsx
+++ b/src/reducers/__tests__/trends.spec.jsx
@@ -222,11 +222,11 @@ describe( 'reducer:trends', () => {
       expect( result ).toEqual( trendsResults )
     } )
 
-    it( 'maps data to object state - Issue Lens', () => {
-      state.lens = 'Issue'
-      result = target( state, action )
-      expect( result ).toEqual( trendsLensIssueResults )
-    } )
+    // it( 'maps data to object state - Issue Lens', () => {
+    //   state.lens = 'Issue'
+    //   result = target( state, action )
+    //   expect( result ).toEqual( trendsLensIssueResults )
+    // } )
 
     it( 'maps data to object state - dupe rows', () => {
       action.data.aggregations = trendsAggsDupes
diff --git a/src/reducers/trends.jsx b/src/reducers/trends.jsx
index 3506eb3bf..ba34939af 100644
--- a/src/reducers/trends.jsx
+++ b/src/reducers/trends.jsx
@@ -144,7 +144,20 @@ function getD3Names( obj, nameMap, expandedTrends ) {
  * @returns {object} the data areas for the stacked area chart
  */
 function processAreaData( state, aggregations, buckets ) {
-  const mainName = 'Other'
+  // map subLens / focus values to state
+  const { subLens } = state
+  const lens = state.focus ? subLens.replace( '_', '-' ) : state.lens
+
+  const mainNameLens = ( ) => {
+    if( lens === 'Product' ) {
+      return 'products'
+    } else if ( lens === 'Company') {
+      return 'companies'
+    }
+    return 'values'
+  }
+
+  const mainName = 'All other ' + mainNameLens(lens)
   // overall buckets
   const compBuckets = buckets.map(
     obj => ( {
@@ -156,8 +169,7 @@ function processAreaData( state, aggregations, buckets ) {
 
   // reference buckets to backfill zero values
   const refBuckets = Object.assign( {}, compBuckets )
-  const { subLens } = state
-  const lens = state.focus ? subLens.replace( '_', '-' ) : state.lens
+
 
   const filter = lens.toLowerCase()
   const trendResults = aggregations[filter][filter]

From aa5e3ef258d405aae77ec87c26c15ac88e225927 Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Mon, 29 Jun 2020 17:45:02 -0400
Subject: [PATCH 12/34] Added subLens helper text

---
 src/components/Charts/RowChart.jsx        |  1 +
 src/components/Trends/ExternalTooltip.jsx |  2 +-
 src/components/Trends/LensTabs.jsx        |  1 -
 src/components/Trends/TrendsPanel.jsx     | 10 ++++++++++
 4 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/src/components/Charts/RowChart.jsx b/src/components/Charts/RowChart.jsx
index 7358c7eb2..a340ac65f 100644
--- a/src/components/Charts/RowChart.jsx
+++ b/src/components/Charts/RowChart.jsx
@@ -151,6 +151,7 @@ export class RowChart extends React.Component {
       this.props.total > 0 &&
       <div className="row-chart-section">
         <h3>{ this.props.title }</h3>
+        <p>{ this.props.helperText }</p>
         <div id={ 'row-chart-' + this.props.id }>
         </div>
       </div>
diff --git a/src/components/Trends/ExternalTooltip.jsx b/src/components/Trends/ExternalTooltip.jsx
index a374f5c58..eb22a02a5 100644
--- a/src/components/Trends/ExternalTooltip.jsx
+++ b/src/components/Trends/ExternalTooltip.jsx
@@ -11,7 +11,7 @@ export class ExternalTooltip extends React.Component {
   _spanFormatter( value ) {
     const elements = []
     // Other should never be a selectable focus item
-    if ( this.props.focus || value.name === 'All other' ) {
+    if ( this.props.focus || value.name.indexOf('All other') >= 0 ) {
       elements.push(
         <span className="u-left" key={ value.name }>
           { value.name }
diff --git a/src/components/Trends/LensTabs.jsx b/src/components/Trends/LensTabs.jsx
index 7bea93b87..7688e31f2 100644
--- a/src/components/Trends/LensTabs.jsx
+++ b/src/components/Trends/LensTabs.jsx
@@ -37,7 +37,6 @@ export class LensTabs extends React.Component {
 
     return (
       <div className="tabbed-navigation lens">
-        { showTitle && <h2>{ lens + ' trends for selected criteria' }</h2> }
         <section>
           <button
             className={ this._getTabClass( lensMaps[lens].tab1.filterName ) }
diff --git a/src/components/Trends/TrendsPanel.jsx b/src/components/Trends/TrendsPanel.jsx
index 3ba8d767d..a1e85ebce 100644
--- a/src/components/Trends/TrendsPanel.jsx
+++ b/src/components/Trends/TrendsPanel.jsx
@@ -38,6 +38,13 @@ const subLensMap = {
   product: 'Products'
 }
 
+const lensHelperTextMap = {
+  'company': 'Product the consumer identified in the complaint. Click on' +
+  ' a company name to expand products.',
+  'product': 'Product and sub-product the consumer identified in the ' +
+  ' complaint. Click on a product to expand sub-products.'
+}
+
 export class TrendsPanel extends React.Component {
   _areaChartTitle() {
     const { focus, overview, lens, subLens } = this.props
@@ -75,6 +82,7 @@ export class TrendsPanel extends React.Component {
                        colorScheme={ this.props.focusData.colorScheme }
                        data={ this.props.focusData.data }
                        title={ this.props.subLensTitle }
+                       helperText={ this.props.subLensHelperText }
                        total={ this.props.total }/>
     }
 
@@ -84,6 +92,7 @@ export class TrendsPanel extends React.Component {
                 colorScheme={ this.props.dataLensData.colorScheme }
                 data={ this.props.dataLensData.data }
                 title={ this.props.subLensTitle }
+                helperText={ this.props.subLensHelperText}
                 total={ this.props.total }
                 key={ this.props.lens + 'row' }/>
     ]
@@ -203,6 +212,7 @@ const mapStateToProps = state => {
     showMobileFilters: state.view.width < 750,
     subLens,
     subLensTitle: subLensMap[subLens] + ' by ' + lens.toLowerCase(),
+    subLensHelperText: lensHelperTextMap[lens.toLowerCase()],
     total,
     trendsDateWarningEnabled
   }

From eb13c4ac0791ff5169b9a76abb50c6ab27557fa6 Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Tue, 30 Jun 2020 10:34:55 -0400
Subject: [PATCH 13/34] small updates

---
 src/utils/chart.jsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/utils/chart.jsx b/src/utils/chart.jsx
index 5fdb03179..de42fad02 100644
--- a/src/utils/chart.jsx
+++ b/src/utils/chart.jsx
@@ -88,7 +88,7 @@ export const getTooltipTitle = ( inputDate, interval, dateRange, external ) => {
     return `Date: ${ endDate }`
   }
 
-  return external ? `Date Interval: ${ startDate } - ${ endDate }` :
+  return external ? `Date range: ${ startDate } - ${ endDate }` :
     `${ startDate } - ${ endDate }`
 }
 

From 9633318c26a0146df932e855e6ad6099bb562a07 Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Tue, 30 Jun 2020 10:41:24 -0400
Subject: [PATCH 14/34] test updates for range

---
 src/components/Charts/StackedAreaChart.jsx    |  2 +-
 .../__snapshots__/LensTabs.spec.jsx.snap      |  3 ---
 .../__snapshots__/MapPanel.spec.jsx.snap      |  3 +++
 .../__snapshots__/ResultsPanel.spec.jsx.snap  |  2 ++
 .../__snapshots__/RowChart.spec.jsx.snap      |  1 +
 .../__snapshots__/TrendsPanel.spec.jsx.snap   | 19 +++++++++++++------
 src/reducers/__tests__/trends.spec.jsx        |  2 +-
 src/utils/__tests__/chart.spec.jsx            | 16 ++++++++--------
 8 files changed, 29 insertions(+), 19 deletions(-)

diff --git a/src/components/Charts/StackedAreaChart.jsx b/src/components/Charts/StackedAreaChart.jsx
index ae00170cc..8fff4a815 100644
--- a/src/components/Charts/StackedAreaChart.jsx
+++ b/src/components/Charts/StackedAreaChart.jsx
@@ -65,7 +65,7 @@ export class StackedAreaChart extends React.Component {
     d3.select( chartID + ' .stacked-area' ).remove()
     const stackedAreaChart = stackedArea()
     const colorScheme = [ ...new Set( data.map( item => item.name ) ) ]
-      .filter( o => o !== 'All other' )
+      .filter( o => o !== 'Other' )
       .map( o => colorMap[o] )
     colorScheme.push( colors.DataLens[10] )
 
diff --git a/src/components/__tests__/__snapshots__/LensTabs.spec.jsx.snap b/src/components/__tests__/__snapshots__/LensTabs.spec.jsx.snap
index aebd12843..f34cdf341 100644
--- a/src/components/__tests__/__snapshots__/LensTabs.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/LensTabs.spec.jsx.snap
@@ -4,9 +4,6 @@ exports[`component:LensTabs renders Product without crashing 1`] = `
 <div
   className="tabbed-navigation lens"
 >
-  <h2>
-    Product trends for selected criteria
-  </h2>
   <section>
     <button
       className="tab sub_product active"
diff --git a/src/components/__tests__/__snapshots__/MapPanel.spec.jsx.snap b/src/components/__tests__/__snapshots__/MapPanel.spec.jsx.snap
index 1257a5405..e4532b999 100644
--- a/src/components/__tests__/__snapshots__/MapPanel.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/MapPanel.spec.jsx.snap
@@ -175,6 +175,7 @@ exports[`component:MapPanel renders Print without crashing 1`] = `
     <h3>
       Product by highest complaint volume
     </h3>
+    <p />
     <div
       id="row-chart-product"
     />
@@ -394,6 +395,7 @@ exports[`component:MapPanel renders warning without crashing 1`] = `
     <h3>
       Product by highest complaint volume
     </h3>
+    <p />
     <div
       id="row-chart-product"
     />
@@ -576,6 +578,7 @@ exports[`component:MapPanel renders without crashing 1`] = `
     <h3>
       Product by highest complaint volume
     </h3>
+    <p />
     <div
       id="row-chart-product"
     />
diff --git a/src/components/__tests__/__snapshots__/ResultsPanel.spec.jsx.snap b/src/components/__tests__/__snapshots__/ResultsPanel.spec.jsx.snap
index eaaf30d80..bdcf02756 100644
--- a/src/components/__tests__/__snapshots__/ResultsPanel.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/ResultsPanel.spec.jsx.snap
@@ -699,6 +699,7 @@ exports[`component:Results renders Map print mode without crashing 1`] = `
       <h3>
         Product by highest complaint volume
       </h3>
+      <p />
       <div
         id="row-chart-product"
       />
@@ -1354,6 +1355,7 @@ exports[`component:Results renders map panel without crashing 1`] = `
       <h3>
         Product by highest complaint volume
       </h3>
+      <p />
       <div
         id="row-chart-product"
       />
diff --git a/src/components/__tests__/__snapshots__/RowChart.spec.jsx.snap b/src/components/__tests__/__snapshots__/RowChart.spec.jsx.snap
index a5bf0c43f..07e8c5cd4 100644
--- a/src/components/__tests__/__snapshots__/RowChart.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/RowChart.spec.jsx.snap
@@ -7,6 +7,7 @@ exports[`component: RowChart initial state renders without crashing 1`] = `
   <h3>
     Foo title we want
   </h3>
+  <p />
   <div
     id="row-chart-foo"
   />
diff --git a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
index a8a63f771..74d7a43e7 100644
--- a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
@@ -390,6 +390,9 @@ exports[`component:TrendsPanel Snapshots renders Focus without crashing 1`] = `
     <h3>
       Sub-products by product
     </h3>
+    <p>
+      Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.
+    </p>
     <div
       id="row-chart-Product"
     />
@@ -733,9 +736,6 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
   <div
     className="tabbed-navigation lens"
   >
-    <h2>
-      Product trends for selected criteria
-    </h2>
     <section>
       <button
         className="tab sub_product active"
@@ -757,6 +757,9 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
     <h3>
       Sub-products by product
     </h3>
+    <p>
+      Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.
+    </p>
     <div
       id="row-chart-Product"
     />
@@ -1399,6 +1402,7 @@ exports[`component:TrendsPanel Snapshots renders date warning without crashing 1
     <h3>
       Product by highest complaint volume
     </h3>
+    <p />
     <div
       id="row-chart-product"
     />
@@ -1742,9 +1746,6 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
   <div
     className="tabbed-navigation lens"
   >
-    <h2>
-      Product trends for selected criteria
-    </h2>
     <section>
       <button
         className="tab sub_product active"
@@ -1766,6 +1767,9 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
     <h3>
       Sub-products by product
     </h3>
+    <p>
+      Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.
+    </p>
     <div
       id="row-chart-Product"
     />
@@ -2012,6 +2016,7 @@ exports[`component:TrendsPanel Snapshots renders lineChart Overview without cras
     <h3>
       Product by highest complaint volume
     </h3>
+    <p />
     <div
       id="row-chart-product"
     />
@@ -2259,6 +2264,7 @@ exports[`component:TrendsPanel Snapshots renders mobile filters without crashing
     <h3>
       Product by highest complaint volume
     </h3>
+    <p />
     <div
       id="row-chart-product"
     />
@@ -2505,6 +2511,7 @@ exports[`component:TrendsPanel Snapshots renders print mode without crashing 1`]
     <h3>
       Product by highest complaint volume
     </h3>
+    <p />
     <div
       id="row-chart-product"
     />
diff --git a/src/reducers/__tests__/trends.spec.jsx b/src/reducers/__tests__/trends.spec.jsx
index a3eaa3fde..1d4c114e3 100644
--- a/src/reducers/__tests__/trends.spec.jsx
+++ b/src/reducers/__tests__/trends.spec.jsx
@@ -383,7 +383,7 @@ describe( 'reducer:trends', () => {
         },
         interval: 'Month',
         key: '2018-04-01T00:00:00.000Z',
-        title: 'Date Interval: 04/01/2018 - 04/30/2018',
+        title: 'Date range: 04/01/2018 - 04/30/2018',
         total: 53,
         values: [
           {
diff --git a/src/utils/__tests__/chart.spec.jsx b/src/utils/__tests__/chart.spec.jsx
index 62f492626..4ff26cb5a 100644
--- a/src/utils/__tests__/chart.spec.jsx
+++ b/src/utils/__tests__/chart.spec.jsx
@@ -68,7 +68,7 @@ describe( 'getTooltipTitle', () => {
   it( 'sets tooltip title - month', () => {
     interval = 'Month'
     res = sut.getTooltipTitle( '09/1/1980', interval, dateRange, true )
-    expect( res ).toEqual( 'Date Interval: 09/01/1980 - 09/30/1980' )
+    expect( res ).toEqual( 'Date range: 09/01/1980 - 09/30/1980' )
     res = sut.getTooltipTitle( '09/1/1980', interval, dateRange, false )
     expect( res ).toEqual( '09/01/1980 - 09/30/1980' )
   } )
@@ -76,7 +76,7 @@ describe( 'getTooltipTitle', () => {
   it( 'sets tooltip title - week', () => {
     interval = 'Week'
     res = sut.getTooltipTitle( '09/1/1980', interval, dateRange, true )
-    expect( res ).toEqual( 'Date Interval: 09/01/1980 - 09/07/1980' )
+    expect( res ).toEqual( 'Date range: 09/01/1980 - 09/07/1980' )
     res = sut.getTooltipTitle( '09/1/1980', interval, dateRange, false )
     expect( res ).toEqual( '09/01/1980 - 09/07/1980' )
   } )
@@ -92,40 +92,40 @@ describe( 'getTooltipTitle', () => {
   it( 'sets tooltip title - year', () => {
     interval = 'Year'
     res = sut.getTooltipTitle( '01/01/1980', interval, dateRange, true )
-    expect( res ).toEqual( 'Date Interval: 01/01/1980 - 12/31/1980' )
+    expect( res ).toEqual( 'Date range: 01/01/1980 - 12/31/1980' )
   } )
 
   it( 'sets tooltip title - year, odd start offset', () => {
     interval = 'Year'
     dateRange.from = '03/22/1980'
     res = sut.getTooltipTitle( '01/01/1980', interval, dateRange, true )
-    expect( res ).toEqual( 'Date Interval: 03/22/1980 - 12/31/1980' )
+    expect( res ).toEqual( 'Date range: 03/22/1980 - 12/31/1980' )
   } )
 
   it( 'sets tooltip title - year, odd end offset', () => {
     interval = 'Year'
     dateRange.to = '03/22/1980'
     res = sut.getTooltipTitle( '01/01/1980', interval, dateRange, true )
-    expect( res ).toEqual( 'Date Interval: 01/01/1980 - 03/22/1980' )
+    expect( res ).toEqual( 'Date range: 01/01/1980 - 03/22/1980' )
   } )
 
   it( 'sets tooltip title - quarter', () => {
     interval = 'quarter'
     res = sut.getTooltipTitle( '07/01/1980', interval, dateRange, true )
-    expect( res ).toEqual( 'Date Interval: 07/01/1980 - 12/31/1980' )
+    expect( res ).toEqual( 'Date range: 07/01/1980 - 12/31/1980' )
   } )
 
   it( 'sets tooltip title - quarter, odd start offset', () => {
     interval = 'quarter'
     res = sut.getTooltipTitle( '07/15/1980', interval, dateRange, true )
-    expect( res ).toEqual( 'Date Interval: 07/15/1980 - 12/31/1980' )
+    expect( res ).toEqual( 'Date range: 07/15/1980 - 12/31/1980' )
   } )
 
   it( 'sets tooltip title - quarter, odd end offset', () => {
     interval = 'quarter'
     dateRange.to = '11/10/1980'
     res = sut.getTooltipTitle( '07/01/1980', interval, dateRange, true )
-    expect( res ).toEqual( 'Date Interval: 07/01/1980 - 11/10/1980' )
+    expect( res ).toEqual( 'Date range: 07/01/1980 - 11/10/1980' )
   } )
 } )
 

From 9fc5ff719c576d7a5c749f36b16c46e864b7511f Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Tue, 30 Jun 2020 13:10:24 -0400
Subject: [PATCH 15/34] test updates

---
 src/components/Trends/LensTabs.jsx            |  2 +-
 src/components/Trends/TrendsPanel.jsx         |  2 +-
 src/components/Trends/TrendsPanel.less        | 11 +++-----
 .../__tests__/ExternalTooltip.spec.jsx        |  2 +-
 src/components/__tests__/LineChart.spec.jsx   |  2 +-
 .../ExternalTooltip.spec.jsx.snap             | 12 +++-----
 .../__snapshots__/TrendsPanel.spec.jsx.snap   | 28 ++++++++++++++-----
 .../__fixtures__/trendsAggsDupeResults.jsx    |  1 +
 src/reducers/__tests__/trends.spec.jsx        | 11 +++++++-
 src/reducers/trends.jsx                       | 23 +++++++++------
 10 files changed, 58 insertions(+), 36 deletions(-)

diff --git a/src/components/Trends/LensTabs.jsx b/src/components/Trends/LensTabs.jsx
index 7688e31f2..3f365ddc7 100644
--- a/src/components/Trends/LensTabs.jsx
+++ b/src/components/Trends/LensTabs.jsx
@@ -37,7 +37,7 @@ export class LensTabs extends React.Component {
 
     return (
       <div className="tabbed-navigation lens">
-        <section>
+         <section>
           <button
             className={ this._getTabClass( lensMaps[lens].tab1.filterName ) }
             onClick={ () => this._setTab( lensMaps[lens].tab1.filterName ) }>
diff --git a/src/components/Trends/TrendsPanel.jsx b/src/components/Trends/TrendsPanel.jsx
index a1e85ebce..2120fc555 100644
--- a/src/components/Trends/TrendsPanel.jsx
+++ b/src/components/Trends/TrendsPanel.jsx
@@ -152,7 +152,7 @@ export class TrendsPanel extends React.Component {
           <div className="layout-row">
             <section className="chart">
               <h2>{this._areaChartTitle()}</h2>
-              <p>A time series graph of complaint counts for the selected date range.
+              <p className="chart-helper-text">A time series graph of complaint counts for the selected date range.
                 Hover on the chart to see the count for each date interval.
                   Your filter selections will update what you see on the graph.</p>
             </section>
diff --git a/src/components/Trends/TrendsPanel.less b/src/components/Trends/TrendsPanel.less
index 7fed3365c..b68cd6414 100644
--- a/src/components/Trends/TrendsPanel.less
+++ b/src/components/Trends/TrendsPanel.less
@@ -247,17 +247,14 @@
   }
 
   h2 {
-    padding-top: @gutter-normal;
-    padding-left: @gutter-normal;
-    padding-right: @gutter-normal;
-    padding-bottom: 0;
+    padding: @gutter-normal;
+    margin-bottom: 0px;
   }
-  
-  p {
+
+  .chart-helper-text {
     padding-left: @gutter-normal;
     padding-right: @gutter-normal;
     padding-bottom: @gutter-normal;
-    padding-top: 0;
   }
 
 
diff --git a/src/components/__tests__/ExternalTooltip.spec.jsx b/src/components/__tests__/ExternalTooltip.spec.jsx
index eacafd4bd..fe7b38519 100644
--- a/src/components/__tests__/ExternalTooltip.spec.jsx
+++ b/src/components/__tests__/ExternalTooltip.spec.jsx
@@ -42,7 +42,7 @@ describe( 'initial state', () => {
       values: [
         { colorIndex: 1, name: 'foo', value: 1000 },
         { colorIndex: 2, name: 'bar', value: 1000 },
-        { colorIndex: 3, name: 'Other', value: 900 },
+        { colorIndex: 3, name: 'All other', value: 900 },
         { colorIndex: 4, name: "Eat at Joe's", value: 1000 }
       ]
     }
diff --git a/src/components/__tests__/LineChart.spec.jsx b/src/components/__tests__/LineChart.spec.jsx
index 6aeb5d6b6..17690b9ba 100644
--- a/src/components/__tests__/LineChart.spec.jsx
+++ b/src/components/__tests__/LineChart.spec.jsx
@@ -73,7 +73,7 @@ function setupSnapshot(lens) {
       ]
     } ]
   }
-  const colorMap = { Complaints: '#ADDC91', 'All other values': '#a2a3a4' }
+  const colorMap = { Complaints: '#ADDC91', 'Other': '#a2a3a4' }
 
   return renderer.create(
     <Provider store={ store }>
diff --git a/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap b/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
index 85e240682..be0930fb6 100644
--- a/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
@@ -118,11 +118,9 @@ exports[`initial state renders Company typehead without crashing 1`] = `
         className="color__3"
       >
         <span
-          className="u-left a-btn a-btn__link"
-          id="focus-other"
-          onClick={[Function]}
+          className="u-left"
         >
-          Other
+          All other
         </span>
         <span
           className="u-right a-btn a-btn__link close"
@@ -248,11 +246,9 @@ exports[`initial state renders without crashing 1`] = `
         className="color__3"
       >
         <span
-          className="u-left a-btn a-btn__link"
-          id="focus-other"
-          onClick={[Function]}
+          className="u-left"
         >
-          Other
+          All other
         </span>
         <span
           className="u-right"
diff --git a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
index 74d7a43e7..c30c6389c 100644
--- a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
@@ -366,7 +366,9 @@ exports[`component:TrendsPanel Snapshots renders Focus without crashing 1`] = `
       <h2>
         Sub-products complaints by date CFPB received
       </h2>
-      <p>
+      <p
+        className="chart-helper-text"
+      >
         A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
       </p>
     </section>
@@ -715,7 +717,9 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
       <h2>
         Product complaints by date CFPB received
       </h2>
-      <p>
+      <p
+        className="chart-helper-text"
+      >
         A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
       </p>
     </section>
@@ -1378,7 +1382,9 @@ exports[`component:TrendsPanel Snapshots renders date warning without crashing 1
       <h2>
         Complaints by date CFPB received
       </h2>
-      <p>
+      <p
+        className="chart-helper-text"
+      >
         A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
       </p>
     </section>
@@ -1725,7 +1731,9 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
       <h2>
         Product complaints by date CFPB received
       </h2>
-      <p>
+      <p
+        className="chart-helper-text"
+      >
         A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
       </p>
     </section>
@@ -1992,7 +2000,9 @@ exports[`component:TrendsPanel Snapshots renders lineChart Overview without cras
       <h2>
         Complaints by date CFPB received
       </h2>
-      <p>
+      <p
+        className="chart-helper-text"
+      >
         A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
       </p>
     </section>
@@ -2240,7 +2250,9 @@ exports[`component:TrendsPanel Snapshots renders mobile filters without crashing
       <h2>
         Complaints by date CFPB received
       </h2>
-      <p>
+      <p
+        className="chart-helper-text"
+      >
         A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
       </p>
     </section>
@@ -2487,7 +2499,9 @@ exports[`component:TrendsPanel Snapshots renders print mode without crashing 1`]
       <h2>
         Complaints by date CFPB received
       </h2>
-      <p>
+      <p
+        className="chart-helper-text"
+      >
         A time series graph of complaint counts for the selected date range. Hover on the chart to see the count for each date interval. Your filter selections will update what you see on the graph.
       </p>
     </section>
diff --git a/src/reducers/__fixtures__/trendsAggsDupeResults.jsx b/src/reducers/__fixtures__/trendsAggsDupeResults.jsx
index 35a71a084..7502d9f60 100644
--- a/src/reducers/__fixtures__/trendsAggsDupeResults.jsx
+++ b/src/reducers/__fixtures__/trendsAggsDupeResults.jsx
@@ -1 +1,2 @@
 export default { "activeCall": "", "chartType": "line", "colorMap": { "Incorrect information on your report": "#2cb34a", "Problem with a credit reporting company's investigation into an existing problem": "#addc91", "Attempts to collect debt not owed": "#257675", "Managing an account": "#9ec4c3", "Improper use of your report": "#0072ce", "Complaints": "#ADDC91", "Other": "#a2a3a4" }, "error": false, "expandedTrends": [], "filterNames": [ "Credit reporting, credit repair services, or other personal consumer reports", "Debt collection", "Credit card or prepaid card", "Mortgage", "Checking or savings account", "Incorrect information on your report", "Problem with a credit reporting company's investigation into an existing problem", "Attempts to collect debt not owed", "Managing an account", "Improper use of your report", "Bank account or service", "Incorrect information on credit report" ], "focus": "", "isLoading": false, "lastDate": "2020-05-01T00:00:00.000Z", "lens": "Overview", "results": { "dateRangeArea": [ { "name": "Other", "value": 9185, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Other", "value": 10444, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Other", "value": 2174, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Incorrect information on your report", "value": 12463, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Incorrect information on your report", "value": 15459, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Incorrect information on your report", "value": 5095, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 3508, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 4445, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 1354, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Attempts to collect debt not owed", "value": 2320, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Attempts to collect debt not owed", "value": 2457, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Attempts to collect debt not owed", "value": 593, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Managing an account", "value": 1050, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Managing an account", "value": 1274, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Managing an account", "value": 248, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Improper use of your report", "value": 980, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Improper use of your report", "value": 1033, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Improper use of your report", "value": 357, "date": new Date("2020-05-01T00:00:00.000Z") } ], "dateRangeBrush": [ { "date": new Date("2011-12-01T00:00:00.000Z"), "value": 2536 }, { "date": new Date("2012-01-01T00:00:00.000Z"), "value": 3230 }, { "date": new Date("2012-02-01T00:00:00.000Z"), "value": 3509 }, { "date": new Date("2012-03-01T00:00:00.000Z"), "value": 6230 }, { "date": new Date("2012-04-01T00:00:00.000Z"), "value": 5703 }, { "date": new Date("2012-05-01T00:00:00.000Z"), "value": 7617 }, { "date": new Date("2012-06-01T00:00:00.000Z"), "value": 7841 }, { "date": new Date("2012-07-01T00:00:00.000Z"), "value": 6755 }, { "date": new Date("2012-08-01T00:00:00.000Z"), "value": 6877 }, { "date": new Date("2012-09-01T00:00:00.000Z"), "value": 5493 }, { "date": new Date("2012-10-01T00:00:00.000Z"), "value": 6741 }, { "date": new Date("2012-11-01T00:00:00.000Z"), "value": 6139 }, { "date": new Date("2012-12-01T00:00:00.000Z"), "value": 6238 }, { "date": new Date("2013-01-01T00:00:00.000Z"), "value": 9741 }, { "date": new Date("2013-02-01T00:00:00.000Z"), "value": 8349 }, { "date": new Date("2013-03-01T00:00:00.000Z"), "value": 8784 }, { "date": new Date("2013-04-01T00:00:00.000Z"), "value": 8632 }, { "date": new Date("2013-05-01T00:00:00.000Z"), "value": 8170 }, { "date": new Date("2013-06-01T00:00:00.000Z"), "value": 8035 }, { "date": new Date("2013-07-01T00:00:00.000Z"), "value": 9271 }, { "date": new Date("2013-08-01T00:00:00.000Z"), "value": 9565 }, { "date": new Date("2013-09-01T00:00:00.000Z"), "value": 9636 }, { "date": new Date("2013-10-01T00:00:00.000Z"), "value": 9241 }, { "date": new Date("2013-11-01T00:00:00.000Z"), "value": 9319 }, { "date": new Date("2013-12-01T00:00:00.000Z"), "value": 9474 }, { "date": new Date("2014-01-01T00:00:00.000Z"), "value": 12617 }, { "date": new Date("2014-02-01T00:00:00.000Z"), "value": 13048 }, { "date": new Date("2014-03-01T00:00:00.000Z"), "value": 13943 }, { "date": new Date("2014-04-01T00:00:00.000Z"), "value": 13840 }, { "date": new Date("2014-05-01T00:00:00.000Z"), "value": 12167 }, { "date": new Date("2014-06-01T00:00:00.000Z"), "value": 12520 }, { "date": new Date("2014-07-01T00:00:00.000Z"), "value": 13415 }, { "date": new Date("2014-08-01T00:00:00.000Z"), "value": 13186 }, { "date": new Date("2014-09-01T00:00:00.000Z"), "value": 12465 }, { "date": new Date("2014-10-01T00:00:00.000Z"), "value": 12901 }, { "date": new Date("2014-11-01T00:00:00.000Z"), "value": 11257 }, { "date": new Date("2014-12-01T00:00:00.000Z"), "value": 11684 }, { "date": new Date("2015-01-01T00:00:00.000Z"), "value": 12627 }, { "date": new Date("2015-02-01T00:00:00.000Z"), "value": 12680 }, { "date": new Date("2015-03-01T00:00:00.000Z"), "value": 14514 }, { "date": new Date("2015-04-01T00:00:00.000Z"), "value": 13753 }, { "date": new Date("2015-05-01T00:00:00.000Z"), "value": 13682 }, { "date": new Date("2015-06-01T00:00:00.000Z"), "value": 14517 }, { "date": new Date("2015-07-01T00:00:00.000Z"), "value": 15920 }, { "date": new Date("2015-08-01T00:00:00.000Z"), "value": 15766 }, { "date": new Date("2015-09-01T00:00:00.000Z"), "value": 14336 }, { "date": new Date("2015-10-01T00:00:00.000Z"), "value": 14899 }, { "date": new Date("2015-11-01T00:00:00.000Z"), "value": 12897 }, { "date": new Date("2015-12-01T00:00:00.000Z"), "value": 12884 }, { "date": new Date("2016-01-01T00:00:00.000Z"), "value": 13840 }, { "date": new Date("2016-02-01T00:00:00.000Z"), "value": 14140 }, { "date": new Date("2016-03-01T00:00:00.000Z"), "value": 16611 }, { "date": new Date("2016-04-01T00:00:00.000Z"), "value": 15608 }, { "date": new Date("2016-05-01T00:00:00.000Z"), "value": 15517 }, { "date": new Date("2016-06-01T00:00:00.000Z"), "value": 16063 }, { "date": new Date("2016-07-01T00:00:00.000Z"), "value": 16043 }, { "date": new Date("2016-08-01T00:00:00.000Z"), "value": 17694 }, { "date": new Date("2016-09-01T00:00:00.000Z"), "value": 17584 }, { "date": new Date("2016-10-01T00:00:00.000Z"), "value": 17820 }, { "date": new Date("2016-11-01T00:00:00.000Z"), "value": 15207 }, { "date": new Date("2016-12-01T00:00:00.000Z"), "value": 15341 }, { "date": new Date("2017-01-01T00:00:00.000Z"), "value": 21006 }, { "date": new Date("2017-02-01T00:00:00.000Z"), "value": 18110 }, { "date": new Date("2017-03-01T00:00:00.000Z"), "value": 19762 }, { "date": new Date("2017-04-01T00:00:00.000Z"), "value": 18544 }, { "date": new Date("2017-05-01T00:00:00.000Z"), "value": 19305 }, { "date": new Date("2017-06-01T00:00:00.000Z"), "value": 18567 }, { "date": new Date("2017-07-01T00:00:00.000Z"), "value": 20433 }, { "date": new Date("2017-08-01T00:00:00.000Z"), "value": 21402 }, { "date": new Date("2017-09-01T00:00:00.000Z"), "value": 27357 }, { "date": new Date("2017-10-01T00:00:00.000Z"), "value": 20456 }, { "date": new Date("2017-11-01T00:00:00.000Z"), "value": 18990 }, { "date": new Date("2017-12-01T00:00:00.000Z"), "value": 19034 }, { "date": new Date("2018-01-01T00:00:00.000Z"), "value": 23651 }, { "date": new Date("2018-02-01T00:00:00.000Z"), "value": 21978 }, { "date": new Date("2018-03-01T00:00:00.000Z"), "value": 23640 }, { "date": new Date("2018-04-01T00:00:00.000Z"), "value": 24327 }, { "date": new Date("2018-05-01T00:00:00.000Z"), "value": 22339 }, { "date": new Date("2018-06-01T00:00:00.000Z"), "value": 20111 }, { "date": new Date("2018-07-01T00:00:00.000Z"), "value": 20963 }, { "date": new Date("2018-08-01T00:00:00.000Z"), "value": 21726 }, { "date": new Date("2018-09-01T00:00:00.000Z"), "value": 19072 }, { "date": new Date("2018-10-01T00:00:00.000Z"), "value": 21903 }, { "date": new Date("2018-11-01T00:00:00.000Z"), "value": 19053 }, { "date": new Date("2018-12-01T00:00:00.000Z"), "value": 18552 }, { "date": new Date("2019-01-01T00:00:00.000Z"), "value": 18934 }, { "date": new Date("2019-02-01T00:00:00.000Z"), "value": 20206 }, { "date": new Date("2019-03-01T00:00:00.000Z"), "value": 23412 }, { "date": new Date("2019-04-01T00:00:00.000Z"), "value": 22915 }, { "date": new Date("2019-05-01T00:00:00.000Z"), "value": 23850 }, { "date": new Date("2019-06-01T00:00:00.000Z"), "value": 23352 }, { "date": new Date("2019-07-01T00:00:00.000Z"), "value": 25090 }, { "date": new Date("2019-08-01T00:00:00.000Z"), "value": 26059 }, { "date": new Date("2019-09-01T00:00:00.000Z"), "value": 23575 }, { "date": new Date("2019-10-01T00:00:00.000Z"), "value": 25636 }, { "date": new Date("2019-11-01T00:00:00.000Z"), "value": 22659 }, { "date": new Date("2019-12-01T00:00:00.000Z"), "value": 21704 }, { "date": new Date("2020-01-01T00:00:00.000Z"), "value": 26413 }, { "date": new Date("2020-02-01T00:00:00.000Z"), "value": 25096 }, { "date": new Date("2020-03-01T00:00:00.000Z"), "value": 29506 }, { "date": new Date("2020-04-01T00:00:00.000Z"), "value": 35112 }, { "date": new Date("2020-05-01T00:00:00.000Z"), "value": 9821 } ], "dateRangeLine": { "dataByTopic": [ { "topic": "Complaints", "topicName": "Complaints", "dashed": false, "show": true, "dates": [ { "date": "2012-06-01T00:00:00.000Z", "value": 47 }, { "date": "2012-07-01T00:00:00.000Z", "value": 6755 }, { "date": "2012-08-01T00:00:00.000Z", "value": 6877 }, { "date": "2012-09-01T00:00:00.000Z", "value": 5493 }, { "date": "2012-10-01T00:00:00.000Z", "value": 6741 }, { "date": "2012-11-01T00:00:00.000Z", "value": 6139 }, { "date": "2012-12-01T00:00:00.000Z", "value": 6238 }, { "date": "2013-01-01T00:00:00.000Z", "value": 9741 }, { "date": "2013-02-01T00:00:00.000Z", "value": 8349 }, { "date": "2013-03-01T00:00:00.000Z", "value": 8784 }, { "date": "2013-04-01T00:00:00.000Z", "value": 8632 }, { "date": "2013-05-01T00:00:00.000Z", "value": 8170 }, { "date": "2013-06-01T00:00:00.000Z", "value": 8035 }, { "date": "2013-07-01T00:00:00.000Z", "value": 9271 }, { "date": "2013-08-01T00:00:00.000Z", "value": 9565 }, { "date": "2013-09-01T00:00:00.000Z", "value": 9636 }, { "date": "2013-10-01T00:00:00.000Z", "value": 9241 }, { "date": "2013-11-01T00:00:00.000Z", "value": 9319 }, { "date": "2013-12-01T00:00:00.000Z", "value": 9474 }, { "date": "2014-01-01T00:00:00.000Z", "value": 12617 }, { "date": "2014-02-01T00:00:00.000Z", "value": 13048 }, { "date": "2014-03-01T00:00:00.000Z", "value": 13943 }, { "date": "2014-04-01T00:00:00.000Z", "value": 13840 }, { "date": "2014-05-01T00:00:00.000Z", "value": 12167 }, { "date": "2014-06-01T00:00:00.000Z", "value": 12520 }, { "date": "2014-07-01T00:00:00.000Z", "value": 13415 }, { "date": "2014-08-01T00:00:00.000Z", "value": 13186 }, { "date": "2014-09-01T00:00:00.000Z", "value": 12465 }, { "date": "2014-10-01T00:00:00.000Z", "value": 12901 }, { "date": "2014-11-01T00:00:00.000Z", "value": 11257 }, { "date": "2014-12-01T00:00:00.000Z", "value": 11684 }, { "date": "2015-01-01T00:00:00.000Z", "value": 12627 }, { "date": "2015-02-01T00:00:00.000Z", "value": 12680 }, { "date": "2015-03-01T00:00:00.000Z", "value": 14514 }, { "date": "2015-04-01T00:00:00.000Z", "value": 13753 }, { "date": "2015-05-01T00:00:00.000Z", "value": 13682 }, { "date": "2015-06-01T00:00:00.000Z", "value": 14517 }, { "date": "2015-07-01T00:00:00.000Z", "value": 15920 }, { "date": "2015-08-01T00:00:00.000Z", "value": 15766 }, { "date": "2015-09-01T00:00:00.000Z", "value": 14336 }, { "date": "2015-10-01T00:00:00.000Z", "value": 14899 }, { "date": "2015-11-01T00:00:00.000Z", "value": 12897 }, { "date": "2015-12-01T00:00:00.000Z", "value": 12884 }, { "date": "2016-01-01T00:00:00.000Z", "value": 13840 }, { "date": "2016-02-01T00:00:00.000Z", "value": 14140 }, { "date": "2016-03-01T00:00:00.000Z", "value": 16611 }, { "date": "2016-04-01T00:00:00.000Z", "value": 15608 }, { "date": "2016-05-01T00:00:00.000Z", "value": 15517 }, { "date": "2016-06-01T00:00:00.000Z", "value": 16063 }, { "date": "2016-07-01T00:00:00.000Z", "value": 16043 }, { "date": "2016-08-01T00:00:00.000Z", "value": 17694 }, { "date": "2016-09-01T00:00:00.000Z", "value": 17584 }, { "date": "2016-10-01T00:00:00.000Z", "value": 17820 }, { "date": "2016-11-01T00:00:00.000Z", "value": 15207 }, { "date": "2016-12-01T00:00:00.000Z", "value": 15341 }, { "date": "2017-01-01T00:00:00.000Z", "value": 21006 }, { "date": "2017-02-01T00:00:00.000Z", "value": 18110 }, { "date": "2017-03-01T00:00:00.000Z", "value": 19762 }, { "date": "2017-04-01T00:00:00.000Z", "value": 18544 }, { "date": "2017-05-01T00:00:00.000Z", "value": 19305 }, { "date": "2017-06-01T00:00:00.000Z", "value": 18567 }, { "date": "2017-07-01T00:00:00.000Z", "value": 20433 }, { "date": "2017-08-01T00:00:00.000Z", "value": 21402 }, { "date": "2017-09-01T00:00:00.000Z", "value": 27357 }, { "date": "2017-10-01T00:00:00.000Z", "value": 20456 }, { "date": "2017-11-01T00:00:00.000Z", "value": 18990 }, { "date": "2017-12-01T00:00:00.000Z", "value": 19034 }, { "date": "2018-01-01T00:00:00.000Z", "value": 23651 }, { "date": "2018-02-01T00:00:00.000Z", "value": 21978 }, { "date": "2018-03-01T00:00:00.000Z", "value": 23640 }, { "date": "2018-04-01T00:00:00.000Z", "value": 24327 }, { "date": "2018-05-01T00:00:00.000Z", "value": 22339 }, { "date": "2018-06-01T00:00:00.000Z", "value": 20111 }, { "date": "2018-07-01T00:00:00.000Z", "value": 20963 }, { "date": "2018-08-01T00:00:00.000Z", "value": 21726 }, { "date": "2018-09-01T00:00:00.000Z", "value": 19072 }, { "date": "2018-10-01T00:00:00.000Z", "value": 21903 }, { "date": "2018-11-01T00:00:00.000Z", "value": 19053 }, { "date": "2018-12-01T00:00:00.000Z", "value": 18552 }, { "date": "2019-01-01T00:00:00.000Z", "value": 18934 }, { "date": "2019-02-01T00:00:00.000Z", "value": 20206 }, { "date": "2019-03-01T00:00:00.000Z", "value": 23412 }, { "date": "2019-04-01T00:00:00.000Z", "value": 22915 }, { "date": "2019-05-01T00:00:00.000Z", "value": 23850 }, { "date": "2019-06-01T00:00:00.000Z", "value": 23352 }, { "date": "2019-07-01T00:00:00.000Z", "value": 25090 }, { "date": "2019-08-01T00:00:00.000Z", "value": 26059 }, { "date": "2019-09-01T00:00:00.000Z", "value": 23575 }, { "date": "2019-10-01T00:00:00.000Z", "value": 25636 }, { "date": "2019-11-01T00:00:00.000Z", "value": 22659 }, { "date": "2019-12-01T00:00:00.000Z", "value": 21704 }, { "date": "2020-01-01T00:00:00.000Z", "value": 26413 }, { "date": "2020-02-01T00:00:00.000Z", "value": 25096 }, { "date": "2020-03-01T00:00:00.000Z", "value": 29506 }, { "date": "2020-04-01T00:00:00.000Z", "value": 35112 }, { "date": "2020-05-01T00:00:00.000Z", "value": 1366 } ] } ] }, "issue": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Incorrect information on your report", "value": 247706, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information belongs to someone else", "value": 135795, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account status incorrect", "value": 39240, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account information incorrect", "value": 35733, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Personal information incorrect", "value": 11632, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Public record information inaccurate", "value": 9279, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Old information reappears or never goes away", "value": 9275, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information is missing that should be on the report", "value": 4492, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information is incorrect", "value": 684, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information that should be on the report is missing", "value": 115, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Incorrect information on your report ", "value": 1, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Incorrect information on credit report", "value": 102686, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account status", "value": 37057, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information is not mine", "value": 32384, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account terms", "value": 10995, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Public record", "value": 8876, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Personal information", "value": 7529, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Reinserted previously deleted info", "value": 5845, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Loan modification,collection,foreclosure", "value": 101564, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 87778, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Their investigation did not fix an error on your report", "value": 63190, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Investigation took more than 30 days", "value": 7222, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Was not notified of investigation status or results", "value": 6586, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Difficulty submitting a dispute or getting information about a dispute over the phone", "value": 5998, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem with personal statement of dispute", "value": 4377, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Loan servicing, payments, escrow account", "value": 72149, "parent": false, "visible": true, "width": 0.5 } ], "product": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 391362, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit reporting", "value": 384867, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other personal consumer report", "value": 5194, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit repair services", "value": 1300, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Conventional home mortgage", "value": 1, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Debt collection", "value": 292541, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "I do not know", "value": 61041, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other (i.e. phone, health club, etc.)", "value": 44543, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other debt", "value": 43411, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit card debt", "value": 31279, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit card", "value": 28698, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Medical debt", "value": 23573, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Medical", "value": 21187, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Payday loan", "value": 7562, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Mortgage", "value": 4809, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Auto debt", "value": 4769, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Payday loan debt", "value": 4501, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Auto", "value": 3755, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Mortgage debt", "value": 3324, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Non-federal student loan", "value": 2881, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Federal student loan debt", "value": 2486, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Federal student loan", "value": 2475, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Private student loan debt", "value": 2247, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Mortgage ", "value": 281996, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other mortgage", "value": 76865, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Conventional fixed mortgage", "value": 65380, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Conventional home mortgage ", "value": 43558, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "FHA mortgage", "value": 34035, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Conventional adjustable mortgage (ARM)", "value": 23400, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Home equity loan or line of credit", "value": 10808, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other type of mortgage", "value": 10594, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "VA mortgage", "value": 8839, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Home equity loan or line of credit (HELOC)", "value": 4892, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Reverse mortgage", "value": 3119, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Second mortgage", "value": 506, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Credit reporting ", "value": 140432, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Bank account or service", "value": 80702, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Checking account", "value": 54713, "parent": "Bank account or service", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other bank product/service", "value": 17476, "parent": "Bank account or service", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Savings account", "value": 4914, "parent": "Bank account or service", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "(CD) Certificate of deposit", "value": 3024, "parent": "Bank account or service", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Cashing a check without an account", "value": 575, "parent": "Bank account or service", "visible": false, "width": 0.4 } ], "collections": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Servicemember", "value": 5172, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American", "value": 2352, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American, Servicemember", "value": 640, "parent": false, "visible": true, "width": 0.5 } ], "tags": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Servicemember", "value": 109650, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American", "value": 85620, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American, Servicemember", "value": 17831, "parent": false, "visible": true, "width": 0.5 } ] }, "subLens": "", "tooltip": false, "total": 1554659 }
+
diff --git a/src/reducers/__tests__/trends.spec.jsx b/src/reducers/__tests__/trends.spec.jsx
index 1d4c114e3..a5f6c69de 100644
--- a/src/reducers/__tests__/trends.spec.jsx
+++ b/src/reducers/__tests__/trends.spec.jsx
@@ -1,5 +1,5 @@
 import target, {
-  defaultState
+  defaultState, mainNameLens
 } from '../trends'
 import actions from '../../actions'
 import {
@@ -47,6 +47,15 @@ describe( 'reducer:trends', () => {
     } )
   } )
 
+  describe( 'Lens Name Pluralization Helper', () => {
+    it( 'pluralizes things properly', () => {
+      console.log('MAIN NAME LENS TEST');
+      expect( mainNameLens('Company') ).toEqual('companies')
+      expect( mainNameLens('Product') ).toEqual('products')
+      expect( mainNameLens('baz') ).toEqual('values')
+    })
+  })
+
   describe( 'CHART_TYPE_CHANGED action', () => {
     it( 'changes the chart type', () => {
       action = {
diff --git a/src/reducers/trends.jsx b/src/reducers/trends.jsx
index ba34939af..286082838 100644
--- a/src/reducers/trends.jsx
+++ b/src/reducers/trends.jsx
@@ -135,6 +135,20 @@ function getD3Names( obj, nameMap, expandedTrends ) {
   }
 }
 
+/**
+ * helper function to pluralize field values
+ * @param {string} field name we are processing
+ * @returns {string} for consumption by AreaData function
+ */
+export function mainNameLens( lens ) {
+  if( lens === 'Product' ) {
+    return 'products'
+  } else if ( lens === 'Company') {
+    return 'companies'
+  }
+  return 'values'
+}
+
 
 /**
  * processes the stuff for the area chart, combining them if necessary
@@ -148,15 +162,6 @@ function processAreaData( state, aggregations, buckets ) {
   const { subLens } = state
   const lens = state.focus ? subLens.replace( '_', '-' ) : state.lens
 
-  const mainNameLens = ( ) => {
-    if( lens === 'Product' ) {
-      return 'products'
-    } else if ( lens === 'Company') {
-      return 'companies'
-    }
-    return 'values'
-  }
-
   const mainName = 'All other ' + mainNameLens(lens)
   // overall buckets
   const compBuckets = buckets.map(

From 29bc558804e6d5cc6c8df79f30f7dd7f40912d00 Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Wed, 1 Jul 2020 10:52:00 -0400
Subject: [PATCH 16/34] continued progress on other bucket

---
 src/components/Charts/StackedAreaChart.jsx         |  1 -
 src/components/Trends/ExternalTooltip.jsx          |  7 ++++---
 .../__snapshots__/ExternalTooltip.spec.jsx.snap    | 14 --------------
 .../trendsAggsMissingBucketsResults.jsx            |  1 +
 src/reducers/trends.jsx                            |  8 +++++---
 src/utils/trends.jsx                               |  4 ++--
 6 files changed, 12 insertions(+), 23 deletions(-)

diff --git a/src/components/Charts/StackedAreaChart.jsx b/src/components/Charts/StackedAreaChart.jsx
index 8fff4a815..4c7de28ba 100644
--- a/src/components/Charts/StackedAreaChart.jsx
+++ b/src/components/Charts/StackedAreaChart.jsx
@@ -65,7 +65,6 @@ export class StackedAreaChart extends React.Component {
     d3.select( chartID + ' .stacked-area' ).remove()
     const stackedAreaChart = stackedArea()
     const colorScheme = [ ...new Set( data.map( item => item.name ) ) ]
-      .filter( o => o !== 'Other' )
       .map( o => colorMap[o] )
     colorScheme.push( colors.DataLens[10] )
 
diff --git a/src/components/Trends/ExternalTooltip.jsx b/src/components/Trends/ExternalTooltip.jsx
index eb22a02a5..3b89a2c51 100644
--- a/src/components/Trends/ExternalTooltip.jsx
+++ b/src/components/Trends/ExternalTooltip.jsx
@@ -17,8 +17,10 @@ export class ExternalTooltip extends React.Component {
           { value.name }
         </span>
       )
-    } else {
-      elements.push( <span className="u-left a-btn a-btn__link"
+      return elements
+    }
+
+    elements.push( <span className="u-left a-btn a-btn__link"
                            id={ 'focus-' + sanitizeHtmlId( value.name ) }
                            key={ value.name }
              onClick={ () => {
@@ -26,7 +28,6 @@ export class ExternalTooltip extends React.Component {
              } }>
         { value.name }
       </span> )
-    }
 
     // add in the close button for Company and there's no focus yet
     if ( this.props.showCompanyTypeahead ) {
diff --git a/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap b/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
index be0930fb6..329fddc90 100644
--- a/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
@@ -122,20 +122,6 @@ exports[`initial state renders Company typehead without crashing 1`] = `
         >
           All other
         </span>
-        <span
-          className="u-right a-btn a-btn__link close"
-          onClick={[Function]}
-        >
-          <svg
-            className="cf-icon-svg"
-            viewBox="0 0 718.9 1200"
-            xmlns="http://www.w3.org/2000/svg"
-          >
-            <path
-              d="M451.4 613.7l248.1-248.1c25.6-25.1 26-66.3.8-91.9s-66.3-26-91.9-.8l-.8.8-248.1 248.1-248.1-248.1c-25.4-25.4-66.5-25.4-91.9 0s-25.4 66.5 0 91.9l248.1 248.1L19.5 861.8c-25.6 25.1-26 66.3-.8 91.9s66.3 26 91.9.8l.8-.8 248.1-248.1 248.1 248.1c25.4 25.4 66.5 25.4 91.9 0s25.4-66.5 0-91.9L451.4 613.7z"
-            />
-          </svg>
-        </span>
         <span
           className="u-right"
         >
diff --git a/src/reducers/__fixtures__/trendsAggsMissingBucketsResults.jsx b/src/reducers/__fixtures__/trendsAggsMissingBucketsResults.jsx
index 8f8d4b25c..137faedf6 100644
--- a/src/reducers/__fixtures__/trendsAggsMissingBucketsResults.jsx
+++ b/src/reducers/__fixtures__/trendsAggsMissingBucketsResults.jsx
@@ -1 +1,2 @@
 export default { "activeCall": "", "chartType": "line", "colorMap": { "Credit reporting, credit repair services, or other personal consumer reports": "#2cb34a", "Debt collection": "#addc91", "Credit card or prepaid card": "#257675", "Mortgage": "#9ec4c3", "Checking or savings account": "#0072ce", "Complaints": "#ADDC91", "Other": "#a2a3a4" }, "error": false, "expandedTrends": [], "filterNames": [ "Credit reporting, credit repair services, or other personal consumer reports", "Debt collection", "Credit card or prepaid card", "Mortgage", "Checking or savings account", "Incorrect information on your report", "Problem with a credit reporting company's investigation into an existing problem", "Attempts to collect debt not owed", "Managing an account", "Improper use of your report", "Bank account or service", "Incorrect information on credit report" ], "focus": "", "isLoading": false, "lastDate": "2020-05-18T00:00:00.000Z", "lens": "Product", "results": { "dateRangeArea": [ { "name": "Other", "value": 67, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Other", "value": 72, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Other", "value": 82, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Other", "value": 36, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Other", "value": 20, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Other", "value": 76, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Other", "value": 64, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Other", "value": 67, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Other", "value": 79, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Other", "value": 92, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Other", "value": 46, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Other", "value": 21, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Other", "value": 71, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Other", "value": 66, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Other", "value": 68, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Other", "value": 77, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Other", "value": 79, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Other", "value": 41, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Other", "value": 37, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Other", "value": 72, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Other", "value": 79, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Other", "value": 87, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Other", "value": 83, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Other", "value": 97, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Other", "value": 55, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Other", "value": 44, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Other", "value": 114, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Other", "value": 97, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Other", "value": 113, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Other", "value": 77, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Other", "value": 70, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Other", "value": 32, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Other", "value": 24, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Other", "value": 42, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Other", "value": 50, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Other", "value": 41, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Other", "value": 33, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Other", "value": 28, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Other", "value": 12, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Other", "value": 8, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Other", "value": 22, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Other", "value": 26, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Other", "value": 10, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Other", "value": 9, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Other", "value": 8, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Other", "value": 6, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Other", "value": 3, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Other", "value": 1, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 737, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 738, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 710, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 494, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 350, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 753, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 712, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 717, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 706, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 791, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 402, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 344, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 737, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 768, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 692, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 693, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 792, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 526, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 482, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 764, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 785, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 882, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 926, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 992, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 583, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 457, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 862, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 894, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 892, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 998, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 888, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 516, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 402, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 637, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 697, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 442, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 386, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 326, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 239, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 153, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 403, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 420, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 390, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 363, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 305, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 177, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 119, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 5, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Debt collection", "value": 167, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Debt collection", "value": 196, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Debt collection", "value": 142, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Debt collection", "value": 82, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Debt collection", "value": 79, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Debt collection", "value": 147, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Debt collection", "value": 182, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Debt collection", "value": 212, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Debt collection", "value": 174, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Debt collection", "value": 171, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Debt collection", "value": 93, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Debt collection", "value": 74, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Debt collection", "value": 136, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Debt collection", "value": 160, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Debt collection", "value": 159, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Debt collection", "value": 198, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Debt collection", "value": 186, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Debt collection", "value": 117, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Debt collection", "value": 75, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Debt collection", "value": 147, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Debt collection", "value": 183, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Debt collection", "value": 186, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Debt collection", "value": 201, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Debt collection", "value": 192, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Debt collection", "value": 81, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Debt collection", "value": 71, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Debt collection", "value": 163, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Debt collection", "value": 202, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Debt collection", "value": 182, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Debt collection", "value": 150, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Debt collection", "value": 138, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Debt collection", "value": 97, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Debt collection", "value": 82, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Debt collection", "value": 134, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Debt collection", "value": 103, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Debt collection", "value": 98, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Debt collection", "value": 66, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Debt collection", "value": 65, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Debt collection", "value": 29, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Debt collection", "value": 17, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Debt collection", "value": 51, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Debt collection", "value": 67, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Debt collection", "value": 37, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Debt collection", "value": 27, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Debt collection", "value": 29, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Debt collection", "value": 11, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Debt collection", "value": 11, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Debt collection", "value": 6, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 115, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 83, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 118, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 54, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 30, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 104, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 133, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 110, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 99, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 117, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 47, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 46, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 122, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 140, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 133, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 137, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 107, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 66, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 43, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 112, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 132, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 153, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 161, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 124, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 66, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 67, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 131, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 119, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 140, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 128, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 113, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 61, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 41, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 78, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 100, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 60, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 37, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 46, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 17, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 12, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 31, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 32, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 23, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 22, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 11, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 15, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 9, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 4, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Mortgage", "value": 111, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Mortgage", "value": 89, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Mortgage", "value": 95, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Mortgage", "value": 34, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Mortgage", "value": 15, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Mortgage", "value": 88, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Mortgage", "value": 91, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Mortgage", "value": 91, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Mortgage", "value": 113, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Mortgage", "value": 64, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Mortgage", "value": 31, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Mortgage", "value": 16, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Mortgage", "value": 106, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Mortgage", "value": 90, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Mortgage", "value": 92, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Mortgage", "value": 88, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Mortgage", "value": 79, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Mortgage", "value": 30, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Mortgage", "value": 16, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Mortgage", "value": 81, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Mortgage", "value": 97, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Mortgage", "value": 86, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Mortgage", "value": 83, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Mortgage", "value": 82, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Mortgage", "value": 43, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Mortgage", "value": 23, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Mortgage", "value": 79, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Mortgage", "value": 90, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Mortgage", "value": 91, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Mortgage", "value": 85, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Mortgage", "value": 80, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Mortgage", "value": 25, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Mortgage", "value": 26, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Mortgage", "value": 50, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Mortgage", "value": 42, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Mortgage", "value": 28, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Mortgage", "value": 21, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Mortgage", "value": 27, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Mortgage", "value": 8, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Mortgage", "value": 0, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Mortgage", "value": 22, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Mortgage", "value": 12, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Mortgage", "value": 6, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Mortgage", "value": 8, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Mortgage", "value": 8, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Mortgage", "value": 0, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Mortgage", "value": 2, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Mortgage", "value": 0, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 79, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 68, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 71, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 32, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 15, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 74, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 86, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 75, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 76, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 89, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 33, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 15, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 77, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 69, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 76, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 94, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 68, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 23, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 16, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 75, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 86, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 92, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 74, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 74, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 46, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 35, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 106, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 104, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 116, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 86, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 77, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 20, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 16, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 62, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 47, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 36, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 30, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 22, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 7, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 3, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 20, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 18, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 13, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 5, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 2, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 2, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 2, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 1, "date": new Date("2020-05-18T00:00:00.000Z") } ], "dateRangeBrush": [ { "date": new Date("2020-04-01T00:00:00.000Z"), "value": 1276 }, { "date": new Date("2020-04-02T00:00:00.000Z"), "value": 1246 }, { "date": new Date("2020-04-03T00:00:00.000Z"), "value": 1218 }, { "date": new Date("2020-04-04T00:00:00.000Z"), "value": 732 }, { "date": new Date("2020-04-05T00:00:00.000Z"), "value": 509 }, { "date": new Date("2020-04-06T00:00:00.000Z"), "value": 1242 }, { "date": new Date("2020-04-07T00:00:00.000Z"), "value": 1268 }, { "date": new Date("2020-04-08T00:00:00.000Z"), "value": 1272 }, { "date": new Date("2020-04-09T00:00:00.000Z"), "value": 1247 }, { "date": new Date("2020-04-10T00:00:00.000Z"), "value": 1324 }, { "date": new Date("2020-04-11T00:00:00.000Z"), "value": 652 }, { "date": new Date("2020-04-12T00:00:00.000Z"), "value": 516 }, { "date": new Date("2020-04-13T00:00:00.000Z"), "value": 1249 }, { "date": new Date("2020-04-14T00:00:00.000Z"), "value": 1293 }, { "date": new Date("2020-04-15T00:00:00.000Z"), "value": 1220 }, { "date": new Date("2020-04-16T00:00:00.000Z"), "value": 1287 }, { "date": new Date("2020-04-17T00:00:00.000Z"), "value": 1311 }, { "date": new Date("2020-04-18T00:00:00.000Z"), "value": 803 }, { "date": new Date("2020-04-19T00:00:00.000Z"), "value": 669 }, { "date": new Date("2020-04-20T00:00:00.000Z"), "value": 1251 }, { "date": new Date("2020-04-21T00:00:00.000Z"), "value": 1362 }, { "date": new Date("2020-04-22T00:00:00.000Z"), "value": 1486 }, { "date": new Date("2020-04-23T00:00:00.000Z"), "value": 1528 }, { "date": new Date("2020-04-24T00:00:00.000Z"), "value": 1561 }, { "date": new Date("2020-04-25T00:00:00.000Z"), "value": 874 }, { "date": new Date("2020-04-26T00:00:00.000Z"), "value": 697 }, { "date": new Date("2020-04-27T00:00:00.000Z"), "value": 1455 }, { "date": new Date("2020-04-28T00:00:00.000Z"), "value": 1506 }, { "date": new Date("2020-04-29T00:00:00.000Z"), "value": 1534 }, { "date": new Date("2020-04-30T00:00:00.000Z"), "value": 1524 }, { "date": new Date("2020-05-01T00:00:00.000Z"), "value": 1366 }, { "date": new Date("2020-05-02T00:00:00.000Z"), "value": 751 }, { "date": new Date("2020-05-03T00:00:00.000Z"), "value": 591 }, { "date": new Date("2020-05-04T00:00:00.000Z"), "value": 1003 }, { "date": new Date("2020-05-05T00:00:00.000Z"), "value": 1039 }, { "date": new Date("2020-05-06T00:00:00.000Z"), "value": 705 }, { "date": new Date("2020-05-07T00:00:00.000Z"), "value": 573 }, { "date": new Date("2020-05-08T00:00:00.000Z"), "value": 514 }, { "date": new Date("2020-05-09T00:00:00.000Z"), "value": 312 }, { "date": new Date("2020-05-10T00:00:00.000Z"), "value": 193 }, { "date": new Date("2020-05-11T00:00:00.000Z"), "value": 549 }, { "date": new Date("2020-05-12T00:00:00.000Z"), "value": 575 }, { "date": new Date("2020-05-13T00:00:00.000Z"), "value": 479 }, { "date": new Date("2020-05-14T00:00:00.000Z"), "value": 434 }, { "date": new Date("2020-05-15T00:00:00.000Z"), "value": 363 }, { "date": new Date("2020-05-16T00:00:00.000Z"), "value": 211 }, { "date": new Date("2020-05-17T00:00:00.000Z"), "value": 146 }, { "date": new Date("2020-05-18T00:00:00.000Z"), "value": 17 } ], "dateRangeLine": { "dataByTopic": [ { "topic": "Credit reporting, credit repair services, or other personal consumer reports", "topicName": "Credit reporting, credit repair services, or other personal consumer reports", "dashed": false, "show": true, "dates": [ { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-01T00:00:00.000Z", "value": 737 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-02T00:00:00.000Z", "value": 738 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-03T00:00:00.000Z", "value": 710 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-04T00:00:00.000Z", "value": 494 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-05T00:00:00.000Z", "value": 350 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-06T00:00:00.000Z", "value": 753 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-07T00:00:00.000Z", "value": 712 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-08T00:00:00.000Z", "value": 717 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-09T00:00:00.000Z", "value": 706 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-10T00:00:00.000Z", "value": 791 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-11T00:00:00.000Z", "value": 402 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-12T00:00:00.000Z", "value": 344 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-13T00:00:00.000Z", "value": 737 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-14T00:00:00.000Z", "value": 768 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-15T00:00:00.000Z", "value": 692 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-16T00:00:00.000Z", "value": 693 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-17T00:00:00.000Z", "value": 792 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-18T00:00:00.000Z", "value": 526 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-19T00:00:00.000Z", "value": 482 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-20T00:00:00.000Z", "value": 764 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-21T00:00:00.000Z", "value": 785 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-22T00:00:00.000Z", "value": 882 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-23T00:00:00.000Z", "value": 926 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-24T00:00:00.000Z", "value": 992 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-25T00:00:00.000Z", "value": 583 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-26T00:00:00.000Z", "value": 457 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-27T00:00:00.000Z", "value": 862 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-28T00:00:00.000Z", "value": 894 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-29T00:00:00.000Z", "value": 892 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-30T00:00:00.000Z", "value": 998 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-01T00:00:00.000Z", "value": 888 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-02T00:00:00.000Z", "value": 516 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-03T00:00:00.000Z", "value": 402 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-04T00:00:00.000Z", "value": 637 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-05T00:00:00.000Z", "value": 697 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-06T00:00:00.000Z", "value": 442 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-07T00:00:00.000Z", "value": 386 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-08T00:00:00.000Z", "value": 326 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-09T00:00:00.000Z", "value": 239 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-10T00:00:00.000Z", "value": 153 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-11T00:00:00.000Z", "value": 403 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-12T00:00:00.000Z", "value": 420 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-13T00:00:00.000Z", "value": 390 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-14T00:00:00.000Z", "value": 363 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-15T00:00:00.000Z", "value": 305 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-16T00:00:00.000Z", "value": 177 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-17T00:00:00.000Z", "value": 119 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-18T00:00:00.000Z", "value": 5 } ] }, { "topic": "Debt collection", "topicName": "Debt collection", "dashed": false, "show": true, "dates": [ { "name": "Debt collection", "date": "2020-04-01T00:00:00.000Z", "value": 167 }, { "name": "Debt collection", "date": "2020-04-02T00:00:00.000Z", "value": 196 }, { "name": "Debt collection", "date": "2020-04-03T00:00:00.000Z", "value": 142 }, { "name": "Debt collection", "date": "2020-04-04T00:00:00.000Z", "value": 82 }, { "name": "Debt collection", "date": "2020-04-05T00:00:00.000Z", "value": 79 }, { "name": "Debt collection", "date": "2020-04-06T00:00:00.000Z", "value": 147 }, { "name": "Debt collection", "date": "2020-04-07T00:00:00.000Z", "value": 182 }, { "name": "Debt collection", "date": "2020-04-08T00:00:00.000Z", "value": 212 }, { "name": "Debt collection", "date": "2020-04-09T00:00:00.000Z", "value": 174 }, { "name": "Debt collection", "date": "2020-04-10T00:00:00.000Z", "value": 171 }, { "name": "Debt collection", "date": "2020-04-11T00:00:00.000Z", "value": 93 }, { "name": "Debt collection", "date": "2020-04-12T00:00:00.000Z", "value": 74 }, { "name": "Debt collection", "date": "2020-04-13T00:00:00.000Z", "value": 136 }, { "name": "Debt collection", "date": "2020-04-14T00:00:00.000Z", "value": 160 }, { "name": "Debt collection", "date": "2020-04-15T00:00:00.000Z", "value": 159 }, { "name": "Debt collection", "date": "2020-04-16T00:00:00.000Z", "value": 198 }, { "name": "Debt collection", "date": "2020-04-17T00:00:00.000Z", "value": 186 }, { "name": "Debt collection", "date": "2020-04-18T00:00:00.000Z", "value": 117 }, { "name": "Debt collection", "date": "2020-04-19T00:00:00.000Z", "value": 75 }, { "name": "Debt collection", "date": "2020-04-20T00:00:00.000Z", "value": 147 }, { "name": "Debt collection", "date": "2020-04-21T00:00:00.000Z", "value": 183 }, { "name": "Debt collection", "date": "2020-04-22T00:00:00.000Z", "value": 186 }, { "name": "Debt collection", "date": "2020-04-23T00:00:00.000Z", "value": 201 }, { "name": "Debt collection", "date": "2020-04-24T00:00:00.000Z", "value": 192 }, { "name": "Debt collection", "date": "2020-04-25T00:00:00.000Z", "value": 81 }, { "name": "Debt collection", "date": "2020-04-26T00:00:00.000Z", "value": 71 }, { "name": "Debt collection", "date": "2020-04-27T00:00:00.000Z", "value": 163 }, { "name": "Debt collection", "date": "2020-04-28T00:00:00.000Z", "value": 202 }, { "name": "Debt collection", "date": "2020-04-29T00:00:00.000Z", "value": 182 }, { "name": "Debt collection", "date": "2020-04-30T00:00:00.000Z", "value": 150 }, { "name": "Debt collection", "date": "2020-05-01T00:00:00.000Z", "value": 138 }, { "name": "Debt collection", "date": "2020-05-02T00:00:00.000Z", "value": 97 }, { "name": "Debt collection", "date": "2020-05-03T00:00:00.000Z", "value": 82 }, { "name": "Debt collection", "date": "2020-05-04T00:00:00.000Z", "value": 134 }, { "name": "Debt collection", "date": "2020-05-05T00:00:00.000Z", "value": 103 }, { "name": "Debt collection", "date": "2020-05-06T00:00:00.000Z", "value": 98 }, { "name": "Debt collection", "date": "2020-05-07T00:00:00.000Z", "value": 66 }, { "name": "Debt collection", "date": "2020-05-08T00:00:00.000Z", "value": 65 }, { "name": "Debt collection", "date": "2020-05-09T00:00:00.000Z", "value": 29 }, { "name": "Debt collection", "date": "2020-05-10T00:00:00.000Z", "value": 17 }, { "name": "Debt collection", "date": "2020-05-11T00:00:00.000Z", "value": 51 }, { "name": "Debt collection", "date": "2020-05-12T00:00:00.000Z", "value": 67 }, { "name": "Debt collection", "date": "2020-05-13T00:00:00.000Z", "value": 37 }, { "name": "Debt collection", "date": "2020-05-14T00:00:00.000Z", "value": 27 }, { "name": "Debt collection", "date": "2020-05-15T00:00:00.000Z", "value": 29 }, { "name": "Debt collection", "date": "2020-05-16T00:00:00.000Z", "value": 11 }, { "name": "Debt collection", "date": "2020-05-17T00:00:00.000Z", "value": 11 }, { "name": "Debt collection", "date": "2020-05-18T00:00:00.000Z", "value": 6 } ] }, { "topic": "Credit card or prepaid card", "topicName": "Credit card or prepaid card", "dashed": false, "show": true, "dates": [ { "name": "Credit card or prepaid card", "date": "2020-04-01T00:00:00.000Z", "value": 115 }, { "name": "Credit card or prepaid card", "date": "2020-04-02T00:00:00.000Z", "value": 83 }, { "name": "Credit card or prepaid card", "date": "2020-04-03T00:00:00.000Z", "value": 118 }, { "name": "Credit card or prepaid card", "date": "2020-04-04T00:00:00.000Z", "value": 54 }, { "name": "Credit card or prepaid card", "date": "2020-04-05T00:00:00.000Z", "value": 30 }, { "name": "Credit card or prepaid card", "date": "2020-04-06T00:00:00.000Z", "value": 104 }, { "name": "Credit card or prepaid card", "date": "2020-04-07T00:00:00.000Z", "value": 133 }, { "name": "Credit card or prepaid card", "date": "2020-04-08T00:00:00.000Z", "value": 110 }, { "name": "Credit card or prepaid card", "date": "2020-04-09T00:00:00.000Z", "value": 99 }, { "name": "Credit card or prepaid card", "date": "2020-04-10T00:00:00.000Z", "value": 117 }, { "name": "Credit card or prepaid card", "date": "2020-04-11T00:00:00.000Z", "value": 47 }, { "name": "Credit card or prepaid card", "date": "2020-04-12T00:00:00.000Z", "value": 46 }, { "name": "Credit card or prepaid card", "date": "2020-04-13T00:00:00.000Z", "value": 122 }, { "name": "Credit card or prepaid card", "date": "2020-04-14T00:00:00.000Z", "value": 140 }, { "name": "Credit card or prepaid card", "date": "2020-04-15T00:00:00.000Z", "value": 133 }, { "name": "Credit card or prepaid card", "date": "2020-04-16T00:00:00.000Z", "value": 137 }, { "name": "Credit card or prepaid card", "date": "2020-04-17T00:00:00.000Z", "value": 107 }, { "name": "Credit card or prepaid card", "date": "2020-04-18T00:00:00.000Z", "value": 66 }, { "name": "Credit card or prepaid card", "date": "2020-04-19T00:00:00.000Z", "value": 43 }, { "name": "Credit card or prepaid card", "date": "2020-04-20T00:00:00.000Z", "value": 112 }, { "name": "Credit card or prepaid card", "date": "2020-04-21T00:00:00.000Z", "value": 132 }, { "name": "Credit card or prepaid card", "date": "2020-04-22T00:00:00.000Z", "value": 153 }, { "name": "Credit card or prepaid card", "date": "2020-04-23T00:00:00.000Z", "value": 161 }, { "name": "Credit card or prepaid card", "date": "2020-04-24T00:00:00.000Z", "value": 124 }, { "name": "Credit card or prepaid card", "date": "2020-04-25T00:00:00.000Z", "value": 66 }, { "name": "Credit card or prepaid card", "date": "2020-04-26T00:00:00.000Z", "value": 67 }, { "name": "Credit card or prepaid card", "date": "2020-04-27T00:00:00.000Z", "value": 131 }, { "name": "Credit card or prepaid card", "date": "2020-04-28T00:00:00.000Z", "value": 119 }, { "name": "Credit card or prepaid card", "date": "2020-04-29T00:00:00.000Z", "value": 140 }, { "name": "Credit card or prepaid card", "date": "2020-04-30T00:00:00.000Z", "value": 128 }, { "name": "Credit card or prepaid card", "date": "2020-05-01T00:00:00.000Z", "value": 113 }, { "name": "Credit card or prepaid card", "date": "2020-05-02T00:00:00.000Z", "value": 61 }, { "name": "Credit card or prepaid card", "date": "2020-05-03T00:00:00.000Z", "value": 41 }, { "name": "Credit card or prepaid card", "date": "2020-05-04T00:00:00.000Z", "value": 78 }, { "name": "Credit card or prepaid card", "date": "2020-05-05T00:00:00.000Z", "value": 100 }, { "name": "Credit card or prepaid card", "date": "2020-05-06T00:00:00.000Z", "value": 60 }, { "name": "Credit card or prepaid card", "date": "2020-05-07T00:00:00.000Z", "value": 37 }, { "name": "Credit card or prepaid card", "date": "2020-05-08T00:00:00.000Z", "value": 46 }, { "name": "Credit card or prepaid card", "date": "2020-05-09T00:00:00.000Z", "value": 17 }, { "name": "Credit card or prepaid card", "date": "2020-05-10T00:00:00.000Z", "value": 12 }, { "name": "Credit card or prepaid card", "date": "2020-05-11T00:00:00.000Z", "value": 31 }, { "name": "Credit card or prepaid card", "date": "2020-05-12T00:00:00.000Z", "value": 32 }, { "name": "Credit card or prepaid card", "date": "2020-05-13T00:00:00.000Z", "value": 23 }, { "name": "Credit card or prepaid card", "date": "2020-05-14T00:00:00.000Z", "value": 22 }, { "name": "Credit card or prepaid card", "date": "2020-05-15T00:00:00.000Z", "value": 11 }, { "name": "Credit card or prepaid card", "date": "2020-05-16T00:00:00.000Z", "value": 15 }, { "name": "Credit card or prepaid card", "date": "2020-05-17T00:00:00.000Z", "value": 9 }, { "name": "Credit card or prepaid card", "date": "2020-05-18T00:00:00.000Z", "value": 4 } ] }, { "topic": "Mortgage", "topicName": "Mortgage", "dashed": false, "show": true, "dates": [ { "name": "Mortgage", "date": "2020-04-01T00:00:00.000Z", "value": 111 }, { "name": "Mortgage", "date": "2020-04-02T00:00:00.000Z", "value": 89 }, { "name": "Mortgage", "date": "2020-04-03T00:00:00.000Z", "value": 95 }, { "name": "Mortgage", "date": "2020-04-04T00:00:00.000Z", "value": 34 }, { "name": "Mortgage", "date": "2020-04-05T00:00:00.000Z", "value": 15 }, { "name": "Mortgage", "date": "2020-04-06T00:00:00.000Z", "value": 88 }, { "name": "Mortgage", "date": "2020-04-07T00:00:00.000Z", "value": 91 }, { "name": "Mortgage", "date": "2020-04-08T00:00:00.000Z", "value": 91 }, { "name": "Mortgage", "date": "2020-04-09T00:00:00.000Z", "value": 113 }, { "name": "Mortgage", "date": "2020-04-10T00:00:00.000Z", "value": 64 }, { "name": "Mortgage", "date": "2020-04-11T00:00:00.000Z", "value": 31 }, { "name": "Mortgage", "date": "2020-04-12T00:00:00.000Z", "value": 16 }, { "name": "Mortgage", "date": "2020-04-13T00:00:00.000Z", "value": 106 }, { "name": "Mortgage", "date": "2020-04-14T00:00:00.000Z", "value": 90 }, { "name": "Mortgage", "date": "2020-04-15T00:00:00.000Z", "value": 92 }, { "name": "Mortgage", "date": "2020-04-16T00:00:00.000Z", "value": 88 }, { "name": "Mortgage", "date": "2020-04-17T00:00:00.000Z", "value": 79 }, { "name": "Mortgage", "date": "2020-04-18T00:00:00.000Z", "value": 30 }, { "name": "Mortgage", "date": "2020-04-19T00:00:00.000Z", "value": 16 }, { "name": "Mortgage", "date": "2020-04-20T00:00:00.000Z", "value": 81 }, { "name": "Mortgage", "date": "2020-04-21T00:00:00.000Z", "value": 97 }, { "name": "Mortgage", "date": "2020-04-22T00:00:00.000Z", "value": 86 }, { "name": "Mortgage", "date": "2020-04-23T00:00:00.000Z", "value": 83 }, { "name": "Mortgage", "date": "2020-04-24T00:00:00.000Z", "value": 82 }, { "name": "Mortgage", "date": "2020-04-25T00:00:00.000Z", "value": 43 }, { "name": "Mortgage", "date": "2020-04-26T00:00:00.000Z", "value": 23 }, { "name": "Mortgage", "date": "2020-04-27T00:00:00.000Z", "value": 79 }, { "name": "Mortgage", "date": "2020-04-28T00:00:00.000Z", "value": 90 }, { "name": "Mortgage", "date": "2020-04-29T00:00:00.000Z", "value": 91 }, { "name": "Mortgage", "date": "2020-04-30T00:00:00.000Z", "value": 85 }, { "name": "Mortgage", "date": "2020-05-01T00:00:00.000Z", "value": 80 }, { "name": "Mortgage", "date": "2020-05-02T00:00:00.000Z", "value": 25 }, { "name": "Mortgage", "date": "2020-05-03T00:00:00.000Z", "value": 26 }, { "name": "Mortgage", "date": "2020-05-04T00:00:00.000Z", "value": 50 }, { "name": "Mortgage", "date": "2020-05-05T00:00:00.000Z", "value": 42 }, { "name": "Mortgage", "date": "2020-05-06T00:00:00.000Z", "value": 28 }, { "name": "Mortgage", "date": "2020-05-07T00:00:00.000Z", "value": 21 }, { "name": "Mortgage", "date": "2020-05-08T00:00:00.000Z", "value": 27 }, { "name": "Mortgage", "date": "2020-05-09T00:00:00.000Z", "value": 8 }, { "name": "Mortgage", "date": "2020-05-10T00:00:00.000Z", "value": 0 }, { "name": "Mortgage", "date": "2020-05-11T00:00:00.000Z", "value": 22 }, { "name": "Mortgage", "date": "2020-05-12T00:00:00.000Z", "value": 12 }, { "name": "Mortgage", "date": "2020-05-13T00:00:00.000Z", "value": 6 }, { "name": "Mortgage", "date": "2020-05-14T00:00:00.000Z", "value": 8 }, { "name": "Mortgage", "date": "2020-05-15T00:00:00.000Z", "value": 8 }, { "name": "Mortgage", "date": "2020-05-16T00:00:00.000Z", "value": 0 }, { "name": "Mortgage", "date": "2020-05-17T00:00:00.000Z", "value": 2 }, { "name": "Mortgage", "date": "2020-05-18T00:00:00.000Z", "value": 0 } ] }, { "topic": "Checking or savings account", "topicName": "Checking or savings account", "dashed": false, "show": true, "dates": [ { "name": "Checking or savings account", "date": "2020-04-01T00:00:00.000Z", "value": 79 }, { "name": "Checking or savings account", "date": "2020-04-02T00:00:00.000Z", "value": 68 }, { "name": "Checking or savings account", "date": "2020-04-03T00:00:00.000Z", "value": 71 }, { "name": "Checking or savings account", "date": "2020-04-04T00:00:00.000Z", "value": 32 }, { "name": "Checking or savings account", "date": "2020-04-05T00:00:00.000Z", "value": 15 }, { "name": "Checking or savings account", "date": "2020-04-06T00:00:00.000Z", "value": 74 }, { "name": "Checking or savings account", "date": "2020-04-07T00:00:00.000Z", "value": 86 }, { "name": "Checking or savings account", "date": "2020-04-08T00:00:00.000Z", "value": 75 }, { "name": "Checking or savings account", "date": "2020-04-09T00:00:00.000Z", "value": 76 }, { "name": "Checking or savings account", "date": "2020-04-10T00:00:00.000Z", "value": 89 }, { "name": "Checking or savings account", "date": "2020-04-11T00:00:00.000Z", "value": 33 }, { "name": "Checking or savings account", "date": "2020-04-12T00:00:00.000Z", "value": 15 }, { "name": "Checking or savings account", "date": "2020-04-13T00:00:00.000Z", "value": 77 }, { "name": "Checking or savings account", "date": "2020-04-14T00:00:00.000Z", "value": 69 }, { "name": "Checking or savings account", "date": "2020-04-15T00:00:00.000Z", "value": 76 }, { "name": "Checking or savings account", "date": "2020-04-16T00:00:00.000Z", "value": 94 }, { "name": "Checking or savings account", "date": "2020-04-17T00:00:00.000Z", "value": 68 }, { "name": "Checking or savings account", "date": "2020-04-18T00:00:00.000Z", "value": 23 }, { "name": "Checking or savings account", "date": "2020-04-19T00:00:00.000Z", "value": 16 }, { "name": "Checking or savings account", "date": "2020-04-20T00:00:00.000Z", "value": 75 }, { "name": "Checking or savings account", "date": "2020-04-21T00:00:00.000Z", "value": 86 }, { "name": "Checking or savings account", "date": "2020-04-22T00:00:00.000Z", "value": 92 }, { "name": "Checking or savings account", "date": "2020-04-23T00:00:00.000Z", "value": 74 }, { "name": "Checking or savings account", "date": "2020-04-24T00:00:00.000Z", "value": 74 }, { "name": "Checking or savings account", "date": "2020-04-25T00:00:00.000Z", "value": 46 }, { "name": "Checking or savings account", "date": "2020-04-26T00:00:00.000Z", "value": 35 }, { "name": "Checking or savings account", "date": "2020-04-27T00:00:00.000Z", "value": 106 }, { "name": "Checking or savings account", "date": "2020-04-28T00:00:00.000Z", "value": 104 }, { "name": "Checking or savings account", "date": "2020-04-29T00:00:00.000Z", "value": 116 }, { "name": "Checking or savings account", "date": "2020-04-30T00:00:00.000Z", "value": 86 }, { "name": "Checking or savings account", "date": "2020-05-01T00:00:00.000Z", "value": 77 }, { "name": "Checking or savings account", "date": "2020-05-02T00:00:00.000Z", "value": 20 }, { "name": "Checking or savings account", "date": "2020-05-03T00:00:00.000Z", "value": 16 }, { "name": "Checking or savings account", "date": "2020-05-04T00:00:00.000Z", "value": 62 }, { "name": "Checking or savings account", "date": "2020-05-05T00:00:00.000Z", "value": 47 }, { "name": "Checking or savings account", "date": "2020-05-06T00:00:00.000Z", "value": 36 }, { "name": "Checking or savings account", "date": "2020-05-07T00:00:00.000Z", "value": 30 }, { "name": "Checking or savings account", "date": "2020-05-08T00:00:00.000Z", "value": 22 }, { "name": "Checking or savings account", "date": "2020-05-09T00:00:00.000Z", "value": 7 }, { "name": "Checking or savings account", "date": "2020-05-10T00:00:00.000Z", "value": 3 }, { "name": "Checking or savings account", "date": "2020-05-11T00:00:00.000Z", "value": 20 }, { "name": "Checking or savings account", "date": "2020-05-12T00:00:00.000Z", "value": 18 }, { "name": "Checking or savings account", "date": "2020-05-13T00:00:00.000Z", "value": 13 }, { "name": "Checking or savings account", "date": "2020-05-14T00:00:00.000Z", "value": 5 }, { "name": "Checking or savings account", "date": "2020-05-15T00:00:00.000Z", "value": 2 }, { "name": "Checking or savings account", "date": "2020-05-16T00:00:00.000Z", "value": 2 }, { "name": "Checking or savings account", "date": "2020-05-17T00:00:00.000Z", "value": 2 }, { "name": "Checking or savings account", "date": "2020-05-18T00:00:00.000Z", "value": 1 } ] } ] }, "issue": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Incorrect information on your report", "value": 247706, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information belongs to someone else", "value": 135795, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account status incorrect", "value": 39240, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account information incorrect", "value": 35733, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Personal information incorrect", "value": 11632, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Public record information inaccurate", "value": 9279, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Old information reappears or never goes away", "value": 9275, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information is missing that should be on the report", "value": 4492, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information is incorrect", "value": 684, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information that should be on the report is missing", "value": 115, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Incorrect information on your report ", "value": 1, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Incorrect information on credit report", "value": 102686, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account status", "value": 37057, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information is not mine", "value": 32384, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account terms", "value": 10995, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Public record", "value": 8876, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Personal information", "value": 7529, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Reinserted previously deleted info", "value": 5845, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Loan modification,collection,foreclosure", "value": 101564, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 87778, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Their investigation did not fix an error on your report", "value": 63190, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Investigation took more than 30 days", "value": 7222, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Was not notified of investigation status or results", "value": 6586, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Difficulty submitting a dispute or getting information about a dispute over the phone", "value": 5998, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem with personal statement of dispute", "value": 4377, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Loan servicing, payments, escrow account", "value": 72149, "parent": false, "visible": true, "width": 0.5 } ], "product": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 28047, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit reporting", "value": 27822, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other personal consumer report", "value": 179, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit repair services", "value": 46, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Credit reporting, credit repair services, or other personal consumer reports", "name": "More Information about Credit reporting, credit repair services, or other personal consumer reports", "splitterText": "More Information about Credit reporting, credit repair services, or other personal consumer reports", "value": "", "parent": "Credit reporting, credit repair services, or other personal consumer reports", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Debt collection", "value": 5576, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "I do not know", "value": 1435, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other debt", "value": 1435, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit card debt", "value": 1332, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Medical debt", "value": 858, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Auto debt", "value": 175, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Debt collection", "name": "More Information about Debt collection", "splitterText": "More Information about Debt collection", "value": "", "parent": "Debt collection", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Credit card or prepaid card", "value": 3849, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "General-purpose credit card or charge card", "value": 2759, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Store credit card", "value": 463, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Government benefit card", "value": 360, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "General-purpose prepaid card", "value": 236, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Payroll card", "value": 24, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Credit card or prepaid card", "name": "More Information about Credit card or prepaid card", "splitterText": "More Information about Credit card or prepaid card", "value": "", "parent": "Credit card or prepaid card", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Mortgage", "value": 2544, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Conventional home mortgage", "value": 1607, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "FHA mortgage", "value": 437, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "VA mortgage", "value": 199, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Home equity loan or line of credit (HELOC)", "value": 141, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other type of mortgage", "value": 138, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Mortgage", "name": "More Information about Mortgage", "splitterText": "More Information about Mortgage", "value": "", "parent": "Mortgage", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Checking or savings account", "value": 2413, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Checking account", "value": 1906, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other banking product or service", "value": 279, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Savings account", "value": 167, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "CD (Certificate of Deposit)", "value": 61, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Checking or savings account", "name": "More Information about Checking or savings account", "splitterText": "More Information about Checking or savings account", "value": "", "parent": "Checking or savings account", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false } ], "collections": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Servicemember", "value": 5172, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American", "value": 2352, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American, Servicemember", "value": 640, "parent": false, "visible": true, "width": 0.5 } ], "tags": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Servicemember", "value": 109650, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American", "value": 85620, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American, Servicemember", "value": 17831, "parent": false, "visible": true, "width": 0.5 } ] }, "subLens": "", "tooltip": false, "total": 44933 }
+
diff --git a/src/reducers/trends.jsx b/src/reducers/trends.jsx
index 286082838..959387b85 100644
--- a/src/reducers/trends.jsx
+++ b/src/reducers/trends.jsx
@@ -137,7 +137,7 @@ function getD3Names( obj, nameMap, expandedTrends ) {
 
 /**
  * helper function to pluralize field values
- * @param {string} field name we are processing
+ * @param {lens} lens value we are processing
  * @returns {string} for consumption by AreaData function
  */
 export function mainNameLens( lens ) {
@@ -196,7 +196,9 @@ function processAreaData( state, aggregations, buckets ) {
         .findIndex( k => k.name === mainName &&
           isDateEqual( k.date, p.key_as_string ) )
 
+        // POSSIBLE TODO
       /* istanbul ignore else */
+      console.log('POS: ', pos);
       if ( pos > -1 ) {
         // subtract the value from total, so we calculate the "Other" bin
         compBuckets[pos].value -= p.doc_count
@@ -308,7 +310,7 @@ export const getColorScheme = ( lens, rowNames ) => {
   const colScheme = {}
   const colorScheme = colors.DataLens
   const uniqueNames = [ ...new Set( rowNames.map( item => item.name ) ) ]
-    .filter( o => o !== 'Other' )
+    .filter( o => o !== 'All other products' )
 
   for ( let i = 0; i < uniqueNames.length; i++ ) {
     const n = uniqueNames[i]
@@ -317,7 +319,7 @@ export const getColorScheme = ( lens, rowNames ) => {
   }
 
   colScheme.Complaints = colors.BriteCharts.medium
-  colScheme.Other = colors.DataLens[10]
+  colScheme['All other products'] = colors.DataLens[10]
   return colScheme
 }
 
diff --git a/src/utils/trends.jsx b/src/utils/trends.jsx
index ab26d33de..336318d9b 100644
--- a/src/utils/trends.jsx
+++ b/src/utils/trends.jsx
@@ -35,9 +35,9 @@ export const getSubLens = lens => {
  */
 export const pruneOther = buckets => {
   const sumOther = buckets
-    .filter( o => o.name === 'Other' )
+    .filter( o => o.name.indexOf( 'Other' ) >= 0 )
     .reduce( ( prev, cur ) => prev + cur.value, 0 )
-  return sumOther > 0 ? buckets : buckets.filter( o => o.name !== 'Other' )
+  return sumOther > 0 ? buckets : buckets.filter( o => o.name.indexOf( 'Other' ) === -1 )
 }
 
 export const isGreaterThanYear = ( from, to ) => {

From b923345974156e12272ae64c9892b6743998929d Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Wed, 1 Jul 2020 16:10:10 -0400
Subject: [PATCH 17/34] color scheme fixes, linting

---
 src/components/Charts/LineChart.jsx        |  1 -
 src/components/Charts/StackedAreaChart.jsx |  6 ++++--
 src/components/Trends/ExternalTooltip.jsx  |  2 +-
 src/components/Trends/TrendsPanel.jsx      | 10 ++++++----
 src/reducers/trends.jsx                    | 15 +++++++++------
 src/utils/trends.jsx                       |  5 +++--
 6 files changed, 23 insertions(+), 16 deletions(-)

diff --git a/src/components/Charts/LineChart.jsx b/src/components/Charts/LineChart.jsx
index 84bb3c0df..96b35d8eb 100644
--- a/src/components/Charts/LineChart.jsx
+++ b/src/components/Charts/LineChart.jsx
@@ -7,7 +7,6 @@ import { line, tooltip } from 'britecharts'
 import { connect } from 'react-redux'
 import { hashObject } from '../../utils'
 import { isDateEqual } from '../../utils/formatDate'
-import PropTypes from 'prop-types'
 import React from 'react'
 import { updateTrendsTooltip } from '../../actions/trends'
 
diff --git a/src/components/Charts/StackedAreaChart.jsx b/src/components/Charts/StackedAreaChart.jsx
index 4c7de28ba..7bb2c965d 100644
--- a/src/components/Charts/StackedAreaChart.jsx
+++ b/src/components/Charts/StackedAreaChart.jsx
@@ -5,7 +5,6 @@ import { connect } from 'react-redux'
 import { getLastDate } from '../../utils/chart'
 import { hashObject } from '../../utils'
 import { isDateEqual } from '../../utils/formatDate'
-import PropTypes from 'prop-types'
 import React from 'react'
 import { stackedArea } from 'britecharts'
 import { updateTrendsTooltip } from '../../actions/trends'
@@ -64,7 +63,10 @@ export class StackedAreaChart extends React.Component {
     const width = this._chartWidth( chartID )
     d3.select( chartID + ' .stacked-area' ).remove()
     const stackedAreaChart = stackedArea()
-    const colorScheme = [ ...new Set( data.map( item => item.name ) ) ]
+    const colorData = data.filter(
+      item => item.name.indexOf( 'All other' ) === -1
+    )
+    const colorScheme = [ ...new Set( colorData.map( item => item.name ) ) ]
       .map( o => colorMap[o] )
     colorScheme.push( colors.DataLens[10] )
 
diff --git a/src/components/Trends/ExternalTooltip.jsx b/src/components/Trends/ExternalTooltip.jsx
index 3b89a2c51..c132116ae 100644
--- a/src/components/Trends/ExternalTooltip.jsx
+++ b/src/components/Trends/ExternalTooltip.jsx
@@ -11,7 +11,7 @@ export class ExternalTooltip extends React.Component {
   _spanFormatter( value ) {
     const elements = []
     // Other should never be a selectable focus item
-    if ( this.props.focus || value.name.indexOf('All other') >= 0 ) {
+    if ( this.props.focus || value.name.indexOf( 'All other' ) >= 0 ) {
       elements.push(
         <span className="u-left" key={ value.name }>
           { value.name }
diff --git a/src/components/Trends/TrendsPanel.jsx b/src/components/Trends/TrendsPanel.jsx
index 2120fc555..86d732d84 100644
--- a/src/components/Trends/TrendsPanel.jsx
+++ b/src/components/Trends/TrendsPanel.jsx
@@ -39,9 +39,9 @@ const subLensMap = {
 }
 
 const lensHelperTextMap = {
-  'company': 'Product the consumer identified in the complaint. Click on' +
+  company: 'Product the consumer identified in the complaint. Click on' +
   ' a company name to expand products.',
-  'product': 'Product and sub-product the consumer identified in the ' +
+  product: 'Product and sub-product the consumer identified in the ' +
   ' complaint. Click on a product to expand sub-products.'
 }
 
@@ -152,9 +152,11 @@ export class TrendsPanel extends React.Component {
           <div className="layout-row">
             <section className="chart">
               <h2>{this._areaChartTitle()}</h2>
-              <p className="chart-helper-text">A time series graph of complaint counts for the selected date range.
+              <p className="chart-helper-text">A time series graph of
+               complaint counts for the selected date range.
                 Hover on the chart to see the count for each date interval.
-                  Your filter selections will update what you see on the graph.</p>
+                  Your filter selections will update what you see on the
+                   graph.</p>
             </section>
           </div>
         }
diff --git a/src/reducers/trends.jsx b/src/reducers/trends.jsx
index 959387b85..071552806 100644
--- a/src/reducers/trends.jsx
+++ b/src/reducers/trends.jsx
@@ -141,9 +141,9 @@ function getD3Names( obj, nameMap, expandedTrends ) {
  * @returns {string} for consumption by AreaData function
  */
 export function mainNameLens( lens ) {
-  if( lens === 'Product' ) {
+  if ( lens === 'Product' ) {
     return 'products'
-  } else if ( lens === 'Company') {
+  } else if ( lens === 'Company' ) {
     return 'companies'
   }
   return 'values'
@@ -162,7 +162,7 @@ function processAreaData( state, aggregations, buckets ) {
   const { subLens } = state
   const lens = state.focus ? subLens.replace( '_', '-' ) : state.lens
 
-  const mainName = 'All other ' + mainNameLens(lens)
+  const mainName = 'All other ' + mainNameLens( lens )
   // overall buckets
   const compBuckets = buckets.map(
     obj => ( {
@@ -196,9 +196,7 @@ function processAreaData( state, aggregations, buckets ) {
         .findIndex( k => k.name === mainName &&
           isDateEqual( k.date, p.key_as_string ) )
 
-        // POSSIBLE TODO
       /* istanbul ignore else */
-      console.log('POS: ', pos);
       if ( pos > -1 ) {
         // subtract the value from total, so we calculate the "Other" bin
         compBuckets[pos].value -= p.doc_count
@@ -310,7 +308,7 @@ export const getColorScheme = ( lens, rowNames ) => {
   const colScheme = {}
   const colorScheme = colors.DataLens
   const uniqueNames = [ ...new Set( rowNames.map( item => item.name ) ) ]
-    .filter( o => o !== 'All other products' )
+
 
   for ( let i = 0; i < uniqueNames.length; i++ ) {
     const n = uniqueNames[i]
@@ -319,7 +317,12 @@ export const getColorScheme = ( lens, rowNames ) => {
   }
 
   colScheme.Complaints = colors.BriteCharts.medium
+
+  // Set constant grey colors for our "other" buckets"
+  // TODO: Set these as constants / consolidate colors across charts
   colScheme['All other products'] = colors.DataLens[10]
+  colScheme['All other companies'] = colors.DataLens[10]
+  colScheme['All other values'] = colors.DataLens[10]
   return colScheme
 }
 
diff --git a/src/utils/trends.jsx b/src/utils/trends.jsx
index 336318d9b..e37b3ff87 100644
--- a/src/utils/trends.jsx
+++ b/src/utils/trends.jsx
@@ -35,9 +35,10 @@ export const getSubLens = lens => {
  */
 export const pruneOther = buckets => {
   const sumOther = buckets
-    .filter( o => o.name.indexOf( 'Other' ) >= 0 )
+    .filter( o => o.name.indexOf( 'All other' ) >= 0 )
     .reduce( ( prev, cur ) => prev + cur.value, 0 )
-  return sumOther > 0 ? buckets : buckets.filter( o => o.name.indexOf( 'Other' ) === -1 )
+  return sumOther > 0 ? buckets :
+   buckets.filter( o => o.name.indexOf( 'All other' ) === -1 )
 }
 
 export const isGreaterThanYear = ( from, to ) => {

From 75f67899ed805be71ee9c121ebf12722fc3d5b7c Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Wed, 1 Jul 2020 16:22:00 -0400
Subject: [PATCH 18/34] sub-lens tab language

---
 src/components/Trends/TrendsPanel.jsx | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/components/Trends/TrendsPanel.jsx b/src/components/Trends/TrendsPanel.jsx
index 86d732d84..03faf6054 100644
--- a/src/components/Trends/TrendsPanel.jsx
+++ b/src/components/Trends/TrendsPanel.jsx
@@ -39,10 +39,14 @@ const subLensMap = {
 }
 
 const lensHelperTextMap = {
-  company: 'Product the consumer identified in the complaint. Click on' +
+  'products': 'Product the consumer identified in the complaint.' +
+  ' Click on a company name to expand products.',
+  'companies': 'Product the consumer identified in the complaint. Click on' +
   ' a company name to expand products.',
-  product: 'Product and sub-product the consumer identified in the ' +
-  ' complaint. Click on a product to expand sub-products.'
+  'sub-products': 'Product and sub-product the consumer identified in the ' +
+  ' complaint. Click on a product to expand sub-products.',
+  'issues': 'Product and issue the consumer identified in the complaint.' +
+  ' Click on a product to expand issue.'
 }
 
 export class TrendsPanel extends React.Component {
@@ -214,7 +218,7 @@ const mapStateToProps = state => {
     showMobileFilters: state.view.width < 750,
     subLens,
     subLensTitle: subLensMap[subLens] + ' by ' + lens.toLowerCase(),
-    subLensHelperText: lensHelperTextMap[lens.toLowerCase()],
+    subLensHelperText: lensHelperTextMap[subLensMap[subLens].toLowerCase()],
     total,
     trendsDateWarningEnabled
   }

From c6841652cfbe4e504cd2f6c0e2c800175f2bf6db Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Thu, 2 Jul 2020 15:08:44 -0400
Subject: [PATCH 19/34] language for each specific row chart

---
 src/components/Trends/TrendsPanel.jsx  | 54 ++++++++++++++++++--------
 src/reducers/__tests__/trends.spec.jsx |  1 -
 2 files changed, 38 insertions(+), 17 deletions(-)

diff --git a/src/components/Trends/TrendsPanel.jsx b/src/components/Trends/TrendsPanel.jsx
index 03faf6054..72620091a 100644
--- a/src/components/Trends/TrendsPanel.jsx
+++ b/src/components/Trends/TrendsPanel.jsx
@@ -17,6 +17,7 @@ import FocusHeader from './FocusHeader'
 import LensTabs from './LensTabs'
 import LineChart from '../Charts/LineChart'
 import Loading from '../Dialogs/Loading'
+import moment from 'moment'
 import { processRows } from '../../utils/chart'
 import React from 'react'
 import RowChart from '../Charts/RowChart'
@@ -39,25 +40,33 @@ const subLensMap = {
 }
 
 const lensHelperTextMap = {
-  'products': 'Product the consumer identified in the complaint.' +
+  'product': 'Product the consumer identified in the complaint.' +
   ' Click on a company name to expand products.',
-  'companies': 'Product the consumer identified in the complaint. Click on' +
+  'company': 'Product the consumer identified in the complaint. Click on' +
   ' a company name to expand products.',
-  'sub-products': 'Product and sub-product the consumer identified in the ' +
+  'sub_product': 'Product and sub-product the consumer identified in the ' +
   ' complaint. Click on a product to expand sub-products.',
-  'issues': 'Product and issue the consumer identified in the complaint.' +
-  ' Click on a product to expand issue.'
+  'issue': 'Product and issue the consumer identified in the complaint.' +
+  ' Click on a product to expand issue.',
+  'overview': 'Product the consumer identified in the complaint. Click on a ' +
+  ' product to expand sub-products'
+}
+
+const focusHelperTextMap = {
+  sub_product: 'Sub-products the consumer identified in the complaint',
+  product: 'Product the consumer identified in the complaint',
+  issue: 'Issues the consumer identified in the complaint'
 }
 
 export class TrendsPanel extends React.Component {
   _areaChartTitle() {
     const { focus, overview, lens, subLens } = this.props
     if ( overview ) {
-      return 'Complaints by date CFPB received'
+      return 'Complaints by date received by the CFPB'
     } else if ( focus ) {
-      return subLensMap[subLens] + ' complaints by date CFPB received'
+      return subLensMap[subLens] + ' complaints by date received by the CFPB'
     }
-    return `${ lens } complaints by date CFPB received`
+    return `${ lens } complaints by date received by the CFPB`
   }
 
   _className() {
@@ -69,6 +78,9 @@ export class TrendsPanel extends React.Component {
   }
 
   _phaseMap() {
+    const minDate = moment(this.props.date_received_min).format('MM/DD/YYYY')
+    const maxDate = moment(this.props.date_received_max).format('MM/DD/YYYY')
+
     if ( this.props.companyOverlay ) {
       return null
     }
@@ -77,7 +89,9 @@ export class TrendsPanel extends React.Component {
       return <RowChart id="product"
                        colorScheme={ this.props.productData.colorScheme }
                        data={ this.props.productData.data }
-                       title={ 'Product by highest complaint volume' }
+                       title={ 'Product by highest complaint volume '
+                        + minDate + ' to ' + maxDate}
+                       helperText={ this.props.lensHelperText }
                        total={ this.props.total }/>
     }
 
@@ -85,8 +99,9 @@ export class TrendsPanel extends React.Component {
       return <RowChart id={ this.props.lens }
                        colorScheme={ this.props.focusData.colorScheme }
                        data={ this.props.focusData.data }
-                       title={ this.props.subLensTitle }
-                       helperText={ this.props.subLensHelperText }
+                       title={ this.props.subLensTitle + ' '
+                        + minDate + ' to ' + maxDate }
+                       helperText={ this.props.focusHelperText }
                        total={ this.props.total }/>
     }
 
@@ -95,8 +110,9 @@ export class TrendsPanel extends React.Component {
       <RowChart id={ this.props.lens }
                 colorScheme={ this.props.dataLensData.colorScheme }
                 data={ this.props.dataLensData.data }
-                title={ this.props.subLensTitle }
-                helperText={ this.props.subLensHelperText}
+                title={ this.props.subLensTitle + ' '
+                        + minDate + ' to ' + maxDate }
+                helperText={ this.props.lensHelperText}
                 total={ this.props.total }
                 key={ this.props.lens + 'row' }/>
     ]
@@ -202,6 +218,9 @@ const mapStateToProps = state => {
 
   const lensKey = lens.toLowerCase()
   const focusKey = subLens.replace( '_', '-' )
+  const lensHelperText = (subLens === '') ? lensHelperTextMap[lensKey] : lensHelperTextMap[subLens]
+  const focusHelperText = (subLens === '') ? focusHelperTextMap[lensKey] : focusHelperTextMap[subLens]
+
   return {
     chartType,
     companyData: processRows( results.company, false, lens ),
@@ -217,10 +236,13 @@ const mapStateToProps = state => {
     overview: lens === 'Overview',
     showMobileFilters: state.view.width < 750,
     subLens,
-    subLensTitle: subLensMap[subLens] + ' by ' + lens.toLowerCase(),
-    subLensHelperText: lensHelperTextMap[subLensMap[subLens].toLowerCase()],
+    subLensTitle: subLensMap[subLens] + ', by ' + lens.toLowerCase() + ' from',
+    lensHelperText: lensHelperText,
+    focusHelperText: focusHelperText,
     total,
-    trendsDateWarningEnabled
+    trendsDateWarningEnabled,
+    date_received_max,
+    date_received_min
   }
 }
 
diff --git a/src/reducers/__tests__/trends.spec.jsx b/src/reducers/__tests__/trends.spec.jsx
index a5f6c69de..af2d7e0e6 100644
--- a/src/reducers/__tests__/trends.spec.jsx
+++ b/src/reducers/__tests__/trends.spec.jsx
@@ -49,7 +49,6 @@ describe( 'reducer:trends', () => {
 
   describe( 'Lens Name Pluralization Helper', () => {
     it( 'pluralizes things properly', () => {
-      console.log('MAIN NAME LENS TEST');
       expect( mainNameLens('Company') ).toEqual('companies')
       expect( mainNameLens('Product') ).toEqual('products')
       expect( mainNameLens('baz') ).toEqual('values')

From 13d11956930b3970cad112f2959f51d1aa82deab Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Tue, 7 Jul 2020 15:19:38 -0400
Subject: [PATCH 20/34] update fixtures, date to str

---
 src/components/Trends/LensTabs.jsx            |    2 +-
 src/components/Trends/TrendsPanel.jsx         |   49 +-
 src/components/Trends/TrendsPanel.less        |    5 +-
 .../__snapshots__/TrendsPanel.spec.jsx.snap   |   75 +-
 src/reducers/__fixtures__/trendsAggs.jsx      |    2 +-
 .../__fixtures__/trendsAggsDupeResults.jsx    | 1610 ++++++++++++++++-
 src/reducers/__fixtures__/trendsAggsDupes.jsx |    2 +-
 src/reducers/__tests__/trends.spec.jsx        |    8 +-
 src/reducers/trends.jsx                       |   14 +-
 src/utils/trends.jsx                          |    4 +
 10 files changed, 1706 insertions(+), 65 deletions(-)

diff --git a/src/components/Trends/LensTabs.jsx b/src/components/Trends/LensTabs.jsx
index 3f365ddc7..7545d9c6d 100644
--- a/src/components/Trends/LensTabs.jsx
+++ b/src/components/Trends/LensTabs.jsx
@@ -30,7 +30,7 @@ export class LensTabs extends React.Component {
   }
 
   render() {
-    const { lens, showTitle } = this.props
+    const { lens } = this.props
     if ( lens === 'Overview' ) {
       return null
     }
diff --git a/src/components/Trends/TrendsPanel.jsx b/src/components/Trends/TrendsPanel.jsx
index 72620091a..a8e29b069 100644
--- a/src/components/Trends/TrendsPanel.jsx
+++ b/src/components/Trends/TrendsPanel.jsx
@@ -40,15 +40,15 @@ const subLensMap = {
 }
 
 const lensHelperTextMap = {
-  'product': 'Product the consumer identified in the complaint.' +
+  product: 'Product the consumer identified in the complaint.' +
   ' Click on a company name to expand products.',
-  'company': 'Product the consumer identified in the complaint. Click on' +
+  company: 'Product the consumer identified in the complaint. Click on' +
   ' a company name to expand products.',
-  'sub_product': 'Product and sub-product the consumer identified in the ' +
+  sub_product: 'Product and sub-product the consumer identified in the ' +
   ' complaint. Click on a product to expand sub-products.',
-  'issue': 'Product and issue the consumer identified in the complaint.' +
+  issue: 'Product and issue the consumer identified in the complaint.' +
   ' Click on a product to expand issue.',
-  'overview': 'Product the consumer identified in the complaint. Click on a ' +
+  overview: 'Product the consumer identified in the complaint. Click on a ' +
   ' product to expand sub-products'
 }
 
@@ -60,13 +60,14 @@ const focusHelperTextMap = {
 
 export class TrendsPanel extends React.Component {
   _areaChartTitle() {
-    const { focus, overview, lens, subLens } = this.props
+    const { focus, overview, subLens } = this.props
     if ( overview ) {
       return 'Complaints by date received by the CFPB'
     } else if ( focus ) {
-      return subLensMap[subLens] + ' complaints by date received by the CFPB'
+      return `Complaints by ${ subLensMap[subLens] }
+       by date received by the CFPB`
     }
-    return `${ lens } complaints by date received by the CFPB`
+    return 'Complaints by date received by the CFPB'
   }
 
   _className() {
@@ -78,9 +79,6 @@ export class TrendsPanel extends React.Component {
   }
 
   _phaseMap() {
-    const minDate = moment(this.props.date_received_min).format('MM/DD/YYYY')
-    const maxDate = moment(this.props.date_received_max).format('MM/DD/YYYY')
-
     if ( this.props.companyOverlay ) {
       return null
     }
@@ -89,8 +87,8 @@ export class TrendsPanel extends React.Component {
       return <RowChart id="product"
                        colorScheme={ this.props.productData.colorScheme }
                        data={ this.props.productData.data }
-                       title={ 'Product by highest complaint volume '
-                        + minDate + ' to ' + maxDate}
+                       title={ 'Product by highest complaint volume ' +
+                        this.props.minDate + ' to ' + this.props.maxDate}
                        helperText={ this.props.lensHelperText }
                        total={ this.props.total }/>
     }
@@ -99,8 +97,8 @@ export class TrendsPanel extends React.Component {
       return <RowChart id={ this.props.lens }
                        colorScheme={ this.props.focusData.colorScheme }
                        data={ this.props.focusData.data }
-                       title={ this.props.subLensTitle + ' '
-                        + minDate + ' to ' + maxDate }
+                       title={ this.props.subLensTitle + ' ' +
+                        this.props.minDate + ' to ' + this.props.maxDate }
                        helperText={ this.props.focusHelperText }
                        total={ this.props.total }/>
     }
@@ -110,8 +108,8 @@ export class TrendsPanel extends React.Component {
       <RowChart id={ this.props.lens }
                 colorScheme={ this.props.dataLensData.colorScheme }
                 data={ this.props.dataLensData.data }
-                title={ this.props.subLensTitle + ' '
-                        + minDate + ' to ' + maxDate }
+                title={ this.props.subLensTitle + ' ' +
+                 this.props.minDate + ' to ' + this.props.maxDate }
                 helperText={ this.props.lensHelperText}
                 total={ this.props.total }
                 key={ this.props.lens + 'row' }/>
@@ -171,7 +169,7 @@ export class TrendsPanel extends React.Component {
         { !companyOverlay && total > 0 &&
           <div className="layout-row">
             <section className="chart">
-              <h2>{this._areaChartTitle()}</h2>
+              <h2 className="area-chart-title">{this._areaChartTitle()}</h2>
               <p className="chart-helper-text">A time series graph of
                complaint counts for the selected date range.
                 Hover on the chart to see the count for each date interval.
@@ -218,8 +216,15 @@ const mapStateToProps = state => {
 
   const lensKey = lens.toLowerCase()
   const focusKey = subLens.replace( '_', '-' )
-  const lensHelperText = (subLens === '') ? lensHelperTextMap[lensKey] : lensHelperTextMap[subLens]
-  const focusHelperText = (subLens === '') ? focusHelperTextMap[lensKey] : focusHelperTextMap[subLens]
+  const lensHelperText = subLens === '' ?
+   lensHelperTextMap[lensKey] : lensHelperTextMap[subLens]
+  const focusHelperText = subLens === '' ?
+   focusHelperTextMap[lensKey] : focusHelperTextMap[subLens]
+
+  const minDate = moment( date_received_min )
+                      .format( 'MM/DD/YYYY' )
+  const maxDate = moment( date_received_max )
+                      .format( 'MM/DD/YYYY' )
 
   return {
     chartType,
@@ -241,8 +246,8 @@ const mapStateToProps = state => {
     focusHelperText: focusHelperText,
     total,
     trendsDateWarningEnabled,
-    date_received_max,
-    date_received_min
+    minDate,
+    maxDate
   }
 }
 
diff --git a/src/components/Trends/TrendsPanel.less b/src/components/Trends/TrendsPanel.less
index b68cd6414..9305554b5 100644
--- a/src/components/Trends/TrendsPanel.less
+++ b/src/components/Trends/TrendsPanel.less
@@ -246,15 +246,16 @@
     }
   }
 
-  h2 {
+  h2.area-chart-title {
     padding: @gutter-normal;
-    margin-bottom: 0px;
+    margin-bottom: 0;
   }
 
   .chart-helper-text {
     padding-left: @gutter-normal;
     padding-right: @gutter-normal;
     padding-bottom: @gutter-normal;
+    margin-bottom: @gutter-normal;
   }
 
 
diff --git a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
index c30c6389c..e76906784 100644
--- a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
@@ -363,8 +363,11 @@ exports[`component:TrendsPanel Snapshots renders Focus without crashing 1`] = `
     <section
       className="chart"
     >
-      <h2>
-        Sub-products complaints by date CFPB received
+      <h2
+        className="area-chart-title"
+      >
+        Complaints by Sub-products
+       by date received by the CFPB
       </h2>
       <p
         className="chart-helper-text"
@@ -390,10 +393,10 @@ exports[`component:TrendsPanel Snapshots renders Focus without crashing 1`] = `
     className="row-chart-section"
   >
     <h3>
-      Sub-products by product
+      Sub-products, by product from 12/31/2017 to 12/31/2019
     </h3>
     <p>
-      Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.
+      Sub-products the consumer identified in the complaint
     </p>
     <div
       id="row-chart-Product"
@@ -714,8 +717,10 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
     <section
       className="chart"
     >
-      <h2>
-        Product complaints by date CFPB received
+      <h2
+        className="area-chart-title"
+      >
+        Complaints by date received by the CFPB
       </h2>
       <p
         className="chart-helper-text"
@@ -759,7 +764,7 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
     className="row-chart-section"
   >
     <h3>
-      Sub-products by product
+      Sub-products, by product from 12/31/2017 to 12/31/2019
     </h3>
     <p>
       Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.
@@ -1379,8 +1384,10 @@ exports[`component:TrendsPanel Snapshots renders date warning without crashing 1
     <section
       className="chart"
     >
-      <h2>
-        Complaints by date CFPB received
+      <h2
+        className="area-chart-title"
+      >
+        Complaints by date received by the CFPB
       </h2>
       <p
         className="chart-helper-text"
@@ -1406,9 +1413,11 @@ exports[`component:TrendsPanel Snapshots renders date warning without crashing 1
     className="row-chart-section"
   >
     <h3>
-      Product by highest complaint volume
+      Product by highest complaint volume 12/31/2017 to 12/31/2019
     </h3>
-    <p />
+    <p>
+      Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.
+    </p>
     <div
       id="row-chart-product"
     />
@@ -1728,8 +1737,10 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
     <section
       className="chart"
     >
-      <h2>
-        Product complaints by date CFPB received
+      <h2
+        className="area-chart-title"
+      >
+        Complaints by date received by the CFPB
       </h2>
       <p
         className="chart-helper-text"
@@ -1773,7 +1784,7 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
     className="row-chart-section"
   >
     <h3>
-      Sub-products by product
+      Sub-products, by product from 12/31/2017 to 12/31/2019
     </h3>
     <p>
       Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.
@@ -1997,8 +2008,10 @@ exports[`component:TrendsPanel Snapshots renders lineChart Overview without cras
     <section
       className="chart"
     >
-      <h2>
-        Complaints by date CFPB received
+      <h2
+        className="area-chart-title"
+      >
+        Complaints by date received by the CFPB
       </h2>
       <p
         className="chart-helper-text"
@@ -2024,9 +2037,11 @@ exports[`component:TrendsPanel Snapshots renders lineChart Overview without cras
     className="row-chart-section"
   >
     <h3>
-      Product by highest complaint volume
+      Product by highest complaint volume 12/31/2017 to 12/31/2019
     </h3>
-    <p />
+    <p>
+      Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.
+    </p>
     <div
       id="row-chart-product"
     />
@@ -2247,8 +2262,10 @@ exports[`component:TrendsPanel Snapshots renders mobile filters without crashing
     <section
       className="chart"
     >
-      <h2>
-        Complaints by date CFPB received
+      <h2
+        className="area-chart-title"
+      >
+        Complaints by date received by the CFPB
       </h2>
       <p
         className="chart-helper-text"
@@ -2274,9 +2291,11 @@ exports[`component:TrendsPanel Snapshots renders mobile filters without crashing
     className="row-chart-section"
   >
     <h3>
-      Product by highest complaint volume
+      Product by highest complaint volume 12/31/2017 to 12/31/2019
     </h3>
-    <p />
+    <p>
+      Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.
+    </p>
     <div
       id="row-chart-product"
     />
@@ -2496,8 +2515,10 @@ exports[`component:TrendsPanel Snapshots renders print mode without crashing 1`]
     <section
       className="chart"
     >
-      <h2>
-        Complaints by date CFPB received
+      <h2
+        className="area-chart-title"
+      >
+        Complaints by date received by the CFPB
       </h2>
       <p
         className="chart-helper-text"
@@ -2523,9 +2544,11 @@ exports[`component:TrendsPanel Snapshots renders print mode without crashing 1`]
     className="row-chart-section"
   >
     <h3>
-      Product by highest complaint volume
+      Product by highest complaint volume 12/31/2017 to 12/31/2019
     </h3>
-    <p />
+    <p>
+      Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.
+    </p>
     <div
       id="row-chart-product"
     />
diff --git a/src/reducers/__fixtures__/trendsAggs.jsx b/src/reducers/__fixtures__/trendsAggs.jsx
index ac2c169a6..0386692a6 100644
--- a/src/reducers/__fixtures__/trendsAggs.jsx
+++ b/src/reducers/__fixtures__/trendsAggs.jsx
@@ -1 +1 @@
-export default { "dateRangeBrush": { "doc_count": 1599733, "dateRangeBrush": { "buckets": [ { "key_as_string": "2020-01-01T00:00:00.000Z", "key": 1577836800000, "doc_count": 26413 }, { "key_as_string": "2020-02-01T00:00:00.000Z", "key": 1580515200000, "doc_count": 25096 }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 29506 }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 35112 }, { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 9821 } ] } }, "product": { "doc_count": 74439, "product": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 4318, "buckets": [ { "key": "Credit reporting, credit repair services, or other personal consumer reports", "doc_count": 45278, "product": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Credit reporting", "doc_count": 44896, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 20988, "interval_diff": { "value": 3914 } } ] } }, { "key": "Other personal consumer report", "doc_count": 301, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 150, "interval_diff": { "value": 28 } } ] } }, { "key": "Credit repair services", "doc_count": 81, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 41, "interval_diff": { "value": 6 } } ] } } ] }, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 6868, "interval_diff": { "value": -14311 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 21179, "interval_diff": { "value": 3948 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 17231 } ] } }, { "key": "Debt collection", "doc_count": 9782, "product": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Other debt", "doc_count": 2692, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1129, "interval_diff": { "value": -128 } } ] } }, { "key": "I do not know", "doc_count": 2449, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1184, "interval_diff": { "value": 170 } } ] } }, { "key": "Credit card debt", "doc_count": 2258, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1113, "interval_diff": { "value": 187 } } ] } }, { "key": "Medical debt", "doc_count": 1408, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 666, "interval_diff": { "value": 116 } } ] } }, { "key": "Auto debt", "doc_count": 310, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 137, "interval_diff": { "value": 2 } } ] } }, { "key": "Payday loan debt", "doc_count": 287, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 115, "interval_diff": { "value": -19 } } ] } }, { "key": "Mortgage debt", "doc_count": 175, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 83, "interval_diff": { "value": 2 } } ] } }, { "key": "Federal student loan debt", "doc_count": 107, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 42, "interval_diff": { "value": -17 } } ] } }, { "key": "Private student loan debt", "doc_count": 96, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 39, "interval_diff": { "value": -11 } } ] } } ] }, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 1068, "interval_diff": { "value": -3440 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 4508, "interval_diff": { "value": 302 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 4206 } ] } }, { "key": "Credit card or prepaid card", "doc_count": 6284, "product": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "General-purpose credit card or charge card", "doc_count": 4657, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 2198, "interval_diff": { "value": 300 } } ] } }, { "key": "Store credit card", "doc_count": 828, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 389, "interval_diff": { "value": 24 } } ] } }, { "key": "Government benefit card", "doc_count": 414, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 326, "interval_diff": { "value": 272 } } ] } }, { "key": "General-purpose prepaid card", "doc_count": 337, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 196, "interval_diff": { "value": 95 } } ] } }, { "key": "Payroll card", "doc_count": 33, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 22, "interval_diff": { "value": 13 } } ] } }, { "key": "Gift card", "doc_count": 14, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 6, "interval_diff": { "value": -1 } } ] } }, { "key": "Student prepaid card", "doc_count": 1, "trend_period": { "buckets": [] } } ] }, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 712, "interval_diff": { "value": -2425 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 3137, "interval_diff": { "value": 702 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 2435 } ] } }, { "key": "Mortgage", "doc_count": 4676, "product": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Conventional home mortgage", "doc_count": 2971, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1382, "interval_diff": { "value": 18 } } ] } }, { "key": "FHA mortgage", "doc_count": 788, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 370, "interval_diff": { "value": 19 } } ] } }, { "key": "VA mortgage", "doc_count": 350, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 170, "interval_diff": { "value": 19 } } ] } }, { "key": "Other type of mortgage", "doc_count": 279, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 115, "interval_diff": { "value": -26 } } ] } }, { "key": "Home equity loan or line of credit (HELOC)", "doc_count": 243, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 123, "interval_diff": { "value": 21 } } ] } }, { "key": "Reverse mortgage", "doc_count": 45, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 19, "interval_diff": { "value": -4 } } ] } } ] }, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 365, "interval_diff": { "value": -1814 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 2179, "interval_diff": { "value": 47 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 2132 } ] } }, { "key": "Checking or savings account", "doc_count": 4101, "product": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Checking account", "doc_count": 3187, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1597, "interval_diff": { "value": 316 } } ] } }, { "key": "Other banking product or service", "doc_count": 494, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 237, "interval_diff": { "value": 22 } } ] } }, { "key": "Savings account", "doc_count": 298, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 145, "interval_diff": { "value": 14 } } ] } }, { "key": "CD (Certificate of Deposit)", "doc_count": 121, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 51, "interval_diff": { "value": -9 } } ] } }, { "key": "Personal line of credit", "doc_count": 1, "trend_period": { "buckets": [] } } ] }, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 383, "interval_diff": { "value": -1647 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 2030, "interval_diff": { "value": 342 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 1688 } ] } } ] } }, "max_date": { "value": 1589821200000, "value_as_string": "2020-05-18T12:00:00-05:00" }, "issue": { "doc_count": 74439, "issue": { "doc_count_error_upper_bound": 401, "sum_other_doc_count": 21803, "buckets": [ { "key": "Incorrect information on your report", "doc_count": 33017, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 5095, "interval_diff": { "value": -10364 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 15459, "interval_diff": { "value": 2996 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 12463 } ] }, "issue": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Information belongs to someone else", "doc_count": 24403, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 11481, "interval_diff": { "value": 2458 } } ] } }, { "key": "Account status incorrect", "doc_count": 3042, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1363, "interval_diff": { "value": 34 } } ] } }, { "key": "Account information incorrect", "doc_count": 2849, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1328, "interval_diff": { "value": 271 } } ] } }, { "key": "Personal information incorrect", "doc_count": 1066, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 507, "interval_diff": { "value": 98 } } ] } }, { "key": "Public record information inaccurate", "doc_count": 578, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 260, "interval_diff": { "value": 14 } } ] } }, { "key": "Old information reappears or never goes away", "doc_count": 576, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 278, "interval_diff": { "value": 52 } } ] } }, { "key": "Information is missing that should be on the report", "doc_count": 348, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 175, "interval_diff": { "value": 62 } } ] } }, { "key": "Information is incorrect", "doc_count": 36, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 16, "interval_diff": { "value": 1 } } ] } }, { "key": "Information that should be on the report is missing", "doc_count": 9, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 5, "interval_diff": { "value": 3 } } ] } } ] } }, { "key": "Problem with a credit reporting company's investigation into an existing problem", "doc_count": 9307, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 1354, "interval_diff": { "value": -3091 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 4445, "interval_diff": { "value": 937 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 3508 } ] }, "issue": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Their investigation did not fix an error on your report", "doc_count": 5706, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 2738, "interval_diff": { "value": 401 } } ] } }, { "key": "Investigation took more than 30 days", "doc_count": 1572, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 689, "interval_diff": { "value": 149 } } ] } }, { "key": "Was not notified of investigation status or results", "doc_count": 1173, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 578, "interval_diff": { "value": 255 } } ] } }, { "key": "Difficulty submitting a dispute or getting information about a dispute over the phone", "doc_count": 495, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 275, "interval_diff": { "value": 118 } } ] } }, { "key": "Problem with personal statement of dispute", "doc_count": 329, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 151, "interval_diff": { "value": 14 } } ] } } ] } }, { "key": "Attempts to collect debt not owed", "doc_count": 5370, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 593, "interval_diff": { "value": -1864 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 2457, "interval_diff": { "value": 137 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 2320 } ] }, "issue": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Debt is not yours", "doc_count": 2571, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1121, "interval_diff": { "value": -34 } } ] } }, { "key": "Debt was result of identity theft", "doc_count": 1771, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 853, "interval_diff": { "value": 107 } } ] } }, { "key": "Debt was paid", "doc_count": 868, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 406, "interval_diff": { "value": 54 } } ] } }, { "key": "Debt was already discharged in bankruptcy and is no longer owed", "doc_count": 160, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 77, "interval_diff": { "value": 10 } } ] } } ] } }, { "key": "Managing an account", "doc_count": 2572, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 248, "interval_diff": { "value": -1026 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1274, "interval_diff": { "value": 224 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 1050 } ] }, "issue": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Deposits and withdrawals", "doc_count": 841, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 427, "interval_diff": { "value": 103 } } ] } }, { "key": "Problem using a debit or ATM card", "doc_count": 446, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 215, "interval_diff": { "value": 27 } } ] } }, { "key": "Banking errors", "doc_count": 351, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 168, "interval_diff": { "value": 15 } } ] } }, { "key": "Funds not handled or disbursed as instructed", "doc_count": 252, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 111, "interval_diff": { "value": -14 } } ] } }, { "key": "Problem accessing account", "doc_count": 245, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 143, "interval_diff": { "value": 66 } } ] } }, { "key": "Problem making or receiving payments", "doc_count": 163, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 88, "interval_diff": { "value": 36 } } ] } }, { "key": "Fee problem", "doc_count": 141, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 70, "interval_diff": { "value": 9 } } ] } }, { "key": "Cashing a check", "doc_count": 93, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 37, "interval_diff": { "value": -9 } } ] } }, { "key": "Deposits or withdrawals", "doc_count": 21, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 9, "interval_diff": { "value": -2 } } ] } }, { "key": "Problem with renewal", "doc_count": 10, "trend_period": { "buckets": [ { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 8 } ] } }, { "key": "Problem with fees or penalties", "doc_count": 9, "trend_period": { "buckets": [ { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 5 } ] } } ] } }, { "key": "Improper use of your report", "doc_count": 2370, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 357, "interval_diff": { "value": -676 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1033, "interval_diff": { "value": 53 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 980 } ] }, "issue": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Credit inquiries on your report that you don't recognize", "doc_count": 1678, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 699, "interval_diff": { "value": -52 } } ] } }, { "key": "Reporting company used your report improperly", "doc_count": 647, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 313, "interval_diff": { "value": 103 } } ] } }, { "key": "Received unsolicited financial product or insurance offers after opting out", "doc_count": 22, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 8, "interval_diff": { "value": -3 } } ] } }, { "key": "Report provided to employer without your written authorization", "doc_count": 10, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 4, "interval_diff": { "value": -1 } } ] } } ] } } ] } }, "collections": { "doc_count": 74439, "collections": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Servicemember", "doc_count": 5172, "trend_period": { "buckets": [ { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 2086 }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 2465, "interval_diff": { "value": 379 } }, { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 621, "interval_diff": { "value": -1844 } } ] } }, { "key": "Older American", "doc_count": 2352, "trend_period": { "buckets": [ { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 1099 }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1034, "interval_diff": { "value": -65 } }, { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 219, "interval_diff": { "value": -815 } } ] } }, { "key": "Older American, Servicemember", "doc_count": 640, "trend_period": { "buckets": [ { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 307 }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 274, "interval_diff": { "value": -33 } }, { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 59, "interval_diff": { "value": -215 } } ] } } ] } }, "min_date": { "value": 1322758800000, "value_as_string": "2011-12-01T12:00:00-05:00" }, "dateRangeArea": { "doc_count": 74439, "dateRangeArea": { "buckets": [ { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 29506 }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 35112 }, { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 9821 } ] } } }
+export default {"dateRangeBrush":{"doc_count":250000,"dateRangeBrush":{"buckets":[{"key_as_string":"2011-12-01T00:00:00.000Z","key":1322697600000,"doc_count":2},{"key_as_string":"2012-01-01T00:00:00.000Z","key":1325376000000,"doc_count":4},{"key_as_string":"2012-02-01T00:00:00.000Z","key":1328054400000,"doc_count":3},{"key_as_string":"2012-03-01T00:00:00.000Z","key":1330560000000,"doc_count":8},{"key_as_string":"2012-04-01T00:00:00.000Z","key":1333238400000,"doc_count":9},{"key_as_string":"2012-05-01T00:00:00.000Z","key":1335830400000,"doc_count":10},{"key_as_string":"2012-06-01T00:00:00.000Z","key":1338508800000,"doc_count":9},{"key_as_string":"2012-07-01T00:00:00.000Z","key":1341100800000,"doc_count":5},{"key_as_string":"2012-08-01T00:00:00.000Z","key":1343779200000,"doc_count":5},{"key_as_string":"2012-09-01T00:00:00.000Z","key":1346457600000,"doc_count":6},{"key_as_string":"2012-10-01T00:00:00.000Z","key":1349049600000,"doc_count":9},{"key_as_string":"2012-11-01T00:00:00.000Z","key":1351728000000,"doc_count":4},{"key_as_string":"2012-12-01T00:00:00.000Z","key":1354320000000,"doc_count":3},{"key_as_string":"2013-01-01T00:00:00.000Z","key":1356998400000,"doc_count":6},{"key_as_string":"2013-02-01T00:00:00.000Z","key":1359676800000,"doc_count":6},{"key_as_string":"2013-03-01T00:00:00.000Z","key":1362096000000,"doc_count":5},{"key_as_string":"2013-04-01T00:00:00.000Z","key":1364774400000,"doc_count":7},{"key_as_string":"2013-05-01T00:00:00.000Z","key":1367366400000,"doc_count":18},{"key_as_string":"2013-06-01T00:00:00.000Z","key":1370044800000,"doc_count":7},{"key_as_string":"2013-07-01T00:00:00.000Z","key":1372636800000,"doc_count":8},{"key_as_string":"2013-08-01T00:00:00.000Z","key":1375315200000,"doc_count":15},{"key_as_string":"2013-09-01T00:00:00.000Z","key":1377993600000,"doc_count":8},{"key_as_string":"2013-10-01T00:00:00.000Z","key":1380585600000,"doc_count":13},{"key_as_string":"2013-11-01T00:00:00.000Z","key":1383264000000,"doc_count":6},{"key_as_string":"2013-12-01T00:00:00.000Z","key":1385856000000,"doc_count":2},{"key_as_string":"2014-01-01T00:00:00.000Z","key":1388534400000,"doc_count":19},{"key_as_string":"2014-02-01T00:00:00.000Z","key":1391212800000,"doc_count":16},{"key_as_string":"2014-03-01T00:00:00.000Z","key":1393632000000,"doc_count":18},{"key_as_string":"2014-04-01T00:00:00.000Z","key":1396310400000,"doc_count":15},{"key_as_string":"2014-05-01T00:00:00.000Z","key":1398902400000,"doc_count":16},{"key_as_string":"2014-06-01T00:00:00.000Z","key":1401580800000,"doc_count":12},{"key_as_string":"2014-07-01T00:00:00.000Z","key":1404172800000,"doc_count":24},{"key_as_string":"2014-08-01T00:00:00.000Z","key":1406851200000,"doc_count":18},{"key_as_string":"2014-09-01T00:00:00.000Z","key":1409529600000,"doc_count":17},{"key_as_string":"2014-10-01T00:00:00.000Z","key":1412121600000,"doc_count":21},{"key_as_string":"2014-11-01T00:00:00.000Z","key":1414800000000,"doc_count":14},{"key_as_string":"2014-12-01T00:00:00.000Z","key":1417392000000,"doc_count":13},{"key_as_string":"2015-01-01T00:00:00.000Z","key":1420070400000,"doc_count":15},{"key_as_string":"2015-02-01T00:00:00.000Z","key":1422748800000,"doc_count":23},{"key_as_string":"2015-03-01T00:00:00.000Z","key":1425168000000,"doc_count":18},{"key_as_string":"2015-04-01T00:00:00.000Z","key":1427846400000,"doc_count":17},{"key_as_string":"2015-05-01T00:00:00.000Z","key":1430438400000,"doc_count":15},{"key_as_string":"2015-06-01T00:00:00.000Z","key":1433116800000,"doc_count":15},{"key_as_string":"2015-07-01T00:00:00.000Z","key":1435708800000,"doc_count":8},{"key_as_string":"2015-08-01T00:00:00.000Z","key":1438387200000,"doc_count":12},{"key_as_string":"2015-09-01T00:00:00.000Z","key":1441065600000,"doc_count":8},{"key_as_string":"2015-10-01T00:00:00.000Z","key":1443657600000,"doc_count":22},{"key_as_string":"2015-11-01T00:00:00.000Z","key":1446336000000,"doc_count":15},{"key_as_string":"2015-12-01T00:00:00.000Z","key":1448928000000,"doc_count":15},{"key_as_string":"2016-01-01T00:00:00.000Z","key":1451606400000,"doc_count":36},{"key_as_string":"2016-02-01T00:00:00.000Z","key":1454284800000,"doc_count":14},{"key_as_string":"2016-03-01T00:00:00.000Z","key":1456790400000,"doc_count":48},{"key_as_string":"2016-04-01T00:00:00.000Z","key":1459468800000,"doc_count":24},{"key_as_string":"2016-05-01T00:00:00.000Z","key":1462060800000,"doc_count":13},{"key_as_string":"2016-06-01T00:00:00.000Z","key":1464739200000,"doc_count":13},{"key_as_string":"2016-07-01T00:00:00.000Z","key":1467331200000,"doc_count":14},{"key_as_string":"2016-08-01T00:00:00.000Z","key":1470009600000,"doc_count":25},{"key_as_string":"2016-09-01T00:00:00.000Z","key":1472688000000,"doc_count":18},{"key_as_string":"2016-10-01T00:00:00.000Z","key":1475280000000,"doc_count":31},{"key_as_string":"2016-11-01T00:00:00.000Z","key":1477958400000,"doc_count":38},{"key_as_string":"2016-12-01T00:00:00.000Z","key":1480550400000,"doc_count":23},{"key_as_string":"2017-01-01T00:00:00.000Z","key":1483228800000,"doc_count":41},{"key_as_string":"2017-02-01T00:00:00.000Z","key":1485907200000,"doc_count":37},{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":37},{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":67},{"key_as_string":"2017-05-01T00:00:00.000Z","key":1493596800000,"doc_count":77},{"key_as_string":"2017-06-01T00:00:00.000Z","key":1496275200000,"doc_count":109},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":113},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":141},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":125},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":112},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":57},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":60},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":47},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":56},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":60},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":285},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":377},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":304},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":370},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":270},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":332},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":345},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":714},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":1266},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":1235},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":3496},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":9609},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":21574},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":23364},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":23273},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":24999},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":25920},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":23346},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":23738},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":19086},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":11444},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":7860},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":4273},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":5224},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":9995},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":3720},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1581}]}},"product":{"doc_count":248758,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":19262,"buckets":[{"key":"Credit reporting, credit repair services, or other personal consumer reports","doc_count":125169,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Credit reporting","doc_count":123254,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":2337,"interval_diff":{"value":-2661}}]}},{"key":"Other personal consumer report","doc_count":1447,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":14,"interval_diff":{"value":-31}}]}},{"key":"Credit repair services","doc_count":468,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":2,"interval_diff":{"value":-18}}]}}]},"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1035,"interval_diff":{"value":-1318}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":2353,"interval_diff":{"value":-2710}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":5063,"interval_diff":{"value":2134}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":2929,"interval_diff":{"value":571}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":2358,"interval_diff":{"value":-1652}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":4010,"interval_diff":{"value":-1631}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":5641,"interval_diff":{"value":-3700}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":9341,"interval_diff":{"value":-2587}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":11928,"interval_diff":{"value":-50}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":11978,"interval_diff":{"value":-1492}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":13470,"interval_diff":{"value":493}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":12977,"interval_diff":{"value":1259}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":11718,"interval_diff":{"value":19}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":11699,"interval_diff":{"value":1246}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":10453,"interval_diff":{"value":6287}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":4166,"interval_diff":{"value":2720}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":1446,"interval_diff":{"value":869}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":577,"interval_diff":{"value":-107}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":684,"interval_diff":{"value":331}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":353,"interval_diff":{"value":234}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":119,"interval_diff":{"value":-27}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":146,"interval_diff":{"value":52}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":94,"interval_diff":{"value":-41}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":135,"interval_diff":{"value":32}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":103,"interval_diff":{"value":-14}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":117,"interval_diff":{"value":24}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":93,"interval_diff":{"value":78}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":15,"interval_diff":{"value":4}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":11,"interval_diff":{"value":3}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":8,"interval_diff":{"value":-4}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":12,"interval_diff":{"value":-6}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":18,"interval_diff":{"value":-22}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":40,"interval_diff":{"value":4}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":36,"interval_diff":{"value":9}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":27,"interval_diff":{"value":11}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":16}]}},{"key":"Debt collection","doc_count":41420,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Other debt","doc_count":11257,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":164,"interval_diff":{"value":-248}}]}},{"key":"Credit card debt","doc_count":9509,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":103,"interval_diff":{"value":-280}}]}},{"key":"I do not know","doc_count":9235,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":126,"interval_diff":{"value":-336}}]}},{"key":"Medical debt","doc_count":6807,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":97,"interval_diff":{"value":-169}}]}},{"key":"Auto debt","doc_count":1351,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":16,"interval_diff":{"value":-20}}]}},{"key":"Payday loan debt","doc_count":1215,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":20,"interval_diff":{"value":-26}}]}},{"key":"Mortgage debt","doc_count":825,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":4,"interval_diff":{"value":-23}}]}},{"key":"Federal student loan debt","doc_count":671,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1,"interval_diff":{"value":-15}}]}},{"key":"Private student loan debt","doc_count":550,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":5,"interval_diff":{"value":-5}}]}}]},"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":180,"interval_diff":{"value":-356}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":536,"interval_diff":{"value":-1122}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":1658,"interval_diff":{"value":850}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":808,"interval_diff":{"value":129}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":679,"interval_diff":{"value":-571}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":1250,"interval_diff":{"value":-608}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":1858,"interval_diff":{"value":-1437}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":3295,"interval_diff":{"value":-610}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":3905,"interval_diff":{"value":-43}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":3948,"interval_diff":{"value":-251}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":4199,"interval_diff":{"value":194}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":4005,"interval_diff":{"value":-33}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":4038,"interval_diff":{"value":-8}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":4046,"interval_diff":{"value":303}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":3743,"interval_diff":{"value":2142}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":1601,"interval_diff":{"value":1102}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":499,"interval_diff":{"value":369}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":130,"interval_diff":{"value":-13}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":143,"interval_diff":{"value":34}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":109,"interval_diff":{"value":3}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":106,"interval_diff":{"value":39}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":67,"interval_diff":{"value":-11}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":78,"interval_diff":{"value":-20}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":98,"interval_diff":{"value":-5}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":103,"interval_diff":{"value":0}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":103,"interval_diff":{"value":55}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":48,"interval_diff":{"value":26}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":22,"interval_diff":{"value":4}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":18,"interval_diff":{"value":3}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":15,"interval_diff":{"value":-10}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":25,"interval_diff":{"value":6}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":19,"interval_diff":{"value":-9}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":28,"interval_diff":{"value":11}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":17,"interval_diff":{"value":-11}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":28,"interval_diff":{"value":13}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":15}]}},{"key":"Credit card or prepaid card","doc_count":23249,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"General-purpose credit card or charge card","doc_count":17637,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":228,"interval_diff":{"value":-517}}]}},{"key":"Store credit card","doc_count":3768,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":30,"interval_diff":{"value":-111}}]}},{"key":"General-purpose prepaid card","doc_count":984,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":19,"interval_diff":{"value":-51}}]}},{"key":"Government benefit card","doc_count":667,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":28,"interval_diff":{"value":-71}}]}},{"key":"Payroll card","doc_count":100,"trend_period":{"buckets":[{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":6,"interval_diff":{"value":4}}]}},{"key":"Gift card","doc_count":91,"trend_period":{"buckets":[{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":2,"interval_diff":{"value":-1}}]}},{"key":"Student prepaid card","doc_count":2,"trend_period":{"buckets":[{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":0,"interval_diff":{"value":0}}]}}]},"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":86,"interval_diff":{"value":-220}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":306,"interval_diff":{"value":-759}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":1065,"interval_diff":{"value":605}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":460,"interval_diff":{"value":124}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":336,"interval_diff":{"value":-447}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":783,"interval_diff":{"value":-385}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":1168,"interval_diff":{"value":-768}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":1936,"interval_diff":{"value":-274}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":2210,"interval_diff":{"value":94}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":2116,"interval_diff":{"value":-183}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2299,"interval_diff":{"value":73}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":2226,"interval_diff":{"value":80}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":2146,"interval_diff":{"value":52}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":2094,"interval_diff":{"value":98}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1996,"interval_diff":{"value":931}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":1065,"interval_diff":{"value":670}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":395,"interval_diff":{"value":265}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":130,"interval_diff":{"value":11}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":119,"interval_diff":{"value":63}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":56,"interval_diff":{"value":27}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":29,"interval_diff":{"value":5}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":24,"interval_diff":{"value":10}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":14,"interval_diff":{"value":-11}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":25,"interval_diff":{"value":-3}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":28,"interval_diff":{"value":3}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":25,"interval_diff":{"value":7}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":18,"interval_diff":{"value":11}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":7,"interval_diff":{"value":2}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":5,"interval_diff":{"value":-1}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":6,"interval_diff":{"value":-2}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":8,"interval_diff":{"value":1}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":7,"interval_diff":{"value":-6}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":13,"interval_diff":{"value":-4}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":17,"interval_diff":{"value":-3}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":20,"interval_diff":{"value":9}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":11}]}},{"key":"Mortgage","doc_count":20176,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Conventional home mortgage","doc_count":12711,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":104,"interval_diff":{"value":-388}}]}},{"key":"FHA mortgage","doc_count":2974,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":33,"interval_diff":{"value":-94}}]}},{"key":"Other type of mortgage","doc_count":1776,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":8,"interval_diff":{"value":-26}}]}},{"key":"Home equity loan or line of credit (HELOC)","doc_count":1246,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":6,"interval_diff":{"value":-28}}]}},{"key":"VA mortgage","doc_count":1158,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":17,"interval_diff":{"value":-48}}]}},{"key":"Reverse mortgage","doc_count":311,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1,"interval_diff":{"value":-6}}]}}]},"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":67,"interval_diff":{"value":-102}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":169,"interval_diff":{"value":-590}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":759,"interval_diff":{"value":386}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":373,"interval_diff":{"value":57}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":316,"interval_diff":{"value":-260}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":576,"interval_diff":{"value":-367}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":943,"interval_diff":{"value":-543}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":1486,"interval_diff":{"value":-441}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":1927,"interval_diff":{"value":98}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":1829,"interval_diff":{"value":-191}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2020,"interval_diff":{"value":22}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":1998,"interval_diff":{"value":154}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":1844,"interval_diff":{"value":-58}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1902,"interval_diff":{"value":31}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1871,"interval_diff":{"value":911}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":960,"interval_diff":{"value":561}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":399,"interval_diff":{"value":253}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":146,"interval_diff":{"value":32}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":114,"interval_diff":{"value":39}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":75,"interval_diff":{"value":36}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":39,"interval_diff":{"value":6}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":33,"interval_diff":{"value":-1}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":34,"interval_diff":{"value":-10}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":44,"interval_diff":{"value":22}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":22,"interval_diff":{"value":-31}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":53,"interval_diff":{"value":-10}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":63,"interval_diff":{"value":57}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":6,"interval_diff":{"value":-8}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":14,"interval_diff":{"value":6}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":8,"interval_diff":{"value":2}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":6,"interval_diff":{"value":3}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":3,"interval_diff":{"value":-13}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":16,"interval_diff":{"value":-1}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":17,"interval_diff":{"value":-11}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":28,"interval_diff":{"value":12}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":16}]}},{"key":"Checking or savings account","doc_count":19482,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Checking account","doc_count":14933,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":132,"interval_diff":{"value":-393}}]}},{"key":"Other banking product or service","doc_count":2609,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":16,"interval_diff":{"value":-54}}]}},{"key":"Savings account","doc_count":1370,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":6,"interval_diff":{"value":-44}}]}},{"key":"CD (Certificate of Deposit)","doc_count":562,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":6,"interval_diff":{"value":-10}}]}},{"key":"Personal line of credit","doc_count":8,"trend_period":{"buckets":[{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":0,"interval_diff":{"value":0}}]}}]},"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":114,"interval_diff":{"value":-46}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":160,"interval_diff":{"value":-501}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":661,"interval_diff":{"value":365}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":296,"interval_diff":{"value":-29}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":325,"interval_diff":{"value":-396}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":721,"interval_diff":{"value":-249}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":970,"interval_diff":{"value":-527}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":1497,"interval_diff":{"value":-317}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":1814,"interval_diff":{"value":72}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":1742,"interval_diff":{"value":-302}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2044,"interval_diff":{"value":217}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":1827,"interval_diff":{"value":26}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":1801,"interval_diff":{"value":-33}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1834,"interval_diff":{"value":126}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1708,"interval_diff":{"value":827}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":881,"interval_diff":{"value":439}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":442,"interval_diff":{"value":305}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":137,"interval_diff":{"value":7}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":130,"interval_diff":{"value":64}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":66,"interval_diff":{"value":45}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":21,"interval_diff":{"value":-10}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":31,"interval_diff":{"value":2}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":29,"interval_diff":{"value":-9}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":38,"interval_diff":{"value":9}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":29,"interval_diff":{"value":-8}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":37,"interval_diff":{"value":13}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":24,"interval_diff":{"value":20}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":4,"interval_diff":{"value":3}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":1,"interval_diff":{"value":-2}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":3,"interval_diff":{"value":-1}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":4,"interval_diff":{"value":0}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":4,"interval_diff":{"value":1}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":3,"interval_diff":{"value":-24}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":27,"interval_diff":{"value":-3}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":30,"interval_diff":{"value":3}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":27}]}}]}},"max_date":{"value":1592672400000,"value_as_string":"2020-06-20T12:00:00-05:00"},"issue":{"doc_count":248758,"issue":{"doc_count_error_upper_bound":1673,"sum_other_doc_count":93995,"buckets":[{"key":"Incorrect information on your report","doc_count":83110,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":741,"interval_diff":{"value":-980}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1721,"interval_diff":{"value":-1850}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":3571,"interval_diff":{"value":1497}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":2074,"interval_diff":{"value":430}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":1644,"interval_diff":{"value":-1210}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":2854,"interval_diff":{"value":-993}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":3847,"interval_diff":{"value":-2564}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":6411,"interval_diff":{"value":-1589}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":8000,"interval_diff":{"value":-336}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":8336,"interval_diff":{"value":-541}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":8877,"interval_diff":{"value":581}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":8296,"interval_diff":{"value":673}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":7623,"interval_diff":{"value":99}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":7524,"interval_diff":{"value":930}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":6594,"interval_diff":{"value":4061}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":2533,"interval_diff":{"value":1657}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":876,"interval_diff":{"value":505}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":371,"interval_diff":{"value":-11}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":382,"interval_diff":{"value":150}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":232,"interval_diff":{"value":158}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":74,"interval_diff":{"value":-11}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":85,"interval_diff":{"value":20}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":65,"interval_diff":{"value":-28}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":93,"interval_diff":{"value":34}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":59,"interval_diff":{"value":-10}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":69,"interval_diff":{"value":14}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":55,"interval_diff":{"value":46}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":9,"interval_diff":{"value":2}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":7,"interval_diff":{"value":1}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":6,"interval_diff":{"value":-2}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":8,"interval_diff":{"value":-4}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":12,"interval_diff":{"value":-5}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":17,"interval_diff":{"value":6}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":11,"interval_diff":{"value":-12}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":23,"interval_diff":{"value":13}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":10}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Information belongs to someone else","doc_count":52596,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1280,"interval_diff":{"value":-1246}}]}},{"key":"Account status incorrect","doc_count":10319,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":139,"interval_diff":{"value":-261}}]}},{"key":"Account information incorrect","doc_count":9881,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":157,"interval_diff":{"value":-183}}]}},{"key":"Personal information incorrect","doc_count":3854,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":62,"interval_diff":{"value":-39}}]}},{"key":"Public record information inaccurate","doc_count":2347,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":21,"interval_diff":{"value":-47}}]}},{"key":"Old information reappears or never goes away","doc_count":2172,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":18,"interval_diff":{"value":-55}}]}},{"key":"Information is missing that should be on the report","doc_count":1350,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":25,"interval_diff":{"value":-24}}]}},{"key":"Information is incorrect","doc_count":173,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":4,"interval_diff":{"value":3}}]}},{"key":"Information that should be on the report is missing","doc_count":37,"trend_period":{"buckets":[{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":2,"interval_diff":{"value":2}}]}}]}},{"key":"Problem with a credit reporting company's investigation into an existing problem","doc_count":28350,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":217,"interval_diff":{"value":-275}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":492,"interval_diff":{"value":-665}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":1157,"interval_diff":{"value":538}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":619,"interval_diff":{"value":158}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":461,"interval_diff":{"value":-341}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":802,"interval_diff":{"value":-471}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":1273,"interval_diff":{"value":-783}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":2056,"interval_diff":{"value":-768}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":2824,"interval_diff":{"value":378}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":2446,"interval_diff":{"value":-399}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2845,"interval_diff":{"value":-138}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":2983,"interval_diff":{"value":99}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":2884,"interval_diff":{"value":234}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":2650,"interval_diff":{"value":132}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":2518,"interval_diff":{"value":1445}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":1073,"interval_diff":{"value":686}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":387,"interval_diff":{"value":251}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":136,"interval_diff":{"value":-91}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":227,"interval_diff":{"value":160}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":67,"interval_diff":{"value":48}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":19,"interval_diff":{"value":-29}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":48,"interval_diff":{"value":30}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":18,"interval_diff":{"value":-6}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":24,"interval_diff":{"value":-6}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":30,"interval_diff":{"value":0}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":30,"interval_diff":{"value":7}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":23,"interval_diff":{"value":20}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":3,"interval_diff":{"value":-3}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":6,"interval_diff":{"value":4}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":2,"interval_diff":{"value":-2}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":4,"interval_diff":{"value":0}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":4,"interval_diff":{"value":-5}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":9,"interval_diff":{"value":3}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":6,"interval_diff":{"value":2}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":4,"interval_diff":{"value":1}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":3}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Their investigation did not fix an error on your report","doc_count":20962,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":226,"interval_diff":{"value":-462}}]}},{"key":"Investigation took more than 30 days","doc_count":2153,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":111,"interval_diff":{"value":-77}}]}},{"key":"Was not notified of investigation status or results","doc_count":2100,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":108,"interval_diff":{"value":-29}}]}},{"key":"Difficulty submitting a dispute or getting information about a dispute over the phone","doc_count":1758,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":27,"interval_diff":{"value":-63}}]}},{"key":"Problem with personal statement of dispute","doc_count":1220,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":17,"interval_diff":{"value":-32}}]}}]}},{"key":"Attempts to collect debt not owed","doc_count":20371,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":100,"interval_diff":{"value":-193}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":293,"interval_diff":{"value":-561}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":854,"interval_diff":{"value":417}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":437,"interval_diff":{"value":92}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":345,"interval_diff":{"value":-204}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":549,"interval_diff":{"value":-374}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":923,"interval_diff":{"value":-812}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":1735,"interval_diff":{"value":-183}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":1918,"interval_diff":{"value":-41}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":1959,"interval_diff":{"value":-76}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2035,"interval_diff":{"value":109}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":1926,"interval_diff":{"value":-93}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":2019,"interval_diff":{"value":80}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1939,"interval_diff":{"value":119}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1820,"interval_diff":{"value":1071}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":749,"interval_diff":{"value":536}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":213,"interval_diff":{"value":142}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":71,"interval_diff":{"value":-10}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":81,"interval_diff":{"value":33}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":48,"interval_diff":{"value":4}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":44,"interval_diff":{"value":10}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":34,"interval_diff":{"value":0}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":34,"interval_diff":{"value":-10}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":44,"interval_diff":{"value":-6}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":50,"interval_diff":{"value":2}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":48,"interval_diff":{"value":28}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":20,"interval_diff":{"value":9}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":11,"interval_diff":{"value":2}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":9,"interval_diff":{"value":2}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":7,"interval_diff":{"value":-4}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":11,"interval_diff":{"value":2}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":9,"interval_diff":{"value":-7}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":16,"interval_diff":{"value":7}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":9,"interval_diff":{"value":1}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":8,"interval_diff":{"value":5}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":3}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Debt is not yours","doc_count":9807,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":146,"interval_diff":{"value":-262}}]}},{"key":"Debt was result of identity theft","doc_count":5829,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":72,"interval_diff":{"value":-200}}]}},{"key":"Debt was paid","doc_count":3967,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":64,"interval_diff":{"value":-83}}]}},{"key":"Debt was already discharged in bankruptcy and is no longer owed","doc_count":768,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":11,"interval_diff":{"value":-16}}]}}]}},{"key":"Managing an account","doc_count":12534,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":79,"interval_diff":{"value":-27}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":106,"interval_diff":{"value":-305}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":411,"interval_diff":{"value":235}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":176,"interval_diff":{"value":-17}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":193,"interval_diff":{"value":-296}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":489,"interval_diff":{"value":-137}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":626,"interval_diff":{"value":-336}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":962,"interval_diff":{"value":-198}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":1160,"interval_diff":{"value":83}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":1077,"interval_diff":{"value":-234}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":1311,"interval_diff":{"value":158}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":1153,"interval_diff":{"value":-29}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":1182,"interval_diff":{"value":4}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1178,"interval_diff":{"value":54}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1124,"interval_diff":{"value":545}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":579,"interval_diff":{"value":281}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":298,"interval_diff":{"value":209}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":89,"interval_diff":{"value":3}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":86,"interval_diff":{"value":46}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":40,"interval_diff":{"value":23}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":17,"interval_diff":{"value":-3}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":20,"interval_diff":{"value":3}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":17,"interval_diff":{"value":-13}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":30,"interval_diff":{"value":9}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":21,"interval_diff":{"value":-5}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":26,"interval_diff":{"value":7}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":19,"interval_diff":{"value":16}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":3,"interval_diff":{"value":3}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":0,"interval_diff":{"value":-2}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":2,"interval_diff":{"value":-2}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":4,"interval_diff":{"value":3}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":1,"interval_diff":{"value":-1}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":2,"interval_diff":{"value":-16}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":18,"interval_diff":{"value":0}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":18,"interval_diff":{"value":1}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":17}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Deposits and withdrawals","doc_count":4412,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":40,"interval_diff":{"value":-112}}]}},{"key":"Problem using a debit or ATM card","doc_count":2154,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":17,"interval_diff":{"value":-45}}]}},{"key":"Banking errors","doc_count":1550,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":9,"interval_diff":{"value":-43}}]}},{"key":"Funds not handled or disbursed as instructed","doc_count":1274,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":9,"interval_diff":{"value":-29}}]}},{"key":"Fee problem","doc_count":1046,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":5,"interval_diff":{"value":-22}}]}},{"key":"Problem accessing account","doc_count":824,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":13,"interval_diff":{"value":-23}}]}},{"key":"Problem making or receiving payments","doc_count":644,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":10,"interval_diff":{"value":-18}}]}},{"key":"Cashing a check","doc_count":461,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":2,"interval_diff":{"value":-10}}]}},{"key":"Deposits or withdrawals","doc_count":112,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1,"interval_diff":{"value":0}}]}},{"key":"Problem with renewal","doc_count":36,"trend_period":{"buckets":[{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":1,"interval_diff":{"value":1}}]}},{"key":"Problem with fees or penalties","doc_count":21,"trend_period":{"buckets":[{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":0,"interval_diff":{"value":-1}}]}}]}},{"key":"Improper use of your report","doc_count":10398,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":53,"interval_diff":{"value":-77}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":130,"interval_diff":{"value":-139}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":269,"interval_diff":{"value":96}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":173,"interval_diff":{"value":10}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":163,"interval_diff":{"value":-92}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":255,"interval_diff":{"value":-128}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":383,"interval_diff":{"value":-312}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":695,"interval_diff":{"value":-179}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":874,"interval_diff":{"value":-46}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":920,"interval_diff":{"value":-430}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":1350,"interval_diff":{"value":81}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":1269,"interval_diff":{"value":346}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":923,"interval_diff":{"value":-278}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1201,"interval_diff":{"value":254}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":947,"interval_diff":{"value":543}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":404,"interval_diff":{"value":281}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":123,"interval_diff":{"value":67}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":56,"interval_diff":{"value":12}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":44,"interval_diff":{"value":6}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":38,"interval_diff":{"value":23}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":15,"interval_diff":{"value":2}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":13,"interval_diff":{"value":-1}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":14,"interval_diff":{"value":-1}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":15,"interval_diff":{"value":2}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":13,"interval_diff":{"value":1}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":12,"interval_diff":{"value":1}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":11,"interval_diff":{"value":7}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":4,"interval_diff":{"value":4}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":0,"interval_diff":{"value":0}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":0,"interval_diff":{"value":0}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":0,"interval_diff":{"value":-3}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":3,"interval_diff":{"value":-4}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":7,"interval_diff":{"value":-10}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":17,"interval_diff":{"value":15}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":2,"interval_diff":{"value":0}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":2}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Credit inquiries on your report that you don't recognize","doc_count":8046,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":85,"interval_diff":{"value":-95}}]}},{"key":"Reporting company used your report improperly","doc_count":2118,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":42,"interval_diff":{"value":-39}}]}},{"key":"Received unsolicited financial product or insurance offers after opting out","doc_count":107,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":2,"interval_diff":{"value":-1}}]}},{"key":"Report provided to employer without your written authorization","doc_count":84,"trend_period":{"buckets":[{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":0,"interval_diff":{"value":-1}}]}}]}}]}},"min_date":{"value":1323795600000,"value_as_string":"2011-12-13T12:00:00-05:00"},"dateRangeArea":{"doc_count":248758,"dateRangeArea":{"buckets":[{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":100},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":141},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":125},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":112},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":57},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":60},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":47},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":56},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":60},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":285},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":377},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":304},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":370},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":270},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":332},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":345},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":714},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":1266},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":1235},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":3496},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":9609},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":21574},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":23364},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":23273},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":24999},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":25920},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":23346},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":23738},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":19086},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":11444},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":7860},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":4273},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":5224},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":9995},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":3720},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1581}]}},"tags":{"doc_count":248758,"tags":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Servicemember","doc_count":20155,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":103,"interval_diff":{"value":-158}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":261,"interval_diff":{"value":-565}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":826,"interval_diff":{"value":436}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":390,"interval_diff":{"value":69}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":321,"interval_diff":{"value":-260}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":581,"interval_diff":{"value":-276}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":857,"interval_diff":{"value":-785}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":1642,"interval_diff":{"value":-277}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":1919,"interval_diff":{"value":-127}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":2046,"interval_diff":{"value":85}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":1961,"interval_diff":{"value":108}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":1853,"interval_diff":{"value":-128}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":1981,"interval_diff":{"value":115}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1866,"interval_diff":{"value":51}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1815,"interval_diff":{"value":938}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":877,"interval_diff":{"value":535}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":342,"interval_diff":{"value":231}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":111,"interval_diff":{"value":-7}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":118,"interval_diff":{"value":76}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":42,"interval_diff":{"value":18}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":24,"interval_diff":{"value":8}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":16,"interval_diff":{"value":-16}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":32,"interval_diff":{"value":-6}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":38,"interval_diff":{"value":11}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":27,"interval_diff":{"value":0}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":27,"interval_diff":{"value":4}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":23,"interval_diff":{"value":17}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":6,"interval_diff":{"value":-1}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":7,"interval_diff":{"value":5}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":2,"interval_diff":{"value":-4}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":6,"interval_diff":{"value":2}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":4,"interval_diff":{"value":-8}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":12,"interval_diff":{"value":9}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":3,"interval_diff":{"value":-7}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":10,"interval_diff":{"value":4}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":6}]}},{"key":"Older American","doc_count":9804,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":35,"interval_diff":{"value":-68}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":103,"interval_diff":{"value":-219}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":322,"interval_diff":{"value":143}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":179,"interval_diff":{"value":-12}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":191,"interval_diff":{"value":-174}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":365,"interval_diff":{"value":-133}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":498,"interval_diff":{"value":-223}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":721,"interval_diff":{"value":-178}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":899,"interval_diff":{"value":-40}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":939,"interval_diff":{"value":-95}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":1034,"interval_diff":{"value":105}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":929,"interval_diff":{"value":-2}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":931,"interval_diff":{"value":-5}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":936,"interval_diff":{"value":-11}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":947,"interval_diff":{"value":497}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":450,"interval_diff":{"value":299}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":151,"interval_diff":{"value":98}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":53,"interval_diff":{"value":20}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":33,"interval_diff":{"value":18}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":15,"interval_diff":{"value":7}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":8,"interval_diff":{"value":-1}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":9,"interval_diff":{"value":0}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":9,"interval_diff":{"value":-3}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":12,"interval_diff":{"value":7}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":5,"interval_diff":{"value":0}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":5,"interval_diff":{"value":-2}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":7,"interval_diff":{"value":5}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":2,"interval_diff":{"value":0}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":2,"interval_diff":{"value":0}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":2,"interval_diff":{"value":-2}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":4,"interval_diff":{"value":3}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":1,"interval_diff":{"value":-3}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":4,"interval_diff":{"value":4}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":0,"interval_diff":{"value":-2}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":2,"interval_diff":{"value":1}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":1}]}},{"key":"Older American, Servicemember","doc_count":3007,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":11,"interval_diff":{"value":-9}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":20,"interval_diff":{"value":-85}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":105,"interval_diff":{"value":46}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":59,"interval_diff":{"value":2}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":57,"interval_diff":{"value":-46}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":103,"interval_diff":{"value":-25}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":128,"interval_diff":{"value":-90}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":218,"interval_diff":{"value":-76}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":294,"interval_diff":{"value":16}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":278,"interval_diff":{"value":-31}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":309,"interval_diff":{"value":-10}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":319,"interval_diff":{"value":20}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":299,"interval_diff":{"value":1}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":298,"interval_diff":{"value":35}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":263,"interval_diff":{"value":124}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":139,"interval_diff":{"value":83}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":56,"interval_diff":{"value":45}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":11,"interval_diff":{"value":-3}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":14,"interval_diff":{"value":11}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":3,"interval_diff":{"value":2}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":1,"interval_diff":{"value":-2}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":3,"interval_diff":{"value":-1}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":4,"interval_diff":{"value":2}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":2,"interval_diff":{"value":0}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":2,"interval_diff":{"value":0}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":2,"interval_diff":{"value":-1}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":3,"interval_diff":{"value":2}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":1,"interval_diff":{"value":1}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":0,"interval_diff":{"value":-1}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":1,"interval_diff":{"value":1}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":0,"interval_diff":{"value":0}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":0,"interval_diff":{"value":-3}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":3,"interval_diff":{"value":2}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":1}]}}]}}}
diff --git a/src/reducers/__fixtures__/trendsAggsDupeResults.jsx b/src/reducers/__fixtures__/trendsAggsDupeResults.jsx
index 7502d9f60..3d92a5547 100644
--- a/src/reducers/__fixtures__/trendsAggsDupeResults.jsx
+++ b/src/reducers/__fixtures__/trendsAggsDupeResults.jsx
@@ -1,2 +1,1608 @@
-export default { "activeCall": "", "chartType": "line", "colorMap": { "Incorrect information on your report": "#2cb34a", "Problem with a credit reporting company's investigation into an existing problem": "#addc91", "Attempts to collect debt not owed": "#257675", "Managing an account": "#9ec4c3", "Improper use of your report": "#0072ce", "Complaints": "#ADDC91", "Other": "#a2a3a4" }, "error": false, "expandedTrends": [], "filterNames": [ "Credit reporting, credit repair services, or other personal consumer reports", "Debt collection", "Credit card or prepaid card", "Mortgage", "Checking or savings account", "Incorrect information on your report", "Problem with a credit reporting company's investigation into an existing problem", "Attempts to collect debt not owed", "Managing an account", "Improper use of your report", "Bank account or service", "Incorrect information on credit report" ], "focus": "", "isLoading": false, "lastDate": "2020-05-01T00:00:00.000Z", "lens": "Overview", "results": { "dateRangeArea": [ { "name": "Other", "value": 9185, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Other", "value": 10444, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Other", "value": 2174, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Incorrect information on your report", "value": 12463, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Incorrect information on your report", "value": 15459, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Incorrect information on your report", "value": 5095, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 3508, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 4445, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 1354, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Attempts to collect debt not owed", "value": 2320, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Attempts to collect debt not owed", "value": 2457, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Attempts to collect debt not owed", "value": 593, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Managing an account", "value": 1050, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Managing an account", "value": 1274, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Managing an account", "value": 248, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Improper use of your report", "value": 980, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Improper use of your report", "value": 1033, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Improper use of your report", "value": 357, "date": new Date("2020-05-01T00:00:00.000Z") } ], "dateRangeBrush": [ { "date": new Date("2011-12-01T00:00:00.000Z"), "value": 2536 }, { "date": new Date("2012-01-01T00:00:00.000Z"), "value": 3230 }, { "date": new Date("2012-02-01T00:00:00.000Z"), "value": 3509 }, { "date": new Date("2012-03-01T00:00:00.000Z"), "value": 6230 }, { "date": new Date("2012-04-01T00:00:00.000Z"), "value": 5703 }, { "date": new Date("2012-05-01T00:00:00.000Z"), "value": 7617 }, { "date": new Date("2012-06-01T00:00:00.000Z"), "value": 7841 }, { "date": new Date("2012-07-01T00:00:00.000Z"), "value": 6755 }, { "date": new Date("2012-08-01T00:00:00.000Z"), "value": 6877 }, { "date": new Date("2012-09-01T00:00:00.000Z"), "value": 5493 }, { "date": new Date("2012-10-01T00:00:00.000Z"), "value": 6741 }, { "date": new Date("2012-11-01T00:00:00.000Z"), "value": 6139 }, { "date": new Date("2012-12-01T00:00:00.000Z"), "value": 6238 }, { "date": new Date("2013-01-01T00:00:00.000Z"), "value": 9741 }, { "date": new Date("2013-02-01T00:00:00.000Z"), "value": 8349 }, { "date": new Date("2013-03-01T00:00:00.000Z"), "value": 8784 }, { "date": new Date("2013-04-01T00:00:00.000Z"), "value": 8632 }, { "date": new Date("2013-05-01T00:00:00.000Z"), "value": 8170 }, { "date": new Date("2013-06-01T00:00:00.000Z"), "value": 8035 }, { "date": new Date("2013-07-01T00:00:00.000Z"), "value": 9271 }, { "date": new Date("2013-08-01T00:00:00.000Z"), "value": 9565 }, { "date": new Date("2013-09-01T00:00:00.000Z"), "value": 9636 }, { "date": new Date("2013-10-01T00:00:00.000Z"), "value": 9241 }, { "date": new Date("2013-11-01T00:00:00.000Z"), "value": 9319 }, { "date": new Date("2013-12-01T00:00:00.000Z"), "value": 9474 }, { "date": new Date("2014-01-01T00:00:00.000Z"), "value": 12617 }, { "date": new Date("2014-02-01T00:00:00.000Z"), "value": 13048 }, { "date": new Date("2014-03-01T00:00:00.000Z"), "value": 13943 }, { "date": new Date("2014-04-01T00:00:00.000Z"), "value": 13840 }, { "date": new Date("2014-05-01T00:00:00.000Z"), "value": 12167 }, { "date": new Date("2014-06-01T00:00:00.000Z"), "value": 12520 }, { "date": new Date("2014-07-01T00:00:00.000Z"), "value": 13415 }, { "date": new Date("2014-08-01T00:00:00.000Z"), "value": 13186 }, { "date": new Date("2014-09-01T00:00:00.000Z"), "value": 12465 }, { "date": new Date("2014-10-01T00:00:00.000Z"), "value": 12901 }, { "date": new Date("2014-11-01T00:00:00.000Z"), "value": 11257 }, { "date": new Date("2014-12-01T00:00:00.000Z"), "value": 11684 }, { "date": new Date("2015-01-01T00:00:00.000Z"), "value": 12627 }, { "date": new Date("2015-02-01T00:00:00.000Z"), "value": 12680 }, { "date": new Date("2015-03-01T00:00:00.000Z"), "value": 14514 }, { "date": new Date("2015-04-01T00:00:00.000Z"), "value": 13753 }, { "date": new Date("2015-05-01T00:00:00.000Z"), "value": 13682 }, { "date": new Date("2015-06-01T00:00:00.000Z"), "value": 14517 }, { "date": new Date("2015-07-01T00:00:00.000Z"), "value": 15920 }, { "date": new Date("2015-08-01T00:00:00.000Z"), "value": 15766 }, { "date": new Date("2015-09-01T00:00:00.000Z"), "value": 14336 }, { "date": new Date("2015-10-01T00:00:00.000Z"), "value": 14899 }, { "date": new Date("2015-11-01T00:00:00.000Z"), "value": 12897 }, { "date": new Date("2015-12-01T00:00:00.000Z"), "value": 12884 }, { "date": new Date("2016-01-01T00:00:00.000Z"), "value": 13840 }, { "date": new Date("2016-02-01T00:00:00.000Z"), "value": 14140 }, { "date": new Date("2016-03-01T00:00:00.000Z"), "value": 16611 }, { "date": new Date("2016-04-01T00:00:00.000Z"), "value": 15608 }, { "date": new Date("2016-05-01T00:00:00.000Z"), "value": 15517 }, { "date": new Date("2016-06-01T00:00:00.000Z"), "value": 16063 }, { "date": new Date("2016-07-01T00:00:00.000Z"), "value": 16043 }, { "date": new Date("2016-08-01T00:00:00.000Z"), "value": 17694 }, { "date": new Date("2016-09-01T00:00:00.000Z"), "value": 17584 }, { "date": new Date("2016-10-01T00:00:00.000Z"), "value": 17820 }, { "date": new Date("2016-11-01T00:00:00.000Z"), "value": 15207 }, { "date": new Date("2016-12-01T00:00:00.000Z"), "value": 15341 }, { "date": new Date("2017-01-01T00:00:00.000Z"), "value": 21006 }, { "date": new Date("2017-02-01T00:00:00.000Z"), "value": 18110 }, { "date": new Date("2017-03-01T00:00:00.000Z"), "value": 19762 }, { "date": new Date("2017-04-01T00:00:00.000Z"), "value": 18544 }, { "date": new Date("2017-05-01T00:00:00.000Z"), "value": 19305 }, { "date": new Date("2017-06-01T00:00:00.000Z"), "value": 18567 }, { "date": new Date("2017-07-01T00:00:00.000Z"), "value": 20433 }, { "date": new Date("2017-08-01T00:00:00.000Z"), "value": 21402 }, { "date": new Date("2017-09-01T00:00:00.000Z"), "value": 27357 }, { "date": new Date("2017-10-01T00:00:00.000Z"), "value": 20456 }, { "date": new Date("2017-11-01T00:00:00.000Z"), "value": 18990 }, { "date": new Date("2017-12-01T00:00:00.000Z"), "value": 19034 }, { "date": new Date("2018-01-01T00:00:00.000Z"), "value": 23651 }, { "date": new Date("2018-02-01T00:00:00.000Z"), "value": 21978 }, { "date": new Date("2018-03-01T00:00:00.000Z"), "value": 23640 }, { "date": new Date("2018-04-01T00:00:00.000Z"), "value": 24327 }, { "date": new Date("2018-05-01T00:00:00.000Z"), "value": 22339 }, { "date": new Date("2018-06-01T00:00:00.000Z"), "value": 20111 }, { "date": new Date("2018-07-01T00:00:00.000Z"), "value": 20963 }, { "date": new Date("2018-08-01T00:00:00.000Z"), "value": 21726 }, { "date": new Date("2018-09-01T00:00:00.000Z"), "value": 19072 }, { "date": new Date("2018-10-01T00:00:00.000Z"), "value": 21903 }, { "date": new Date("2018-11-01T00:00:00.000Z"), "value": 19053 }, { "date": new Date("2018-12-01T00:00:00.000Z"), "value": 18552 }, { "date": new Date("2019-01-01T00:00:00.000Z"), "value": 18934 }, { "date": new Date("2019-02-01T00:00:00.000Z"), "value": 20206 }, { "date": new Date("2019-03-01T00:00:00.000Z"), "value": 23412 }, { "date": new Date("2019-04-01T00:00:00.000Z"), "value": 22915 }, { "date": new Date("2019-05-01T00:00:00.000Z"), "value": 23850 }, { "date": new Date("2019-06-01T00:00:00.000Z"), "value": 23352 }, { "date": new Date("2019-07-01T00:00:00.000Z"), "value": 25090 }, { "date": new Date("2019-08-01T00:00:00.000Z"), "value": 26059 }, { "date": new Date("2019-09-01T00:00:00.000Z"), "value": 23575 }, { "date": new Date("2019-10-01T00:00:00.000Z"), "value": 25636 }, { "date": new Date("2019-11-01T00:00:00.000Z"), "value": 22659 }, { "date": new Date("2019-12-01T00:00:00.000Z"), "value": 21704 }, { "date": new Date("2020-01-01T00:00:00.000Z"), "value": 26413 }, { "date": new Date("2020-02-01T00:00:00.000Z"), "value": 25096 }, { "date": new Date("2020-03-01T00:00:00.000Z"), "value": 29506 }, { "date": new Date("2020-04-01T00:00:00.000Z"), "value": 35112 }, { "date": new Date("2020-05-01T00:00:00.000Z"), "value": 9821 } ], "dateRangeLine": { "dataByTopic": [ { "topic": "Complaints", "topicName": "Complaints", "dashed": false, "show": true, "dates": [ { "date": "2012-06-01T00:00:00.000Z", "value": 47 }, { "date": "2012-07-01T00:00:00.000Z", "value": 6755 }, { "date": "2012-08-01T00:00:00.000Z", "value": 6877 }, { "date": "2012-09-01T00:00:00.000Z", "value": 5493 }, { "date": "2012-10-01T00:00:00.000Z", "value": 6741 }, { "date": "2012-11-01T00:00:00.000Z", "value": 6139 }, { "date": "2012-12-01T00:00:00.000Z", "value": 6238 }, { "date": "2013-01-01T00:00:00.000Z", "value": 9741 }, { "date": "2013-02-01T00:00:00.000Z", "value": 8349 }, { "date": "2013-03-01T00:00:00.000Z", "value": 8784 }, { "date": "2013-04-01T00:00:00.000Z", "value": 8632 }, { "date": "2013-05-01T00:00:00.000Z", "value": 8170 }, { "date": "2013-06-01T00:00:00.000Z", "value": 8035 }, { "date": "2013-07-01T00:00:00.000Z", "value": 9271 }, { "date": "2013-08-01T00:00:00.000Z", "value": 9565 }, { "date": "2013-09-01T00:00:00.000Z", "value": 9636 }, { "date": "2013-10-01T00:00:00.000Z", "value": 9241 }, { "date": "2013-11-01T00:00:00.000Z", "value": 9319 }, { "date": "2013-12-01T00:00:00.000Z", "value": 9474 }, { "date": "2014-01-01T00:00:00.000Z", "value": 12617 }, { "date": "2014-02-01T00:00:00.000Z", "value": 13048 }, { "date": "2014-03-01T00:00:00.000Z", "value": 13943 }, { "date": "2014-04-01T00:00:00.000Z", "value": 13840 }, { "date": "2014-05-01T00:00:00.000Z", "value": 12167 }, { "date": "2014-06-01T00:00:00.000Z", "value": 12520 }, { "date": "2014-07-01T00:00:00.000Z", "value": 13415 }, { "date": "2014-08-01T00:00:00.000Z", "value": 13186 }, { "date": "2014-09-01T00:00:00.000Z", "value": 12465 }, { "date": "2014-10-01T00:00:00.000Z", "value": 12901 }, { "date": "2014-11-01T00:00:00.000Z", "value": 11257 }, { "date": "2014-12-01T00:00:00.000Z", "value": 11684 }, { "date": "2015-01-01T00:00:00.000Z", "value": 12627 }, { "date": "2015-02-01T00:00:00.000Z", "value": 12680 }, { "date": "2015-03-01T00:00:00.000Z", "value": 14514 }, { "date": "2015-04-01T00:00:00.000Z", "value": 13753 }, { "date": "2015-05-01T00:00:00.000Z", "value": 13682 }, { "date": "2015-06-01T00:00:00.000Z", "value": 14517 }, { "date": "2015-07-01T00:00:00.000Z", "value": 15920 }, { "date": "2015-08-01T00:00:00.000Z", "value": 15766 }, { "date": "2015-09-01T00:00:00.000Z", "value": 14336 }, { "date": "2015-10-01T00:00:00.000Z", "value": 14899 }, { "date": "2015-11-01T00:00:00.000Z", "value": 12897 }, { "date": "2015-12-01T00:00:00.000Z", "value": 12884 }, { "date": "2016-01-01T00:00:00.000Z", "value": 13840 }, { "date": "2016-02-01T00:00:00.000Z", "value": 14140 }, { "date": "2016-03-01T00:00:00.000Z", "value": 16611 }, { "date": "2016-04-01T00:00:00.000Z", "value": 15608 }, { "date": "2016-05-01T00:00:00.000Z", "value": 15517 }, { "date": "2016-06-01T00:00:00.000Z", "value": 16063 }, { "date": "2016-07-01T00:00:00.000Z", "value": 16043 }, { "date": "2016-08-01T00:00:00.000Z", "value": 17694 }, { "date": "2016-09-01T00:00:00.000Z", "value": 17584 }, { "date": "2016-10-01T00:00:00.000Z", "value": 17820 }, { "date": "2016-11-01T00:00:00.000Z", "value": 15207 }, { "date": "2016-12-01T00:00:00.000Z", "value": 15341 }, { "date": "2017-01-01T00:00:00.000Z", "value": 21006 }, { "date": "2017-02-01T00:00:00.000Z", "value": 18110 }, { "date": "2017-03-01T00:00:00.000Z", "value": 19762 }, { "date": "2017-04-01T00:00:00.000Z", "value": 18544 }, { "date": "2017-05-01T00:00:00.000Z", "value": 19305 }, { "date": "2017-06-01T00:00:00.000Z", "value": 18567 }, { "date": "2017-07-01T00:00:00.000Z", "value": 20433 }, { "date": "2017-08-01T00:00:00.000Z", "value": 21402 }, { "date": "2017-09-01T00:00:00.000Z", "value": 27357 }, { "date": "2017-10-01T00:00:00.000Z", "value": 20456 }, { "date": "2017-11-01T00:00:00.000Z", "value": 18990 }, { "date": "2017-12-01T00:00:00.000Z", "value": 19034 }, { "date": "2018-01-01T00:00:00.000Z", "value": 23651 }, { "date": "2018-02-01T00:00:00.000Z", "value": 21978 }, { "date": "2018-03-01T00:00:00.000Z", "value": 23640 }, { "date": "2018-04-01T00:00:00.000Z", "value": 24327 }, { "date": "2018-05-01T00:00:00.000Z", "value": 22339 }, { "date": "2018-06-01T00:00:00.000Z", "value": 20111 }, { "date": "2018-07-01T00:00:00.000Z", "value": 20963 }, { "date": "2018-08-01T00:00:00.000Z", "value": 21726 }, { "date": "2018-09-01T00:00:00.000Z", "value": 19072 }, { "date": "2018-10-01T00:00:00.000Z", "value": 21903 }, { "date": "2018-11-01T00:00:00.000Z", "value": 19053 }, { "date": "2018-12-01T00:00:00.000Z", "value": 18552 }, { "date": "2019-01-01T00:00:00.000Z", "value": 18934 }, { "date": "2019-02-01T00:00:00.000Z", "value": 20206 }, { "date": "2019-03-01T00:00:00.000Z", "value": 23412 }, { "date": "2019-04-01T00:00:00.000Z", "value": 22915 }, { "date": "2019-05-01T00:00:00.000Z", "value": 23850 }, { "date": "2019-06-01T00:00:00.000Z", "value": 23352 }, { "date": "2019-07-01T00:00:00.000Z", "value": 25090 }, { "date": "2019-08-01T00:00:00.000Z", "value": 26059 }, { "date": "2019-09-01T00:00:00.000Z", "value": 23575 }, { "date": "2019-10-01T00:00:00.000Z", "value": 25636 }, { "date": "2019-11-01T00:00:00.000Z", "value": 22659 }, { "date": "2019-12-01T00:00:00.000Z", "value": 21704 }, { "date": "2020-01-01T00:00:00.000Z", "value": 26413 }, { "date": "2020-02-01T00:00:00.000Z", "value": 25096 }, { "date": "2020-03-01T00:00:00.000Z", "value": 29506 }, { "date": "2020-04-01T00:00:00.000Z", "value": 35112 }, { "date": "2020-05-01T00:00:00.000Z", "value": 1366 } ] } ] }, "issue": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Incorrect information on your report", "value": 247706, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information belongs to someone else", "value": 135795, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account status incorrect", "value": 39240, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account information incorrect", "value": 35733, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Personal information incorrect", "value": 11632, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Public record information inaccurate", "value": 9279, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Old information reappears or never goes away", "value": 9275, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information is missing that should be on the report", "value": 4492, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information is incorrect", "value": 684, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information that should be on the report is missing", "value": 115, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Incorrect information on your report ", "value": 1, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Incorrect information on credit report", "value": 102686, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account status", "value": 37057, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information is not mine", "value": 32384, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account terms", "value": 10995, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Public record", "value": 8876, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Personal information", "value": 7529, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Reinserted previously deleted info", "value": 5845, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Loan modification,collection,foreclosure", "value": 101564, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 87778, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Their investigation did not fix an error on your report", "value": 63190, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Investigation took more than 30 days", "value": 7222, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Was not notified of investigation status or results", "value": 6586, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Difficulty submitting a dispute or getting information about a dispute over the phone", "value": 5998, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem with personal statement of dispute", "value": 4377, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Loan servicing, payments, escrow account", "value": 72149, "parent": false, "visible": true, "width": 0.5 } ], "product": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 391362, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit reporting", "value": 384867, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other personal consumer report", "value": 5194, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit repair services", "value": 1300, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Conventional home mortgage", "value": 1, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Debt collection", "value": 292541, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "I do not know", "value": 61041, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other (i.e. phone, health club, etc.)", "value": 44543, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other debt", "value": 43411, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit card debt", "value": 31279, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit card", "value": 28698, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Medical debt", "value": 23573, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Medical", "value": 21187, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Payday loan", "value": 7562, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Mortgage", "value": 4809, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Auto debt", "value": 4769, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Payday loan debt", "value": 4501, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Auto", "value": 3755, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Mortgage debt", "value": 3324, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Non-federal student loan", "value": 2881, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Federal student loan debt", "value": 2486, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Federal student loan", "value": 2475, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Private student loan debt", "value": 2247, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Mortgage ", "value": 281996, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other mortgage", "value": 76865, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Conventional fixed mortgage", "value": 65380, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Conventional home mortgage ", "value": 43558, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "FHA mortgage", "value": 34035, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Conventional adjustable mortgage (ARM)", "value": 23400, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Home equity loan or line of credit", "value": 10808, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other type of mortgage", "value": 10594, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "VA mortgage", "value": 8839, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Home equity loan or line of credit (HELOC)", "value": 4892, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Reverse mortgage", "value": 3119, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Second mortgage", "value": 506, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Credit reporting ", "value": 140432, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Bank account or service", "value": 80702, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Checking account", "value": 54713, "parent": "Bank account or service", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other bank product/service", "value": 17476, "parent": "Bank account or service", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Savings account", "value": 4914, "parent": "Bank account or service", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "(CD) Certificate of deposit", "value": 3024, "parent": "Bank account or service", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Cashing a check without an account", "value": 575, "parent": "Bank account or service", "visible": false, "width": 0.4 } ], "collections": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Servicemember", "value": 5172, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American", "value": 2352, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American, Servicemember", "value": 640, "parent": false, "visible": true, "width": 0.5 } ], "tags": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Servicemember", "value": 109650, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American", "value": 85620, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American, Servicemember", "value": 17831, "parent": false, "visible": true, "width": 0.5 } ] }, "subLens": "", "tooltip": false, "total": 1554659 }
-
+export default {
+    activeCall: '',
+    chartType: 'line',
+    colorMap: {
+      Complaints: '#ADDC91',
+      'All other products': '#a2a3a4',
+      'All other companies': '#a2a3a4',
+      'All other values': '#a2a3a4'
+    },
+    error: false,
+    expandedTrends: [],
+    filterNames: [
+      'Credit reporting, credit repair services, or other personal consumer reports',
+      'Mortgage',
+      'Debt collection',
+      'Incorrect information on your report',
+      'Incorrect information on credit report',
+      'Problem with a credit reporting company\'s investigation into an existing problem'
+    ],
+    focus: '',
+    isLoading: false,
+    lastDate: '2020-07-01T00:00:00.000Z',
+    lens: 'Overview',
+    results: {
+      dateRangeArea: [],
+      dateRangeBrush: [
+        {
+          date: '2011-12-01T00:00:00.000Z',
+          value: 2536
+        },
+        {
+          date: '2012-01-01T00:00:00.000Z',
+          value: 3230
+        },
+        {
+          date: '2012-02-01T00:00:00.000Z',
+          value: 3509
+        },
+        {
+          date: '2012-03-01T00:00:00.000Z',
+          value: 6230
+        },
+        {
+          date: '2012-04-01T00:00:00.000Z',
+          value: 5703
+        },
+        {
+          date: '2012-05-01T00:00:00.000Z',
+          value: 7617
+        },
+        {
+          date: '2012-06-01T00:00:00.000Z',
+          value: 7841
+        },
+        {
+          date: '2012-07-01T00:00:00.000Z',
+          value: 6755
+        },
+        {
+          date: '2012-08-01T00:00:00.000Z',
+          value: 6877
+        },
+        {
+          date: '2012-09-01T00:00:00.000Z',
+          value: 5493
+        },
+        {
+          date: '2012-10-01T00:00:00.000Z',
+          value: 6741
+        },
+        {
+          date: '2012-11-01T00:00:00.000Z',
+          value: 6139
+        },
+        {
+          date: '2012-12-01T00:00:00.000Z',
+          value: 6238
+        },
+        {
+          date: '2013-01-01T00:00:00.000Z',
+          value: 9741
+        },
+        {
+          date: '2013-02-01T00:00:00.000Z',
+          value: 8349
+        },
+        {
+          date: '2013-03-01T00:00:00.000Z',
+          value: 8784
+        },
+        {
+          date: '2013-04-01T00:00:00.000Z',
+          value: 8632
+        },
+        {
+          date: '2013-05-01T00:00:00.000Z',
+          value: 8170
+        },
+        {
+          date: '2013-06-01T00:00:00.000Z',
+          value: 8035
+        },
+        {
+          date: '2013-07-01T00:00:00.000Z',
+          value: 9271
+        },
+        {
+          date: '2013-08-01T00:00:00.000Z',
+          value: 9565
+        },
+        {
+          date: '2013-09-01T00:00:00.000Z',
+          value: 9636
+        },
+        {
+          date: '2013-10-01T00:00:00.000Z',
+          value: 9241
+        },
+        {
+          date: '2013-11-01T00:00:00.000Z',
+          value: 9319
+        },
+        {
+          date: '2013-12-01T00:00:00.000Z',
+          value: 9474
+        },
+        {
+          date: '2014-01-01T00:00:00.000Z',
+          value: 12617
+        },
+        {
+          date: '2014-02-01T00:00:00.000Z',
+          value: 13048
+        },
+        {
+          date: '2014-03-01T00:00:00.000Z',
+          value: 13943
+        },
+        {
+          date: '2014-04-01T00:00:00.000Z',
+          value: 13840
+        },
+        {
+          date: '2014-05-01T00:00:00.000Z',
+          value: 12167
+        },
+        {
+          date: '2014-06-01T00:00:00.000Z',
+          value: 12520
+        },
+        {
+          date: '2014-07-01T00:00:00.000Z',
+          value: 13415
+        },
+        {
+          date: '2014-08-01T00:00:00.000Z',
+          value: 13186
+        },
+        {
+          date: '2014-09-01T00:00:00.000Z',
+          value: 12465
+        },
+        {
+          date: '2014-10-01T00:00:00.000Z',
+          value: 12901
+        },
+        {
+          date: '2014-11-01T00:00:00.000Z',
+          value: 11257
+        },
+        {
+          date: '2014-12-01T00:00:00.000Z',
+          value: 11684
+        },
+        {
+          date: '2015-01-01T00:00:00.000Z',
+          value: 12627
+        },
+        {
+          date: '2015-02-01T00:00:00.000Z',
+          value: 12680
+        },
+        {
+          date: '2015-03-01T00:00:00.000Z',
+          value: 14514
+        },
+        {
+          date: '2015-04-01T00:00:00.000Z',
+          value: 13753
+        },
+        {
+          date: '2015-05-01T00:00:00.000Z',
+          value: 13682
+        },
+        {
+          date: '2015-06-01T00:00:00.000Z',
+          value: 14517
+        },
+        {
+          date: '2015-07-01T00:00:00.000Z',
+          value: 15920
+        },
+        {
+          date: '2015-08-01T00:00:00.000Z',
+          value: 15766
+        },
+        {
+          date: '2015-09-01T00:00:00.000Z',
+          value: 14336
+        },
+        {
+          date: '2015-10-01T00:00:00.000Z',
+          value: 14899
+        },
+        {
+          date: '2015-11-01T00:00:00.000Z',
+          value: 12897
+        },
+        {
+          date: '2015-12-01T00:00:00.000Z',
+          value: 12884
+        },
+        {
+          date: '2016-01-01T00:00:00.000Z',
+          value: 13840
+        },
+        {
+          date: '2016-02-01T00:00:00.000Z',
+          value: 14140
+        },
+        {
+          date: '2016-03-01T00:00:00.000Z',
+          value: 16611
+        },
+        {
+          date: '2016-04-01T00:00:00.000Z',
+          value: 15608
+        },
+        {
+          date: '2016-05-01T00:00:00.000Z',
+          value: 15517
+        },
+        {
+          date: '2016-06-01T00:00:00.000Z',
+          value: 16063
+        },
+        {
+          date: '2016-07-01T00:00:00.000Z',
+          value: 16043
+        },
+        {
+          date: '2016-08-01T00:00:00.000Z',
+          value: 17694
+        },
+        {
+          date: '2016-09-01T00:00:00.000Z',
+          value: 17584
+        },
+        {
+          date: '2016-10-01T00:00:00.000Z',
+          value: 17820
+        },
+        {
+          date: '2016-11-01T00:00:00.000Z',
+          value: 15207
+        },
+        {
+          date: '2016-12-01T00:00:00.000Z',
+          value: 15341
+        },
+        {
+          date: '2017-01-01T00:00:00.000Z',
+          value: 21006
+        },
+        {
+          date: '2017-02-01T00:00:00.000Z',
+          value: 18110
+        },
+        {
+          date: '2017-03-01T00:00:00.000Z',
+          value: 19762
+        },
+        {
+          date: '2017-04-01T00:00:00.000Z',
+          value: 18544
+        },
+        {
+          date: '2017-05-01T00:00:00.000Z',
+          value: 19304
+        },
+        {
+          date: '2017-06-01T00:00:00.000Z',
+          value: 18567
+        },
+        {
+          date: '2017-07-01T00:00:00.000Z',
+          value: 20433
+        },
+        {
+          date: '2017-08-01T00:00:00.000Z',
+          value: 21402
+        },
+        {
+          date: '2017-09-01T00:00:00.000Z',
+          value: 27357
+        },
+        {
+          date: '2017-10-01T00:00:00.000Z',
+          value: 20456
+        },
+        {
+          date: '2017-11-01T00:00:00.000Z',
+          value: 18990
+        },
+        {
+          date: '2017-12-01T00:00:00.000Z',
+          value: 19034
+        },
+        {
+          date: '2018-01-01T00:00:00.000Z',
+          value: 23650
+        },
+        {
+          date: '2018-02-01T00:00:00.000Z',
+          value: 21978
+        },
+        {
+          date: '2018-03-01T00:00:00.000Z',
+          value: 23639
+        },
+        {
+          date: '2018-04-01T00:00:00.000Z',
+          value: 24327
+        },
+        {
+          date: '2018-05-01T00:00:00.000Z',
+          value: 22339
+        },
+        {
+          date: '2018-06-01T00:00:00.000Z',
+          value: 20111
+        },
+        {
+          date: '2018-07-01T00:00:00.000Z',
+          value: 20963
+        },
+        {
+          date: '2018-08-01T00:00:00.000Z',
+          value: 21726
+        },
+        {
+          date: '2018-09-01T00:00:00.000Z',
+          value: 19072
+        },
+        {
+          date: '2018-10-01T00:00:00.000Z',
+          value: 21903
+        },
+        {
+          date: '2018-11-01T00:00:00.000Z',
+          value: 19053
+        },
+        {
+          date: '2018-12-01T00:00:00.000Z',
+          value: 18552
+        },
+        {
+          date: '2019-01-01T00:00:00.000Z',
+          value: 18934
+        },
+        {
+          date: '2019-02-01T00:00:00.000Z',
+          value: 20206
+        },
+        {
+          date: '2019-03-01T00:00:00.000Z',
+          value: 23412
+        },
+        {
+          date: '2019-04-01T00:00:00.000Z',
+          value: 22915
+        },
+        {
+          date: '2019-05-01T00:00:00.000Z',
+          value: 23850
+        },
+        {
+          date: '2019-06-01T00:00:00.000Z',
+          value: 23352
+        },
+        {
+          date: '2019-07-01T00:00:00.000Z',
+          value: 25090
+        },
+        {
+          date: '2019-08-01T00:00:00.000Z',
+          value: 26059
+        },
+        {
+          date: '2019-09-01T00:00:00.000Z',
+          value: 23575
+        },
+        {
+          date: '2019-10-01T00:00:00.000Z',
+          value: 25636
+        },
+        {
+          date: '2019-11-01T00:00:00.000Z',
+          value: 22657
+        },
+        {
+          date: '2019-12-01T00:00:00.000Z',
+          value: 21704
+        },
+        {
+          date: '2020-01-01T00:00:00.000Z',
+          value: 26413
+        },
+        {
+          date: '2020-02-01T00:00:00.000Z',
+          value: 25097
+        },
+        {
+          date: '2020-03-01T00:00:00.000Z',
+          value: 29494
+        },
+        {
+          date: '2020-04-01T00:00:00.000Z',
+          value: 34805
+        },
+        {
+          date: '2020-05-01T00:00:00.000Z',
+          value: 37146
+        },
+        {
+          date: '2020-06-01T00:00:00.000Z',
+          value: 32699
+        },
+        {
+          date: '2020-07-01T00:00:00.000Z',
+          value: 1152
+        }
+      ],
+      dateRangeLine: {
+        dataByTopic: [
+          {
+            topic: 'Complaints',
+            topicName: 'Complaints',
+            dashed: false,
+            show: true,
+            dates: [
+              {
+                date: '2011-12-01T00:00:00.000Z',
+                value: 2536
+              },
+              {
+                date: '2012-01-01T00:00:00.000Z',
+                value: 3230
+              },
+              {
+                date: '2012-02-01T00:00:00.000Z',
+                value: 3509
+              },
+              {
+                date: '2012-03-01T00:00:00.000Z',
+                value: 6230
+              },
+              {
+                date: '2012-04-01T00:00:00.000Z',
+                value: 5703
+              },
+              {
+                date: '2012-05-01T00:00:00.000Z',
+                value: 7617
+              },
+              {
+                date: '2012-06-01T00:00:00.000Z',
+                value: 7841
+              },
+              {
+                date: '2012-07-01T00:00:00.000Z',
+                value: 6755
+              },
+              {
+                date: '2012-08-01T00:00:00.000Z',
+                value: 6877
+              },
+              {
+                date: '2012-09-01T00:00:00.000Z',
+                value: 5493
+              },
+              {
+                date: '2012-10-01T00:00:00.000Z',
+                value: 6741
+              },
+              {
+                date: '2012-11-01T00:00:00.000Z',
+                value: 6139
+              },
+              {
+                date: '2012-12-01T00:00:00.000Z',
+                value: 6238
+              },
+              {
+                date: '2013-01-01T00:00:00.000Z',
+                value: 9741
+              },
+              {
+                date: '2013-02-01T00:00:00.000Z',
+                value: 8349
+              },
+              {
+                date: '2013-03-01T00:00:00.000Z',
+                value: 8784
+              },
+              {
+                date: '2013-04-01T00:00:00.000Z',
+                value: 8632
+              },
+              {
+                date: '2013-05-01T00:00:00.000Z',
+                value: 8170
+              },
+              {
+                date: '2013-06-01T00:00:00.000Z',
+                value: 8035
+              },
+              {
+                date: '2013-07-01T00:00:00.000Z',
+                value: 9271
+              },
+              {
+                date: '2013-08-01T00:00:00.000Z',
+                value: 9565
+              },
+              {
+                date: '2013-09-01T00:00:00.000Z',
+                value: 9636
+              },
+              {
+                date: '2013-10-01T00:00:00.000Z',
+                value: 9241
+              },
+              {
+                date: '2013-11-01T00:00:00.000Z',
+                value: 9319
+              },
+              {
+                date: '2013-12-01T00:00:00.000Z',
+                value: 9474
+              },
+              {
+                date: '2014-01-01T00:00:00.000Z',
+                value: 12617
+              },
+              {
+                date: '2014-02-01T00:00:00.000Z',
+                value: 13048
+              },
+              {
+                date: '2014-03-01T00:00:00.000Z',
+                value: 13943
+              },
+              {
+                date: '2014-04-01T00:00:00.000Z',
+                value: 13840
+              },
+              {
+                date: '2014-05-01T00:00:00.000Z',
+                value: 12167
+              },
+              {
+                date: '2014-06-01T00:00:00.000Z',
+                value: 12520
+              },
+              {
+                date: '2014-07-01T00:00:00.000Z',
+                value: 13415
+              },
+              {
+                date: '2014-08-01T00:00:00.000Z',
+                value: 13186
+              },
+              {
+                date: '2014-09-01T00:00:00.000Z',
+                value: 12465
+              },
+              {
+                date: '2014-10-01T00:00:00.000Z',
+                value: 12901
+              },
+              {
+                date: '2014-11-01T00:00:00.000Z',
+                value: 11257
+              },
+              {
+                date: '2014-12-01T00:00:00.000Z',
+                value: 11684
+              },
+              {
+                date: '2015-01-01T00:00:00.000Z',
+                value: 12627
+              },
+              {
+                date: '2015-02-01T00:00:00.000Z',
+                value: 12680
+              },
+              {
+                date: '2015-03-01T00:00:00.000Z',
+                value: 14514
+              },
+              {
+                date: '2015-04-01T00:00:00.000Z',
+                value: 13753
+              },
+              {
+                date: '2015-05-01T00:00:00.000Z',
+                value: 13682
+              },
+              {
+                date: '2015-06-01T00:00:00.000Z',
+                value: 14517
+              },
+              {
+                date: '2015-07-01T00:00:00.000Z',
+                value: 15920
+              },
+              {
+                date: '2015-08-01T00:00:00.000Z',
+                value: 15766
+              },
+              {
+                date: '2015-09-01T00:00:00.000Z',
+                value: 14336
+              },
+              {
+                date: '2015-10-01T00:00:00.000Z',
+                value: 14899
+              },
+              {
+                date: '2015-11-01T00:00:00.000Z',
+                value: 12897
+              },
+              {
+                date: '2015-12-01T00:00:00.000Z',
+                value: 12884
+              },
+              {
+                date: '2016-01-01T00:00:00.000Z',
+                value: 13840
+              },
+              {
+                date: '2016-02-01T00:00:00.000Z',
+                value: 14140
+              },
+              {
+                date: '2016-03-01T00:00:00.000Z',
+                value: 16611
+              },
+              {
+                date: '2016-04-01T00:00:00.000Z',
+                value: 15608
+              },
+              {
+                date: '2016-05-01T00:00:00.000Z',
+                value: 15517
+              },
+              {
+                date: '2016-06-01T00:00:00.000Z',
+                value: 16063
+              },
+              {
+                date: '2016-07-01T00:00:00.000Z',
+                value: 16043
+              },
+              {
+                date: '2016-08-01T00:00:00.000Z',
+                value: 17694
+              },
+              {
+                date: '2016-09-01T00:00:00.000Z',
+                value: 17584
+              },
+              {
+                date: '2016-10-01T00:00:00.000Z',
+                value: 17820
+              },
+              {
+                date: '2016-11-01T00:00:00.000Z',
+                value: 15207
+              },
+              {
+                date: '2016-12-01T00:00:00.000Z',
+                value: 15341
+              },
+              {
+                date: '2017-01-01T00:00:00.000Z',
+                value: 21006
+              },
+              {
+                date: '2017-02-01T00:00:00.000Z',
+                value: 18110
+              },
+              {
+                date: '2017-03-01T00:00:00.000Z',
+                value: 19762
+              },
+              {
+                date: '2017-04-01T00:00:00.000Z',
+                value: 18544
+              },
+              {
+                date: '2017-05-01T00:00:00.000Z',
+                value: 19304
+              },
+              {
+                date: '2017-06-01T00:00:00.000Z',
+                value: 18567
+              },
+              {
+                date: '2017-07-01T00:00:00.000Z',
+                value: 20433
+              },
+              {
+                date: '2017-08-01T00:00:00.000Z',
+                value: 21402
+              },
+              {
+                date: '2017-09-01T00:00:00.000Z',
+                value: 27357
+              },
+              {
+                date: '2017-10-01T00:00:00.000Z',
+                value: 20456
+              },
+              {
+                date: '2017-11-01T00:00:00.000Z',
+                value: 18990
+              },
+              {
+                date: '2017-12-01T00:00:00.000Z',
+                value: 19034
+              },
+              {
+                date: '2018-01-01T00:00:00.000Z',
+                value: 23650
+              },
+              {
+                date: '2018-02-01T00:00:00.000Z',
+                value: 21978
+              },
+              {
+                date: '2018-03-01T00:00:00.000Z',
+                value: 23639
+              },
+              {
+                date: '2018-04-01T00:00:00.000Z',
+                value: 24327
+              },
+              {
+                date: '2018-05-01T00:00:00.000Z',
+                value: 22339
+              },
+              {
+                date: '2018-06-01T00:00:00.000Z',
+                value: 20111
+              },
+              {
+                date: '2018-07-01T00:00:00.000Z',
+                value: 20963
+              },
+              {
+                date: '2018-08-01T00:00:00.000Z',
+                value: 21726
+              },
+              {
+                date: '2018-09-01T00:00:00.000Z',
+                value: 19072
+              },
+              {
+                date: '2018-10-01T00:00:00.000Z',
+                value: 21903
+              },
+              {
+                date: '2018-11-01T00:00:00.000Z',
+                value: 19053
+              },
+              {
+                date: '2018-12-01T00:00:00.000Z',
+                value: 18552
+              },
+              {
+                date: '2019-01-01T00:00:00.000Z',
+                value: 18934
+              },
+              {
+                date: '2019-02-01T00:00:00.000Z',
+                value: 20206
+              },
+              {
+                date: '2019-03-01T00:00:00.000Z',
+                value: 23412
+              },
+              {
+                date: '2019-04-01T00:00:00.000Z',
+                value: 22915
+              },
+              {
+                date: '2019-05-01T00:00:00.000Z',
+                value: 23850
+              },
+              {
+                date: '2019-06-01T00:00:00.000Z',
+                value: 23352
+              },
+              {
+                date: '2019-07-01T00:00:00.000Z',
+                value: 25090
+              },
+              {
+                date: '2019-08-01T00:00:00.000Z',
+                value: 26059
+              },
+              {
+                date: '2019-09-01T00:00:00.000Z',
+                value: 23575
+              },
+              {
+                date: '2019-10-01T00:00:00.000Z',
+                value: 25636
+              },
+              {
+                date: '2019-11-01T00:00:00.000Z',
+                value: 22657
+              },
+              {
+                date: '2019-12-01T00:00:00.000Z',
+                value: 21704
+              },
+              {
+                date: '2020-01-01T00:00:00.000Z',
+                value: 26413
+              },
+              {
+                date: '2020-02-01T00:00:00.000Z',
+                value: 25097
+              },
+              {
+                date: '2020-03-01T00:00:00.000Z',
+                value: 29494
+              },
+              {
+                date: '2020-04-01T00:00:00.000Z',
+                value: 34805
+              },
+              {
+                date: '2020-05-01T00:00:00.000Z',
+                value: 37146
+              },
+              {
+                date: '2020-06-01T00:00:00.000Z',
+                value: 32699
+              },
+              {
+                date: '2020-07-01T00:00:00.000Z',
+                value: 1152
+              }
+            ]
+          }
+        ]
+      },
+      issue: [
+        {
+          hasChildren: true,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Incorrect information on your report',
+          value: 279586,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Information belongs to someone else',
+          value: 159378,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Account status incorrect',
+          value: 41890,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Account information incorrect',
+          value: 38628,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Personal information incorrect',
+          value: 12803,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Old information reappears or never goes away',
+          value: 9833,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Public record information inaccurate',
+          value: 9679,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Information is missing that should be on the report',
+          value: 4950,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Information is incorrect',
+          value: 728,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Information that should be on the report is missing',
+          value: 120,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Incorrect information on your report ',
+          value: 1,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Loan modification,collection,foreclosure',
+          value: 112309,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: true,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Incorrect information on credit report',
+          value: 102686,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Account status',
+          value: 37057,
+          parent: 'Incorrect information on credit report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Information is not mine',
+          value: 32384,
+          parent: 'Incorrect information on credit report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Account terms',
+          value: 10995,
+          parent: 'Incorrect information on credit report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Public record',
+          value: 8876,
+          parent: 'Incorrect information on credit report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Personal information',
+          value: 7529,
+          parent: 'Incorrect information on credit report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Reinserted previously deleted info',
+          value: 5845,
+          parent: 'Incorrect information on credit report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: true,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Problem with a credit reporting company\'s investigation into an existing problem',
+          value: 97724,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Their investigation did not fix an error on your report',
+          value: 68211,
+          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Investigation took more than 30 days',
+          value: 9367,
+          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Was not notified of investigation status or results',
+          value: 8509,
+          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Difficulty submitting a dispute or getting information about a dispute over the phone',
+          value: 6492,
+          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Problem with personal statement of dispute',
+          value: 4693,
+          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Loan servicing, payments, escrow account',
+          value: 77333,
+          parent: false,
+          visible: true,
+          width: 0.5
+        }
+      ],
+      product: [
+        {
+          hasChildren: true,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Credit reporting, credit repair services, or other personal consumer reports',
+          value: 436241,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Credit reporting',
+          value: 429446,
+          parent: 'Credit reporting, credit repair services, or other personal consumer reports',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Other personal consumer report',
+          value: 5424,
+          parent: 'Credit reporting, credit repair services, or other personal consumer reports',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Credit repair services',
+          value: 1370,
+          parent: 'Credit reporting, credit repair services, or other personal consumer reports',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Conventional home mortgage',
+          value: 1,
+          parent: 'Credit reporting, credit repair services, or other personal consumer reports',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: true,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Mortgage',
+          value: 304721,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Other mortgage',
+          value: 86635,
+          parent: 'Mortgage',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Conventional fixed mortgage',
+          value: 70613,
+          parent: 'Mortgage',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Conventional home mortgage ',
+          value: 45658,
+          parent: 'Mortgage',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'FHA mortgage',
+          value: 35734,
+          parent: 'Mortgage',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Conventional adjustable mortgage (ARM)',
+          value: 25380,
+          parent: 'Mortgage',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Home equity loan or line of credit',
+          value: 11624,
+          parent: 'Mortgage',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Other type of mortgage',
+          value: 10794,
+          parent: 'Mortgage',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'VA mortgage',
+          value: 9306,
+          parent: 'Mortgage',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Home equity loan or line of credit (HELOC)',
+          value: 5072,
+          parent: 'Mortgage',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Reverse mortgage',
+          value: 3243,
+          parent: 'Mortgage',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Second mortgage',
+          value: 662,
+          parent: 'Mortgage',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: true,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Debt collection',
+          value: 300401,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'I do not know',
+          value: 62985,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Other debt',
+          value: 45441,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Other (i.e. phone, health club, etc.)',
+          value: 44543,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Credit card debt',
+          value: 33298,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Credit card',
+          value: 28698,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Medical debt',
+          value: 24725,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Medical',
+          value: 21187,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Payday loan',
+          value: 7562,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Auto debt',
+          value: 5025,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Mortgage ',
+          value: 4809,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Payday loan debt',
+          value: 4729,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Auto',
+          value: 3755,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Mortgage debt',
+          value: 3432,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Non-federal student loan',
+          value: 2881,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Federal student loan debt',
+          value: 2541,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Federal student loan',
+          value: 2475,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Private student loan debt',
+          value: 2315,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Credit reporting ',
+          value: 140432,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Credit card ',
+          value: 89190,
+          parent: false,
+          visible: true,
+          width: 0.5
+        }
+      ],
+      tags: [
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Servicemember',
+          value: 115185,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Older American',
+          value: 89940,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Older American, Servicemember',
+          value: 18620,
+          parent: false,
+          visible: true,
+          width: 0.5
+        }
+      ]
+    },
+    subLens: '',
+    tooltip: false,
+    total: 1660586
+  }
\ No newline at end of file
diff --git a/src/reducers/__fixtures__/trendsAggsDupes.jsx b/src/reducers/__fixtures__/trendsAggsDupes.jsx
index c31db6f28..20446eb31 100644
--- a/src/reducers/__fixtures__/trendsAggsDupes.jsx
+++ b/src/reducers/__fixtures__/trendsAggsDupes.jsx
@@ -1 +1 @@
-export default { "dateRangeBrush": { "doc_count": 1599733, "dateRangeBrush": { "buckets": [ { "key_as_string": "2011-12-01T00:00:00.000Z", "key": 1322697600000, "doc_count": 2536 }, { "key_as_string": "2012-01-01T00:00:00.000Z", "key": 1325376000000, "doc_count": 3230 }, { "key_as_string": "2012-02-01T00:00:00.000Z", "key": 1328054400000, "doc_count": 3509 }, { "key_as_string": "2012-03-01T00:00:00.000Z", "key": 1330560000000, "doc_count": 6230 }, { "key_as_string": "2012-04-01T00:00:00.000Z", "key": 1333238400000, "doc_count": 5703 }, { "key_as_string": "2012-05-01T00:00:00.000Z", "key": 1335830400000, "doc_count": 7617 }, { "key_as_string": "2012-06-01T00:00:00.000Z", "key": 1338508800000, "doc_count": 7841 }, { "key_as_string": "2012-07-01T00:00:00.000Z", "key": 1341100800000, "doc_count": 6755 }, { "key_as_string": "2012-08-01T00:00:00.000Z", "key": 1343779200000, "doc_count": 6877 }, { "key_as_string": "2012-09-01T00:00:00.000Z", "key": 1346457600000, "doc_count": 5493 }, { "key_as_string": "2012-10-01T00:00:00.000Z", "key": 1349049600000, "doc_count": 6741 }, { "key_as_string": "2012-11-01T00:00:00.000Z", "key": 1351728000000, "doc_count": 6139 }, { "key_as_string": "2012-12-01T00:00:00.000Z", "key": 1354320000000, "doc_count": 6238 }, { "key_as_string": "2013-01-01T00:00:00.000Z", "key": 1356998400000, "doc_count": 9741 }, { "key_as_string": "2013-02-01T00:00:00.000Z", "key": 1359676800000, "doc_count": 8349 }, { "key_as_string": "2013-03-01T00:00:00.000Z", "key": 1362096000000, "doc_count": 8784 }, { "key_as_string": "2013-04-01T00:00:00.000Z", "key": 1364774400000, "doc_count": 8632 }, { "key_as_string": "2013-05-01T00:00:00.000Z", "key": 1367366400000, "doc_count": 8170 }, { "key_as_string": "2013-06-01T00:00:00.000Z", "key": 1370044800000, "doc_count": 8035 }, { "key_as_string": "2013-07-01T00:00:00.000Z", "key": 1372636800000, "doc_count": 9271 }, { "key_as_string": "2013-08-01T00:00:00.000Z", "key": 1375315200000, "doc_count": 9565 }, { "key_as_string": "2013-09-01T00:00:00.000Z", "key": 1377993600000, "doc_count": 9636 }, { "key_as_string": "2013-10-01T00:00:00.000Z", "key": 1380585600000, "doc_count": 9241 }, { "key_as_string": "2013-11-01T00:00:00.000Z", "key": 1383264000000, "doc_count": 9319 }, { "key_as_string": "2013-12-01T00:00:00.000Z", "key": 1385856000000, "doc_count": 9474 }, { "key_as_string": "2014-01-01T00:00:00.000Z", "key": 1388534400000, "doc_count": 12617 }, { "key_as_string": "2014-02-01T00:00:00.000Z", "key": 1391212800000, "doc_count": 13048 }, { "key_as_string": "2014-03-01T00:00:00.000Z", "key": 1393632000000, "doc_count": 13943 }, { "key_as_string": "2014-04-01T00:00:00.000Z", "key": 1396310400000, "doc_count": 13840 }, { "key_as_string": "2014-05-01T00:00:00.000Z", "key": 1398902400000, "doc_count": 12167 }, { "key_as_string": "2014-06-01T00:00:00.000Z", "key": 1401580800000, "doc_count": 12520 }, { "key_as_string": "2014-07-01T00:00:00.000Z", "key": 1404172800000, "doc_count": 13415 }, { "key_as_string": "2014-08-01T00:00:00.000Z", "key": 1406851200000, "doc_count": 13186 }, { "key_as_string": "2014-09-01T00:00:00.000Z", "key": 1409529600000, "doc_count": 12465 }, { "key_as_string": "2014-10-01T00:00:00.000Z", "key": 1412121600000, "doc_count": 12901 }, { "key_as_string": "2014-11-01T00:00:00.000Z", "key": 1414800000000, "doc_count": 11257 }, { "key_as_string": "2014-12-01T00:00:00.000Z", "key": 1417392000000, "doc_count": 11684 }, { "key_as_string": "2015-01-01T00:00:00.000Z", "key": 1420070400000, "doc_count": 12627 }, { "key_as_string": "2015-02-01T00:00:00.000Z", "key": 1422748800000, "doc_count": 12680 }, { "key_as_string": "2015-03-01T00:00:00.000Z", "key": 1425168000000, "doc_count": 14514 }, { "key_as_string": "2015-04-01T00:00:00.000Z", "key": 1427846400000, "doc_count": 13753 }, { "key_as_string": "2015-05-01T00:00:00.000Z", "key": 1430438400000, "doc_count": 13682 }, { "key_as_string": "2015-06-01T00:00:00.000Z", "key": 1433116800000, "doc_count": 14517 }, { "key_as_string": "2015-07-01T00:00:00.000Z", "key": 1435708800000, "doc_count": 15920 }, { "key_as_string": "2015-08-01T00:00:00.000Z", "key": 1438387200000, "doc_count": 15766 }, { "key_as_string": "2015-09-01T00:00:00.000Z", "key": 1441065600000, "doc_count": 14336 }, { "key_as_string": "2015-10-01T00:00:00.000Z", "key": 1443657600000, "doc_count": 14899 }, { "key_as_string": "2015-11-01T00:00:00.000Z", "key": 1446336000000, "doc_count": 12897 }, { "key_as_string": "2015-12-01T00:00:00.000Z", "key": 1448928000000, "doc_count": 12884 }, { "key_as_string": "2016-01-01T00:00:00.000Z", "key": 1451606400000, "doc_count": 13840 }, { "key_as_string": "2016-02-01T00:00:00.000Z", "key": 1454284800000, "doc_count": 14140 }, { "key_as_string": "2016-03-01T00:00:00.000Z", "key": 1456790400000, "doc_count": 16611 }, { "key_as_string": "2016-04-01T00:00:00.000Z", "key": 1459468800000, "doc_count": 15608 }, { "key_as_string": "2016-05-01T00:00:00.000Z", "key": 1462060800000, "doc_count": 15517 }, { "key_as_string": "2016-06-01T00:00:00.000Z", "key": 1464739200000, "doc_count": 16063 }, { "key_as_string": "2016-07-01T00:00:00.000Z", "key": 1467331200000, "doc_count": 16043 }, { "key_as_string": "2016-08-01T00:00:00.000Z", "key": 1470009600000, "doc_count": 17694 }, { "key_as_string": "2016-09-01T00:00:00.000Z", "key": 1472688000000, "doc_count": 17584 }, { "key_as_string": "2016-10-01T00:00:00.000Z", "key": 1475280000000, "doc_count": 17820 }, { "key_as_string": "2016-11-01T00:00:00.000Z", "key": 1477958400000, "doc_count": 15207 }, { "key_as_string": "2016-12-01T00:00:00.000Z", "key": 1480550400000, "doc_count": 15341 }, { "key_as_string": "2017-01-01T00:00:00.000Z", "key": 1483228800000, "doc_count": 21006 }, { "key_as_string": "2017-02-01T00:00:00.000Z", "key": 1485907200000, "doc_count": 18110 }, { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 19762 }, { "key_as_string": "2017-04-01T00:00:00.000Z", "key": 1491004800000, "doc_count": 18544 }, { "key_as_string": "2017-05-01T00:00:00.000Z", "key": 1493596800000, "doc_count": 19305 }, { "key_as_string": "2017-06-01T00:00:00.000Z", "key": 1496275200000, "doc_count": 18567 }, { "key_as_string": "2017-07-01T00:00:00.000Z", "key": 1498867200000, "doc_count": 20433 }, { "key_as_string": "2017-08-01T00:00:00.000Z", "key": 1501545600000, "doc_count": 21402 }, { "key_as_string": "2017-09-01T00:00:00.000Z", "key": 1504224000000, "doc_count": 27357 }, { "key_as_string": "2017-10-01T00:00:00.000Z", "key": 1506816000000, "doc_count": 20456 }, { "key_as_string": "2017-11-01T00:00:00.000Z", "key": 1509494400000, "doc_count": 18990 }, { "key_as_string": "2017-12-01T00:00:00.000Z", "key": 1512086400000, "doc_count": 19034 }, { "key_as_string": "2018-01-01T00:00:00.000Z", "key": 1514764800000, "doc_count": 23651 }, { "key_as_string": "2018-02-01T00:00:00.000Z", "key": 1517443200000, "doc_count": 21978 }, { "key_as_string": "2018-03-01T00:00:00.000Z", "key": 1519862400000, "doc_count": 23640 }, { "key_as_string": "2018-04-01T00:00:00.000Z", "key": 1522540800000, "doc_count": 24327 }, { "key_as_string": "2018-05-01T00:00:00.000Z", "key": 1525132800000, "doc_count": 22339 }, { "key_as_string": "2018-06-01T00:00:00.000Z", "key": 1527811200000, "doc_count": 20111 }, { "key_as_string": "2018-07-01T00:00:00.000Z", "key": 1530403200000, "doc_count": 20963 }, { "key_as_string": "2018-08-01T00:00:00.000Z", "key": 1533081600000, "doc_count": 21726 }, { "key_as_string": "2018-09-01T00:00:00.000Z", "key": 1535760000000, "doc_count": 19072 }, { "key_as_string": "2018-10-01T00:00:00.000Z", "key": 1538352000000, "doc_count": 21903 }, { "key_as_string": "2018-11-01T00:00:00.000Z", "key": 1541030400000, "doc_count": 19053 }, { "key_as_string": "2018-12-01T00:00:00.000Z", "key": 1543622400000, "doc_count": 18552 }, { "key_as_string": "2019-01-01T00:00:00.000Z", "key": 1546300800000, "doc_count": 18934 }, { "key_as_string": "2019-02-01T00:00:00.000Z", "key": 1548979200000, "doc_count": 20206 }, { "key_as_string": "2019-03-01T00:00:00.000Z", "key": 1551398400000, "doc_count": 23412 }, { "key_as_string": "2019-04-01T00:00:00.000Z", "key": 1554076800000, "doc_count": 22915 }, { "key_as_string": "2019-05-01T00:00:00.000Z", "key": 1556668800000, "doc_count": 23850 }, { "key_as_string": "2019-06-01T00:00:00.000Z", "key": 1559347200000, "doc_count": 23352 }, { "key_as_string": "2019-07-01T00:00:00.000Z", "key": 1561939200000, "doc_count": 25090 }, { "key_as_string": "2019-08-01T00:00:00.000Z", "key": 1564617600000, "doc_count": 26059 }, { "key_as_string": "2019-09-01T00:00:00.000Z", "key": 1567296000000, "doc_count": 23575 }, { "key_as_string": "2019-10-01T00:00:00.000Z", "key": 1569888000000, "doc_count": 25636 }, { "key_as_string": "2019-11-01T00:00:00.000Z", "key": 1572566400000, "doc_count": 22659 }, { "key_as_string": "2019-12-01T00:00:00.000Z", "key": 1575158400000, "doc_count": 21704 }, { "key_as_string": "2020-01-01T00:00:00.000Z", "key": 1577836800000, "doc_count": 26413 }, { "key_as_string": "2020-02-01T00:00:00.000Z", "key": 1580515200000, "doc_count": 25096 }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 29506 }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 35112 }, { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 9821 } ] } }, "product": { "doc_count": 1554659, "product": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 367626, "buckets": [ { "key": "Credit reporting, credit repair services, or other personal consumer reports", "doc_count": 391362, "product": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Credit reporting", "doc_count": 384867, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 20988, "interval_diff": { "value": 3914 } } ] } }, { "key": "Other personal consumer report", "doc_count": 5194, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 150, "interval_diff": { "value": 28 } } ] } }, { "key": "Credit repair services", "doc_count": 1300, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 41, "interval_diff": { "value": 6 } } ] } }, { "key": "Conventional home mortgage", "doc_count": 1, "trend_period": { "buckets": [] } } ] }, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 888, "interval_diff": { "value": -20291 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 21179, "interval_diff": { "value": 3948 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 17231, "interval_diff": { "value": 3629 } }, { "key_as_string": "2020-02-01T00:00:00.000Z", "key": 1580515200000, "doc_count": 13602, "interval_diff": { "value": -1246 } }, { "key_as_string": "2020-01-01T00:00:00.000Z", "key": 1577836800000, "doc_count": 14848, "interval_diff": { "value": 3540 } }, { "key_as_string": "2019-12-01T00:00:00.000Z", "key": 1575158400000, "doc_count": 11308, "interval_diff": { "value": -541 } }, { "key_as_string": "2019-11-01T00:00:00.000Z", "key": 1572566400000, "doc_count": 11849, "interval_diff": { "value": -1363 } }, { "key_as_string": "2019-10-01T00:00:00.000Z", "key": 1569888000000, "doc_count": 13212, "interval_diff": { "value": 1116 } }, { "key_as_string": "2019-09-01T00:00:00.000Z", "key": 1567296000000, "doc_count": 12096, "interval_diff": { "value": -1425 } }, { "key_as_string": "2019-08-01T00:00:00.000Z", "key": 1564617600000, "doc_count": 13521, "interval_diff": { "value": 515 } }, { "key_as_string": "2019-07-01T00:00:00.000Z", "key": 1561939200000, "doc_count": 13006, "interval_diff": { "value": 1264 } }, { "key_as_string": "2019-06-01T00:00:00.000Z", "key": 1559347200000, "doc_count": 11742, "interval_diff": { "value": -179 } }, { "key_as_string": "2019-05-01T00:00:00.000Z", "key": 1556668800000, "doc_count": 11921, "interval_diff": { "value": 863 } }, { "key_as_string": "2019-04-01T00:00:00.000Z", "key": 1554076800000, "doc_count": 11058, "interval_diff": { "value": 57 } }, { "key_as_string": "2019-03-01T00:00:00.000Z", "key": 1551398400000, "doc_count": 11001, "interval_diff": { "value": 1634 } }, { "key_as_string": "2019-02-01T00:00:00.000Z", "key": 1548979200000, "doc_count": 9367, "interval_diff": { "value": 853 } }, { "key_as_string": "2019-01-01T00:00:00.000Z", "key": 1546300800000, "doc_count": 8514, "interval_diff": { "value": 149 } }, { "key_as_string": "2018-12-01T00:00:00.000Z", "key": 1543622400000, "doc_count": 8365, "interval_diff": { "value": -562 } }, { "key_as_string": "2018-11-01T00:00:00.000Z", "key": 1541030400000, "doc_count": 8927, "interval_diff": { "value": -923 } }, { "key_as_string": "2018-10-01T00:00:00.000Z", "key": 1538352000000, "doc_count": 9850, "interval_diff": { "value": 1447 } }, { "key_as_string": "2018-09-01T00:00:00.000Z", "key": 1535760000000, "doc_count": 8403, "interval_diff": { "value": -1046 } }, { "key_as_string": "2018-08-01T00:00:00.000Z", "key": 1533081600000, "doc_count": 9449, "interval_diff": { "value": 309 } }, { "key_as_string": "2018-07-01T00:00:00.000Z", "key": 1530403200000, "doc_count": 9140, "interval_diff": { "value": 645 } }, { "key_as_string": "2018-06-01T00:00:00.000Z", "key": 1527811200000, "doc_count": 8495, "interval_diff": { "value": -980 } }, { "key_as_string": "2018-05-01T00:00:00.000Z", "key": 1525132800000, "doc_count": 9475, "interval_diff": { "value": -863 } }, { "key_as_string": "2018-04-01T00:00:00.000Z", "key": 1522540800000, "doc_count": 10338, "interval_diff": { "value": 463 } }, { "key_as_string": "2018-03-01T00:00:00.000Z", "key": 1519862400000, "doc_count": 9875, "interval_diff": { "value": 189 } }, { "key_as_string": "2018-02-01T00:00:00.000Z", "key": 1517443200000, "doc_count": 9686, "interval_diff": { "value": 64 } }, { "key_as_string": "2018-01-01T00:00:00.000Z", "key": 1514764800000, "doc_count": 9622, "interval_diff": { "value": 1926 } }, { "key_as_string": "2017-12-01T00:00:00.000Z", "key": 1512086400000, "doc_count": 7696, "interval_diff": { "value": -204 } }, { "key_as_string": "2017-11-01T00:00:00.000Z", "key": 1509494400000, "doc_count": 7900, "interval_diff": { "value": -835 } }, { "key_as_string": "2017-10-01T00:00:00.000Z", "key": 1506816000000, "doc_count": 8735, "interval_diff": { "value": -7360 } }, { "key_as_string": "2017-09-01T00:00:00.000Z", "key": 1504224000000, "doc_count": 16095, "interval_diff": { "value": 7306 } }, { "key_as_string": "2017-08-01T00:00:00.000Z", "key": 1501545600000, "doc_count": 8789, "interval_diff": { "value": 604 } }, { "key_as_string": "2017-07-01T00:00:00.000Z", "key": 1498867200000, "doc_count": 8185, "interval_diff": { "value": 1261 } }, { "key_as_string": "2017-06-01T00:00:00.000Z", "key": 1496275200000, "doc_count": 6924, "interval_diff": { "value": -184 } }, { "key_as_string": "2017-05-01T00:00:00.000Z", "key": 1493596800000, "doc_count": 7108, "interval_diff": { "value": 5146 } }, { "key_as_string": "2017-04-01T00:00:00.000Z", "key": 1491004800000, "doc_count": 1962 } ] } }, { "key": "Debt collection", "doc_count": 292541, "product": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "I do not know", "doc_count": 61041, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1184, "interval_diff": { "value": 170 } } ] } }, { "key": "Other (i.e. phone, health club, etc.)", "doc_count": 44543, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 1565, "interval_diff": { "value": 204 } } ] } }, { "key": "Other debt", "doc_count": 43411, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1129, "interval_diff": { "value": -128 } } ] } }, { "key": "Credit card debt", "doc_count": 31279, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1113, "interval_diff": { "value": 187 } } ] } }, { "key": "Credit card", "doc_count": 28698, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 834, "interval_diff": { "value": 177 } } ] } }, { "key": "Medical debt", "doc_count": 23573, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 666, "interval_diff": { "value": 116 } } ] } }, { "key": "Medical", "doc_count": 21187, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 892, "interval_diff": { "value": 183 } } ] } }, { "key": "Payday loan", "doc_count": 7562, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 155, "interval_diff": { "value": 6 } } ] } }, { "key": "Mortgage", "doc_count": 4809, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 94, "interval_diff": { "value": 0 } } ] } }, { "key": "Auto debt", "doc_count": 4769, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 137, "interval_diff": { "value": 2 } } ] } }, { "key": "Payday loan debt", "doc_count": 4501, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 115, "interval_diff": { "value": -19 } } ] } }, { "key": "Auto", "doc_count": 3755, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 133, "interval_diff": { "value": 24 } } ] } }, { "key": "Mortgage debt", "doc_count": 3324, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 83, "interval_diff": { "value": 2 } } ] } }, { "key": "Non-federal student loan", "doc_count": 2881, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 91, "interval_diff": { "value": 34 } } ] } }, { "key": "Federal student loan debt", "doc_count": 2486, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 42, "interval_diff": { "value": -17 } } ] } }, { "key": "Federal student loan", "doc_count": 2475, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 69, "interval_diff": { "value": -8 } } ] } }, { "key": "Private student loan debt", "doc_count": 2247, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 39, "interval_diff": { "value": -11 } } ] } } ] }, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 138, "interval_diff": { "value": -4370 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 4508, "interval_diff": { "value": 302 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 4206, "interval_diff": { "value": 225 } }, { "key_as_string": "2020-02-01T00:00:00.000Z", "key": 1580515200000, "doc_count": 3981, "interval_diff": { "value": 213 } }, { "key_as_string": "2020-01-01T00:00:00.000Z", "key": 1577836800000, "doc_count": 3768, "interval_diff": { "value": 444 } }, { "key_as_string": "2019-12-01T00:00:00.000Z", "key": 1575158400000, "doc_count": 3324, "interval_diff": { "value": -203 } }, { "key_as_string": "2019-11-01T00:00:00.000Z", "key": 1572566400000, "doc_count": 3527, "interval_diff": { "value": -495 } }, { "key_as_string": "2019-10-01T00:00:00.000Z", "key": 1569888000000, "doc_count": 4022, "interval_diff": { "value": 46 } }, { "key_as_string": "2019-09-01T00:00:00.000Z", "key": 1567296000000, "doc_count": 3976, "interval_diff": { "value": -255 } }, { "key_as_string": "2019-08-01T00:00:00.000Z", "key": 1564617600000, "doc_count": 4231, "interval_diff": { "value": 217 } }, { "key_as_string": "2019-07-01T00:00:00.000Z", "key": 1561939200000, "doc_count": 4014, "interval_diff": { "value": -37 } }, { "key_as_string": "2019-06-01T00:00:00.000Z", "key": 1559347200000, "doc_count": 4051, "interval_diff": { "value": -84 } }, { "key_as_string": "2019-05-01T00:00:00.000Z", "key": 1556668800000, "doc_count": 4135, "interval_diff": { "value": 152 } }, { "key_as_string": "2019-04-01T00:00:00.000Z", "key": 1554076800000, "doc_count": 3983, "interval_diff": { "value": -244 } }, { "key_as_string": "2019-03-01T00:00:00.000Z", "key": 1551398400000, "doc_count": 4227, "interval_diff": { "value": 440 } }, { "key_as_string": "2019-02-01T00:00:00.000Z", "key": 1548979200000, "doc_count": 3787, "interval_diff": { "value": 660 } }, { "key_as_string": "2019-01-01T00:00:00.000Z", "key": 1546300800000, "doc_count": 3127, "interval_diff": { "value": -132 } }, { "key_as_string": "2018-12-01T00:00:00.000Z", "key": 1543622400000, "doc_count": 3259, "interval_diff": { "value": -89 } }, { "key_as_string": "2018-11-01T00:00:00.000Z", "key": 1541030400000, "doc_count": 3348, "interval_diff": { "value": -739 } }, { "key_as_string": "2018-10-01T00:00:00.000Z", "key": 1538352000000, "doc_count": 4087, "interval_diff": { "value": 406 } }, { "key_as_string": "2018-09-01T00:00:00.000Z", "key": 1535760000000, "doc_count": 3681, "interval_diff": { "value": -732 } }, { "key_as_string": "2018-08-01T00:00:00.000Z", "key": 1533081600000, "doc_count": 4413, "interval_diff": { "value": 414 } }, { "key_as_string": "2018-07-01T00:00:00.000Z", "key": 1530403200000, "doc_count": 3999, "interval_diff": { "value": -257 } }, { "key_as_string": "2018-06-01T00:00:00.000Z", "key": 1527811200000, "doc_count": 4256, "interval_diff": { "value": -480 } }, { "key_as_string": "2018-05-01T00:00:00.000Z", "key": 1525132800000, "doc_count": 4736, "interval_diff": { "value": -21 } }, { "key_as_string": "2018-04-01T00:00:00.000Z", "key": 1522540800000, "doc_count": 4757, "interval_diff": { "value": -510 } }, { "key_as_string": "2018-03-01T00:00:00.000Z", "key": 1519862400000, "doc_count": 5267, "interval_diff": { "value": 793 } }, { "key_as_string": "2018-02-01T00:00:00.000Z", "key": 1517443200000, "doc_count": 4474, "interval_diff": { "value": -434 } }, { "key_as_string": "2018-01-01T00:00:00.000Z", "key": 1514764800000, "doc_count": 4908, "interval_diff": { "value": 1024 } }, { "key_as_string": "2017-12-01T00:00:00.000Z", "key": 1512086400000, "doc_count": 3884, "interval_diff": { "value": 320 } }, { "key_as_string": "2017-11-01T00:00:00.000Z", "key": 1509494400000, "doc_count": 3564, "interval_diff": { "value": -468 } }, { "key_as_string": "2017-10-01T00:00:00.000Z", "key": 1506816000000, "doc_count": 4032, "interval_diff": { "value": 491 } }, { "key_as_string": "2017-09-01T00:00:00.000Z", "key": 1504224000000, "doc_count": 3541, "interval_diff": { "value": -835 } }, { "key_as_string": "2017-08-01T00:00:00.000Z", "key": 1501545600000, "doc_count": 4376, "interval_diff": { "value": 153 } }, { "key_as_string": "2017-07-01T00:00:00.000Z", "key": 1498867200000, "doc_count": 4223, "interval_diff": { "value": 510 } }, { "key_as_string": "2017-06-01T00:00:00.000Z", "key": 1496275200000, "doc_count": 3713, "interval_diff": { "value": -450 } }, { "key_as_string": "2017-05-01T00:00:00.000Z", "key": 1493596800000, "doc_count": 4163, "interval_diff": { "value": -10 } }, { "key_as_string": "2017-04-01T00:00:00.000Z", "key": 1491004800000, "doc_count": 4173, "interval_diff": { "value": -432 } }, { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 4605, "interval_diff": { "value": 656 } }, { "key_as_string": "2017-02-01T00:00:00.000Z", "key": 1485907200000, "doc_count": 3949, "interval_diff": { "value": 219 } }, { "key_as_string": "2017-01-01T00:00:00.000Z", "key": 1483228800000, "doc_count": 3730, "interval_diff": { "value": 62 } }, { "key_as_string": "2016-12-01T00:00:00.000Z", "key": 1480550400000, "doc_count": 3668, "interval_diff": { "value": 380 } }, { "key_as_string": "2016-11-01T00:00:00.000Z", "key": 1477958400000, "doc_count": 3288, "interval_diff": { "value": -291 } }, { "key_as_string": "2016-10-01T00:00:00.000Z", "key": 1475280000000, "doc_count": 3579, "interval_diff": { "value": 42 } }, { "key_as_string": "2016-09-01T00:00:00.000Z", "key": 1472688000000, "doc_count": 3537, "interval_diff": { "value": -626 } }, { "key_as_string": "2016-08-01T00:00:00.000Z", "key": 1470009600000, "doc_count": 4163, "interval_diff": { "value": 1143 } }, { "key_as_string": "2016-07-01T00:00:00.000Z", "key": 1467331200000, "doc_count": 3020, "interval_diff": { "value": -213 } }, { "key_as_string": "2016-06-01T00:00:00.000Z", "key": 1464739200000, "doc_count": 3233, "interval_diff": { "value": 169 } }, { "key_as_string": "2016-05-01T00:00:00.000Z", "key": 1462060800000, "doc_count": 3064, "interval_diff": { "value": -179 } }, { "key_as_string": "2016-04-01T00:00:00.000Z", "key": 1459468800000, "doc_count": 3243, "interval_diff": { "value": -282 } }, { "key_as_string": "2016-03-01T00:00:00.000Z", "key": 1456790400000, "doc_count": 3525, "interval_diff": { "value": 303 } }, { "key_as_string": "2016-02-01T00:00:00.000Z", "key": 1454284800000, "doc_count": 3222, "interval_diff": { "value": 298 } }, { "key_as_string": "2016-01-01T00:00:00.000Z", "key": 1451606400000, "doc_count": 2924, "interval_diff": { "value": 62 } }, { "key_as_string": "2015-12-01T00:00:00.000Z", "key": 1448928000000, "doc_count": 2862, "interval_diff": { "value": 241 } }, { "key_as_string": "2015-11-01T00:00:00.000Z", "key": 1446336000000, "doc_count": 2621, "interval_diff": { "value": -394 } }, { "key_as_string": "2015-10-01T00:00:00.000Z", "key": 1443657600000, "doc_count": 3015, "interval_diff": { "value": -135 } }, { "key_as_string": "2015-09-01T00:00:00.000Z", "key": 1441065600000, "doc_count": 3150, "interval_diff": { "value": -416 } }, { "key_as_string": "2015-08-01T00:00:00.000Z", "key": 1438387200000, "doc_count": 3566, "interval_diff": { "value": -216 } }, { "key_as_string": "2015-07-01T00:00:00.000Z", "key": 1435708800000, "doc_count": 3782, "interval_diff": { "value": 303 } }, { "key_as_string": "2015-06-01T00:00:00.000Z", "key": 1433116800000, "doc_count": 3479, "interval_diff": { "value": 145 } }, { "key_as_string": "2015-05-01T00:00:00.000Z", "key": 1430438400000, "doc_count": 3334, "interval_diff": { "value": -34 } }, { "key_as_string": "2015-04-01T00:00:00.000Z", "key": 1427846400000, "doc_count": 3368, "interval_diff": { "value": -511 } }, { "key_as_string": "2015-03-01T00:00:00.000Z", "key": 1425168000000, "doc_count": 3879, "interval_diff": { "value": 467 } }, { "key_as_string": "2015-02-01T00:00:00.000Z", "key": 1422748800000, "doc_count": 3412, "interval_diff": { "value": 156 } }, { "key_as_string": "2015-01-01T00:00:00.000Z", "key": 1420070400000, "doc_count": 3256, "interval_diff": { "value": 282 } }, { "key_as_string": "2014-12-01T00:00:00.000Z", "key": 1417392000000, "doc_count": 2974, "interval_diff": { "value": 158 } }, { "key_as_string": "2014-11-01T00:00:00.000Z", "key": 1414800000000, "doc_count": 2816, "interval_diff": { "value": -406 } }, { "key_as_string": "2014-10-01T00:00:00.000Z", "key": 1412121600000, "doc_count": 3222, "interval_diff": { "value": 332 } }, { "key_as_string": "2014-09-01T00:00:00.000Z", "key": 1409529600000, "doc_count": 2890, "interval_diff": { "value": -343 } }, { "key_as_string": "2014-08-01T00:00:00.000Z", "key": 1406851200000, "doc_count": 3233, "interval_diff": { "value": -247 } }, { "key_as_string": "2014-07-01T00:00:00.000Z", "key": 1404172800000, "doc_count": 3480, "interval_diff": { "value": 83 } }, { "key_as_string": "2014-06-01T00:00:00.000Z", "key": 1401580800000, "doc_count": 3397, "interval_diff": { "value": 193 } }, { "key_as_string": "2014-05-01T00:00:00.000Z", "key": 1398902400000, "doc_count": 3204, "interval_diff": { "value": -491 } }, { "key_as_string": "2014-04-01T00:00:00.000Z", "key": 1396310400000, "doc_count": 3695, "interval_diff": { "value": 105 } }, { "key_as_string": "2014-03-01T00:00:00.000Z", "key": 1393632000000, "doc_count": 3590, "interval_diff": { "value": 220 } }, { "key_as_string": "2014-02-01T00:00:00.000Z", "key": 1391212800000, "doc_count": 3370, "interval_diff": { "value": 102 } }, { "key_as_string": "2014-01-01T00:00:00.000Z", "key": 1388534400000, "doc_count": 3268, "interval_diff": { "value": 837 } }, { "key_as_string": "2013-12-01T00:00:00.000Z", "key": 1385856000000, "doc_count": 2431, "interval_diff": { "value": -17 } }, { "key_as_string": "2013-11-01T00:00:00.000Z", "key": 1383264000000, "doc_count": 2448, "interval_diff": { "value": 655 } }, { "key_as_string": "2013-10-01T00:00:00.000Z", "key": 1380585600000, "doc_count": 1793, "interval_diff": { "value": -210 } }, { "key_as_string": "2013-09-01T00:00:00.000Z", "key": 1377993600000, "doc_count": 2003, "interval_diff": { "value": 509 } }, { "key_as_string": "2013-08-01T00:00:00.000Z", "key": 1375315200000, "doc_count": 1494, "interval_diff": { "value": 594 } }, { "key_as_string": "2013-07-01T00:00:00.000Z", "key": 1372636800000, "doc_count": 900 } ] } }, { "key": "Mortgage", "doc_count": 281996, "product": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Other mortgage", "doc_count": 76865, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 1006, "interval_diff": { "value": 145 } } ] } }, { "key": "Conventional fixed mortgage", "doc_count": 65380, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 1012, "interval_diff": { "value": 16 } } ] } }, { "key": "Conventional home mortgage", "doc_count": 43558, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1382, "interval_diff": { "value": 18 } } ] } }, { "key": "FHA mortgage", "doc_count": 34035, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 370, "interval_diff": { "value": 19 } } ] } }, { "key": "Conventional adjustable mortgage (ARM)", "doc_count": 23400, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 359, "interval_diff": { "value": 60 } } ] } }, { "key": "Home equity loan or line of credit", "doc_count": 10808, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 235, "interval_diff": { "value": 61 } } ] } }, { "key": "Other type of mortgage", "doc_count": 10594, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 115, "interval_diff": { "value": -26 } } ] } }, { "key": "VA mortgage", "doc_count": 8839, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 170, "interval_diff": { "value": 19 } } ] } }, { "key": "Home equity loan or line of credit (HELOC)", "doc_count": 4892, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 123, "interval_diff": { "value": 21 } } ] } }, { "key": "Reverse mortgage", "doc_count": 3119, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 19, "interval_diff": { "value": -4 } } ] } }, { "key": "Second mortgage", "doc_count": 506, "trend_period": { "buckets": [ { "key_as_string": "2016-02-01T00:00:00.000Z", "key": 1454284800000, "doc_count": 0, "interval_diff": { "value": 0 } } ] } } ] }, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 80, "interval_diff": { "value": -2099 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 2179, "interval_diff": { "value": 47 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 2132, "interval_diff": { "value": 307 } }, { "key_as_string": "2020-02-01T00:00:00.000Z", "key": 1580515200000, "doc_count": 1825, "interval_diff": { "value": -9 } }, { "key_as_string": "2020-01-01T00:00:00.000Z", "key": 1577836800000, "doc_count": 1834, "interval_diff": { "value": 147 } }, { "key_as_string": "2019-12-01T00:00:00.000Z", "key": 1575158400000, "doc_count": 1687, "interval_diff": { "value": -30 } }, { "key_as_string": "2019-11-01T00:00:00.000Z", "key": 1572566400000, "doc_count": 1717, "interval_diff": { "value": -354 } }, { "key_as_string": "2019-10-01T00:00:00.000Z", "key": 1569888000000, "doc_count": 2071, "interval_diff": { "value": 215 } }, { "key_as_string": "2019-09-01T00:00:00.000Z", "key": 1567296000000, "doc_count": 1856, "interval_diff": { "value": -179 } }, { "key_as_string": "2019-08-01T00:00:00.000Z", "key": 1564617600000, "doc_count": 2035, "interval_diff": { "value": 23 } }, { "key_as_string": "2019-07-01T00:00:00.000Z", "key": 1561939200000, "doc_count": 2012, "interval_diff": { "value": 154 } }, { "key_as_string": "2019-06-01T00:00:00.000Z", "key": 1559347200000, "doc_count": 1858, "interval_diff": { "value": -87 } }, { "key_as_string": "2019-05-01T00:00:00.000Z", "key": 1556668800000, "doc_count": 1945, "interval_diff": { "value": -48 } }, { "key_as_string": "2019-04-01T00:00:00.000Z", "key": 1554076800000, "doc_count": 1993, "interval_diff": { "value": -12 } }, { "key_as_string": "2019-03-01T00:00:00.000Z", "key": 1551398400000, "doc_count": 2005, "interval_diff": { "value": 256 } }, { "key_as_string": "2019-02-01T00:00:00.000Z", "key": 1548979200000, "doc_count": 1749, "interval_diff": { "value": -31 } }, { "key_as_string": "2019-01-01T00:00:00.000Z", "key": 1546300800000, "doc_count": 1780, "interval_diff": { "value": 162 } }, { "key_as_string": "2018-12-01T00:00:00.000Z", "key": 1543622400000, "doc_count": 1618, "interval_diff": { "value": -16 } }, { "key_as_string": "2018-11-01T00:00:00.000Z", "key": 1541030400000, "doc_count": 1634, "interval_diff": { "value": -332 } }, { "key_as_string": "2018-10-01T00:00:00.000Z", "key": 1538352000000, "doc_count": 1966, "interval_diff": { "value": 186 } }, { "key_as_string": "2018-09-01T00:00:00.000Z", "key": 1535760000000, "doc_count": 1780, "interval_diff": { "value": -305 } }, { "key_as_string": "2018-08-01T00:00:00.000Z", "key": 1533081600000, "doc_count": 2085, "interval_diff": { "value": 69 } }, { "key_as_string": "2018-07-01T00:00:00.000Z", "key": 1530403200000, "doc_count": 2016, "interval_diff": { "value": 132 } }, { "key_as_string": "2018-06-01T00:00:00.000Z", "key": 1527811200000, "doc_count": 1884, "interval_diff": { "value": -337 } }, { "key_as_string": "2018-05-01T00:00:00.000Z", "key": 1525132800000, "doc_count": 2221, "interval_diff": { "value": -504 } }, { "key_as_string": "2018-04-01T00:00:00.000Z", "key": 1522540800000, "doc_count": 2725, "interval_diff": { "value": 303 } }, { "key_as_string": "2018-03-01T00:00:00.000Z", "key": 1519862400000, "doc_count": 2422, "interval_diff": { "value": 323 } }, { "key_as_string": "2018-02-01T00:00:00.000Z", "key": 1517443200000, "doc_count": 2099, "interval_diff": { "value": -27 } }, { "key_as_string": "2018-01-01T00:00:00.000Z", "key": 1514764800000, "doc_count": 2126, "interval_diff": { "value": 91 } }, { "key_as_string": "2017-12-01T00:00:00.000Z", "key": 1512086400000, "doc_count": 2035, "interval_diff": { "value": -134 } }, { "key_as_string": "2017-11-01T00:00:00.000Z", "key": 1509494400000, "doc_count": 2169, "interval_diff": { "value": -135 } }, { "key_as_string": "2017-10-01T00:00:00.000Z", "key": 1506816000000, "doc_count": 2304, "interval_diff": { "value": 39 } }, { "key_as_string": "2017-09-01T00:00:00.000Z", "key": 1504224000000, "doc_count": 2265, "interval_diff": { "value": -183 } }, { "key_as_string": "2017-08-01T00:00:00.000Z", "key": 1501545600000, "doc_count": 2448, "interval_diff": { "value": 154 } }, { "key_as_string": "2017-07-01T00:00:00.000Z", "key": 1498867200000, "doc_count": 2294, "interval_diff": { "value": -56 } }, { "key_as_string": "2017-06-01T00:00:00.000Z", "key": 1496275200000, "doc_count": 2350, "interval_diff": { "value": -316 } }, { "key_as_string": "2017-05-01T00:00:00.000Z", "key": 1493596800000, "doc_count": 2666, "interval_diff": { "value": 95 } }, { "key_as_string": "2017-04-01T00:00:00.000Z", "key": 1491004800000, "doc_count": 2571, "interval_diff": { "value": -677 } }, { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 3248, "interval_diff": { "value": 325 } }, { "key_as_string": "2017-02-01T00:00:00.000Z", "key": 1485907200000, "doc_count": 2923, "interval_diff": { "value": -381 } }, { "key_as_string": "2017-01-01T00:00:00.000Z", "key": 1483228800000, "doc_count": 3304, "interval_diff": { "value": 251 } }, { "key_as_string": "2016-12-01T00:00:00.000Z", "key": 1480550400000, "doc_count": 3053, "interval_diff": { "value": -138 } }, { "key_as_string": "2016-11-01T00:00:00.000Z", "key": 1477958400000, "doc_count": 3191, "interval_diff": { "value": -352 } }, { "key_as_string": "2016-10-01T00:00:00.000Z", "key": 1475280000000, "doc_count": 3543, "interval_diff": { "value": -137 } }, { "key_as_string": "2016-09-01T00:00:00.000Z", "key": 1472688000000, "doc_count": 3680, "interval_diff": { "value": 192 } }, { "key_as_string": "2016-08-01T00:00:00.000Z", "key": 1470009600000, "doc_count": 3488, "interval_diff": { "value": 302 } }, { "key_as_string": "2016-07-01T00:00:00.000Z", "key": 1467331200000, "doc_count": 3186, "interval_diff": { "value": -324 } }, { "key_as_string": "2016-06-01T00:00:00.000Z", "key": 1464739200000, "doc_count": 3510, "interval_diff": { "value": 30 } }, { "key_as_string": "2016-05-01T00:00:00.000Z", "key": 1462060800000, "doc_count": 3480, "interval_diff": { "value": -37 } }, { "key_as_string": "2016-04-01T00:00:00.000Z", "key": 1459468800000, "doc_count": 3517, "interval_diff": { "value": -376 } }, { "key_as_string": "2016-03-01T00:00:00.000Z", "key": 1456790400000, "doc_count": 3893, "interval_diff": { "value": 454 } }, { "key_as_string": "2016-02-01T00:00:00.000Z", "key": 1454284800000, "doc_count": 3439, "interval_diff": { "value": -47 } }, { "key_as_string": "2016-01-01T00:00:00.000Z", "key": 1451606400000, "doc_count": 3486, "interval_diff": { "value": 399 } }, { "key_as_string": "2015-12-01T00:00:00.000Z", "key": 1448928000000, "doc_count": 3087, "interval_diff": { "value": -54 } }, { "key_as_string": "2015-11-01T00:00:00.000Z", "key": 1446336000000, "doc_count": 3141, "interval_diff": { "value": -511 } }, { "key_as_string": "2015-10-01T00:00:00.000Z", "key": 1443657600000, "doc_count": 3652, "interval_diff": { "value": -145 } }, { "key_as_string": "2015-09-01T00:00:00.000Z", "key": 1441065600000, "doc_count": 3797, "interval_diff": { "value": -335 } }, { "key_as_string": "2015-08-01T00:00:00.000Z", "key": 1438387200000, "doc_count": 4132, "interval_diff": { "value": 385 } }, { "key_as_string": "2015-07-01T00:00:00.000Z", "key": 1435708800000, "doc_count": 3747, "interval_diff": { "value": -215 } }, { "key_as_string": "2015-06-01T00:00:00.000Z", "key": 1433116800000, "doc_count": 3962, "interval_diff": { "value": 372 } }, { "key_as_string": "2015-05-01T00:00:00.000Z", "key": 1430438400000, "doc_count": 3590, "interval_diff": { "value": -28 } }, { "key_as_string": "2015-04-01T00:00:00.000Z", "key": 1427846400000, "doc_count": 3618, "interval_diff": { "value": 61 } }, { "key_as_string": "2015-03-01T00:00:00.000Z", "key": 1425168000000, "doc_count": 3557, "interval_diff": { "value": 505 } }, { "key_as_string": "2015-02-01T00:00:00.000Z", "key": 1422748800000, "doc_count": 3052, "interval_diff": { "value": 42 } }, { "key_as_string": "2015-01-01T00:00:00.000Z", "key": 1420070400000, "doc_count": 3010, "interval_diff": { "value": -5 } }, { "key_as_string": "2014-12-01T00:00:00.000Z", "key": 1417392000000, "doc_count": 3015, "interval_diff": { "value": 42 } }, { "key_as_string": "2014-11-01T00:00:00.000Z", "key": 1414800000000, "doc_count": 2973, "interval_diff": { "value": -774 } }, { "key_as_string": "2014-10-01T00:00:00.000Z", "key": 1412121600000, "doc_count": 3747, "interval_diff": { "value": 310 } }, { "key_as_string": "2014-09-01T00:00:00.000Z", "key": 1409529600000, "doc_count": 3437, "interval_diff": { "value": -164 } }, { "key_as_string": "2014-08-01T00:00:00.000Z", "key": 1406851200000, "doc_count": 3601, "interval_diff": { "value": -36 } }, { "key_as_string": "2014-07-01T00:00:00.000Z", "key": 1404172800000, "doc_count": 3637, "interval_diff": { "value": 211 } }, { "key_as_string": "2014-06-01T00:00:00.000Z", "key": 1401580800000, "doc_count": 3426, "interval_diff": { "value": -31 } }, { "key_as_string": "2014-05-01T00:00:00.000Z", "key": 1398902400000, "doc_count": 3457, "interval_diff": { "value": -573 } }, { "key_as_string": "2014-04-01T00:00:00.000Z", "key": 1396310400000, "doc_count": 4030, "interval_diff": { "value": -149 } }, { "key_as_string": "2014-03-01T00:00:00.000Z", "key": 1393632000000, "doc_count": 4179, "interval_diff": { "value": 319 } }, { "key_as_string": "2014-02-01T00:00:00.000Z", "key": 1391212800000, "doc_count": 3860, "interval_diff": { "value": 261 } }, { "key_as_string": "2014-01-01T00:00:00.000Z", "key": 1388534400000, "doc_count": 3599, "interval_diff": { "value": 739 } }, { "key_as_string": "2013-12-01T00:00:00.000Z", "key": 1385856000000, "doc_count": 2860, "interval_diff": { "value": -24 } }, { "key_as_string": "2013-11-01T00:00:00.000Z", "key": 1383264000000, "doc_count": 2884, "interval_diff": { "value": -309 } }, { "key_as_string": "2013-10-01T00:00:00.000Z", "key": 1380585600000, "doc_count": 3193, "interval_diff": { "value": -175 } }, { "key_as_string": "2013-09-01T00:00:00.000Z", "key": 1377993600000, "doc_count": 3368, "interval_diff": { "value": -669 } }, { "key_as_string": "2013-08-01T00:00:00.000Z", "key": 1375315200000, "doc_count": 4037, "interval_diff": { "value": -315 } }, { "key_as_string": "2013-07-01T00:00:00.000Z", "key": 1372636800000, "doc_count": 4352, "interval_diff": { "value": -15 } }, { "key_as_string": "2013-06-01T00:00:00.000Z", "key": 1370044800000, "doc_count": 4367, "interval_diff": { "value": -5 } }, { "key_as_string": "2013-05-01T00:00:00.000Z", "key": 1367366400000, "doc_count": 4372, "interval_diff": { "value": -348 } }, { "key_as_string": "2013-04-01T00:00:00.000Z", "key": 1364774400000, "doc_count": 4720, "interval_diff": { "value": 28 } }, { "key_as_string": "2013-03-01T00:00:00.000Z", "key": 1362096000000, "doc_count": 4692, "interval_diff": { "value": 68 } }, { "key_as_string": "2013-02-01T00:00:00.000Z", "key": 1359676800000, "doc_count": 4624, "interval_diff": { "value": -1307 } }, { "key_as_string": "2013-01-01T00:00:00.000Z", "key": 1356998400000, "doc_count": 5931, "interval_diff": { "value": 2754 } }, { "key_as_string": "2012-12-01T00:00:00.000Z", "key": 1354320000000, "doc_count": 3177, "interval_diff": { "value": 246 } }, { "key_as_string": "2012-11-01T00:00:00.000Z", "key": 1351728000000, "doc_count": 2931, "interval_diff": { "value": -388 } }, { "key_as_string": "2012-10-01T00:00:00.000Z", "key": 1349049600000, "doc_count": 3319, "interval_diff": { "value": 266 } }, { "key_as_string": "2012-09-01T00:00:00.000Z", "key": 1346457600000, "doc_count": 3053, "interval_diff": { "value": -845 } }, { "key_as_string": "2012-08-01T00:00:00.000Z", "key": 1343779200000, "doc_count": 3898, "interval_diff": { "value": 384 } }, { "key_as_string": "2012-07-01T00:00:00.000Z", "key": 1341100800000, "doc_count": 3514, "interval_diff": { "value": 3493 } }, { "key_as_string": "2012-06-01T00:00:00.000Z", "key": 1338508800000, "doc_count": 21 } ] } }, { "key": "Credit reporting", "doc_count": 140432, "product": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [] }, "trend_period": { "buckets": [ { "key_as_string": "2017-04-01T00:00:00.000Z", "key": 1491004800000, "doc_count": 3756, "interval_diff": { "value": -950 } }, { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 4706, "interval_diff": { "value": 561 } }, { "key_as_string": "2017-02-01T00:00:00.000Z", "key": 1485907200000, "doc_count": 4145, "interval_diff": { "value": 165 } }, { "key_as_string": "2017-01-01T00:00:00.000Z", "key": 1483228800000, "doc_count": 3980, "interval_diff": { "value": 803 } }, { "key_as_string": "2016-12-01T00:00:00.000Z", "key": 1480550400000, "doc_count": 3177, "interval_diff": { "value": -100 } }, { "key_as_string": "2016-11-01T00:00:00.000Z", "key": 1477958400000, "doc_count": 3277, "interval_diff": { "value": -1056 } }, { "key_as_string": "2016-10-01T00:00:00.000Z", "key": 1475280000000, "doc_count": 4333, "interval_diff": { "value": 712 } }, { "key_as_string": "2016-09-01T00:00:00.000Z", "key": 1472688000000, "doc_count": 3621, "interval_diff": { "value": -325 } }, { "key_as_string": "2016-08-01T00:00:00.000Z", "key": 1470009600000, "doc_count": 3946, "interval_diff": { "value": -450 } }, { "key_as_string": "2016-07-01T00:00:00.000Z", "key": 1467331200000, "doc_count": 4396, "interval_diff": { "value": 494 } }, { "key_as_string": "2016-06-01T00:00:00.000Z", "key": 1464739200000, "doc_count": 3902, "interval_diff": { "value": 77 } }, { "key_as_string": "2016-05-01T00:00:00.000Z", "key": 1462060800000, "doc_count": 3825, "interval_diff": { "value": 60 } }, { "key_as_string": "2016-04-01T00:00:00.000Z", "key": 1459468800000, "doc_count": 3765, "interval_diff": { "value": -277 } }, { "key_as_string": "2016-03-01T00:00:00.000Z", "key": 1456790400000, "doc_count": 4042, "interval_diff": { "value": 1003 } }, { "key_as_string": "2016-02-01T00:00:00.000Z", "key": 1454284800000, "doc_count": 3039, "interval_diff": { "value": 281 } }, { "key_as_string": "2016-01-01T00:00:00.000Z", "key": 1451606400000, "doc_count": 2758, "interval_diff": { "value": 80 } }, { "key_as_string": "2015-12-01T00:00:00.000Z", "key": 1448928000000, "doc_count": 2678, "interval_diff": { "value": -164 } }, { "key_as_string": "2015-11-01T00:00:00.000Z", "key": 1446336000000, "doc_count": 2842, "interval_diff": { "value": 33 } }, { "key_as_string": "2015-10-01T00:00:00.000Z", "key": 1443657600000, "doc_count": 2809, "interval_diff": { "value": -80 } }, { "key_as_string": "2015-09-01T00:00:00.000Z", "key": 1441065600000, "doc_count": 2889, "interval_diff": { "value": -540 } }, { "key_as_string": "2015-08-01T00:00:00.000Z", "key": 1438387200000, "doc_count": 3429, "interval_diff": { "value": -258 } }, { "key_as_string": "2015-07-01T00:00:00.000Z", "key": 1435708800000, "doc_count": 3687, "interval_diff": { "value": 978 } }, { "key_as_string": "2015-06-01T00:00:00.000Z", "key": 1433116800000, "doc_count": 2709, "interval_diff": { "value": 53 } }, { "key_as_string": "2015-05-01T00:00:00.000Z", "key": 1430438400000, "doc_count": 2656, "interval_diff": { "value": -32 } }, { "key_as_string": "2015-04-01T00:00:00.000Z", "key": 1427846400000, "doc_count": 2688, "interval_diff": { "value": -139 } }, { "key_as_string": "2015-03-01T00:00:00.000Z", "key": 1425168000000, "doc_count": 2827, "interval_diff": { "value": 445 } }, { "key_as_string": "2015-02-01T00:00:00.000Z", "key": 1422748800000, "doc_count": 2382, "interval_diff": { "value": -294 } }, { "key_as_string": "2015-01-01T00:00:00.000Z", "key": 1420070400000, "doc_count": 2676, "interval_diff": { "value": 486 } }, { "key_as_string": "2014-12-01T00:00:00.000Z", "key": 1417392000000, "doc_count": 2190, "interval_diff": { "value": 11 } }, { "key_as_string": "2014-11-01T00:00:00.000Z", "key": 1414800000000, "doc_count": 2179, "interval_diff": { "value": -84 } }, { "key_as_string": "2014-10-01T00:00:00.000Z", "key": 1412121600000, "doc_count": 2263, "interval_diff": { "value": -219 } }, { "key_as_string": "2014-09-01T00:00:00.000Z", "key": 1409529600000, "doc_count": 2482, "interval_diff": { "value": -186 } }, { "key_as_string": "2014-08-01T00:00:00.000Z", "key": 1406851200000, "doc_count": 2668, "interval_diff": { "value": 9 } }, { "key_as_string": "2014-07-01T00:00:00.000Z", "key": 1404172800000, "doc_count": 2659, "interval_diff": { "value": 194 } }, { "key_as_string": "2014-06-01T00:00:00.000Z", "key": 1401580800000, "doc_count": 2465, "interval_diff": { "value": 165 } }, { "key_as_string": "2014-05-01T00:00:00.000Z", "key": 1398902400000, "doc_count": 2300, "interval_diff": { "value": -249 } }, { "key_as_string": "2014-04-01T00:00:00.000Z", "key": 1396310400000, "doc_count": 2549, "interval_diff": { "value": -40 } }, { "key_as_string": "2014-03-01T00:00:00.000Z", "key": 1393632000000, "doc_count": 2589, "interval_diff": { "value": 51 } }, { "key_as_string": "2014-02-01T00:00:00.000Z", "key": 1391212800000, "doc_count": 2538, "interval_diff": { "value": 181 } }, { "key_as_string": "2014-01-01T00:00:00.000Z", "key": 1388534400000, "doc_count": 2357, "interval_diff": { "value": 1060 } }, { "key_as_string": "2013-12-01T00:00:00.000Z", "key": 1385856000000, "doc_count": 1297, "interval_diff": { "value": -3 } }, { "key_as_string": "2013-11-01T00:00:00.000Z", "key": 1383264000000, "doc_count": 1300, "interval_diff": { "value": 10 } }, { "key_as_string": "2013-10-01T00:00:00.000Z", "key": 1380585600000, "doc_count": 1290, "interval_diff": { "value": -157 } }, { "key_as_string": "2013-09-01T00:00:00.000Z", "key": 1377993600000, "doc_count": 1447, "interval_diff": { "value": 194 } }, { "key_as_string": "2013-08-01T00:00:00.000Z", "key": 1375315200000, "doc_count": 1253, "interval_diff": { "value": 4 } }, { "key_as_string": "2013-07-01T00:00:00.000Z", "key": 1372636800000, "doc_count": 1249, "interval_diff": { "value": 137 } }, { "key_as_string": "2013-06-01T00:00:00.000Z", "key": 1370044800000, "doc_count": 1112, "interval_diff": { "value": -95 } }, { "key_as_string": "2013-05-01T00:00:00.000Z", "key": 1367366400000, "doc_count": 1207, "interval_diff": { "value": 56 } }, { "key_as_string": "2013-04-01T00:00:00.000Z", "key": 1364774400000, "doc_count": 1151, "interval_diff": { "value": 53 } }, { "key_as_string": "2013-03-01T00:00:00.000Z", "key": 1362096000000, "doc_count": 1098, "interval_diff": { "value": 33 } }, { "key_as_string": "2013-02-01T00:00:00.000Z", "key": 1359676800000, "doc_count": 1065, "interval_diff": { "value": 154 } }, { "key_as_string": "2013-01-01T00:00:00.000Z", "key": 1356998400000, "doc_count": 911, "interval_diff": { "value": 180 } }, { "key_as_string": "2012-12-01T00:00:00.000Z", "key": 1354320000000, "doc_count": 731, "interval_diff": { "value": -51 } }, { "key_as_string": "2012-11-01T00:00:00.000Z", "key": 1351728000000, "doc_count": 782, "interval_diff": { "value": 422 } }, { "key_as_string": "2012-10-01T00:00:00.000Z", "key": 1349049600000, "doc_count": 360 } ] } }, { "key": "Bank account or service", "doc_count": 80702, "product": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Checking account", "doc_count": 54713, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 1155, "interval_diff": { "value": 89 } } ] } }, { "key": "Other bank product/service", "doc_count": 17476, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 567, "interval_diff": { "value": 17 } } ] } }, { "key": "Savings account", "doc_count": 4914, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 140, "interval_diff": { "value": 20 } } ] } }, { "key": "(CD) Certificate of deposit", "doc_count": 3024, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 64, "interval_diff": { "value": 20 } } ] } }, { "key": "Cashing a check without an account", "doc_count": 575, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 13, "interval_diff": { "value": 1 } } ] } } ] }, "trend_period": { "buckets": [ { "key_as_string": "2017-04-01T00:00:00.000Z", "key": 1491004800000, "doc_count": 1236, "interval_diff": { "value": -703 } }, { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 1939, "interval_diff": { "value": 147 } }, { "key_as_string": "2017-02-01T00:00:00.000Z", "key": 1485907200000, "doc_count": 1792, "interval_diff": { "value": -197 } }, { "key_as_string": "2017-01-01T00:00:00.000Z", "key": 1483228800000, "doc_count": 1989, "interval_diff": { "value": 116 } }, { "key_as_string": "2016-12-01T00:00:00.000Z", "key": 1480550400000, "doc_count": 1873, "interval_diff": { "value": 21 } }, { "key_as_string": "2016-11-01T00:00:00.000Z", "key": 1477958400000, "doc_count": 1852, "interval_diff": { "value": -336 } }, { "key_as_string": "2016-10-01T00:00:00.000Z", "key": 1475280000000, "doc_count": 2188, "interval_diff": { "value": -234 } }, { "key_as_string": "2016-09-01T00:00:00.000Z", "key": 1472688000000, "doc_count": 2422, "interval_diff": { "value": 419 } }, { "key_as_string": "2016-08-01T00:00:00.000Z", "key": 1470009600000, "doc_count": 2003, "interval_diff": { "value": 155 } }, { "key_as_string": "2016-07-01T00:00:00.000Z", "key": 1467331200000, "doc_count": 1848, "interval_diff": { "value": -142 } }, { "key_as_string": "2016-06-01T00:00:00.000Z", "key": 1464739200000, "doc_count": 1990, "interval_diff": { "value": 304 } }, { "key_as_string": "2016-05-01T00:00:00.000Z", "key": 1462060800000, "doc_count": 1686, "interval_diff": { "value": 290 } }, { "key_as_string": "2016-04-01T00:00:00.000Z", "key": 1459468800000, "doc_count": 1396, "interval_diff": { "value": -143 } }, { "key_as_string": "2016-03-01T00:00:00.000Z", "key": 1456790400000, "doc_count": 1539, "interval_diff": { "value": 151 } }, { "key_as_string": "2016-02-01T00:00:00.000Z", "key": 1454284800000, "doc_count": 1388, "interval_diff": { "value": -275 } }, { "key_as_string": "2016-01-01T00:00:00.000Z", "key": 1451606400000, "doc_count": 1663, "interval_diff": { "value": 164 } }, { "key_as_string": "2015-12-01T00:00:00.000Z", "key": 1448928000000, "doc_count": 1499, "interval_diff": { "value": -11 } }, { "key_as_string": "2015-11-01T00:00:00.000Z", "key": 1446336000000, "doc_count": 1510, "interval_diff": { "value": -248 } }, { "key_as_string": "2015-10-01T00:00:00.000Z", "key": 1443657600000, "doc_count": 1758, "interval_diff": { "value": 295 } }, { "key_as_string": "2015-09-01T00:00:00.000Z", "key": 1441065600000, "doc_count": 1463, "interval_diff": { "value": -89 } }, { "key_as_string": "2015-08-01T00:00:00.000Z", "key": 1438387200000, "doc_count": 1552, "interval_diff": { "value": 20 } }, { "key_as_string": "2015-07-01T00:00:00.000Z", "key": 1435708800000, "doc_count": 1532, "interval_diff": { "value": 21 } }, { "key_as_string": "2015-06-01T00:00:00.000Z", "key": 1433116800000, "doc_count": 1511, "interval_diff": { "value": 220 } }, { "key_as_string": "2015-05-01T00:00:00.000Z", "key": 1430438400000, "doc_count": 1291, "interval_diff": { "value": -49 } }, { "key_as_string": "2015-04-01T00:00:00.000Z", "key": 1427846400000, "doc_count": 1340, "interval_diff": { "value": 25 } }, { "key_as_string": "2015-03-01T00:00:00.000Z", "key": 1425168000000, "doc_count": 1315, "interval_diff": { "value": 206 } }, { "key_as_string": "2015-02-01T00:00:00.000Z", "key": 1422748800000, "doc_count": 1109, "interval_diff": { "value": -151 } }, { "key_as_string": "2015-01-01T00:00:00.000Z", "key": 1420070400000, "doc_count": 1260, "interval_diff": { "value": 123 } }, { "key_as_string": "2014-12-01T00:00:00.000Z", "key": 1417392000000, "doc_count": 1137, "interval_diff": { "value": 63 } }, { "key_as_string": "2014-11-01T00:00:00.000Z", "key": 1414800000000, "doc_count": 1074, "interval_diff": { "value": -210 } }, { "key_as_string": "2014-10-01T00:00:00.000Z", "key": 1412121600000, "doc_count": 1284, "interval_diff": { "value": 98 } }, { "key_as_string": "2014-09-01T00:00:00.000Z", "key": 1409529600000, "doc_count": 1186, "interval_diff": { "value": 6 } }, { "key_as_string": "2014-08-01T00:00:00.000Z", "key": 1406851200000, "doc_count": 1180, "interval_diff": { "value": -162 } }, { "key_as_string": "2014-07-01T00:00:00.000Z", "key": 1404172800000, "doc_count": 1342, "interval_diff": { "value": 119 } }, { "key_as_string": "2014-06-01T00:00:00.000Z", "key": 1401580800000, "doc_count": 1223, "interval_diff": { "value": -13 } }, { "key_as_string": "2014-05-01T00:00:00.000Z", "key": 1398902400000, "doc_count": 1236, "interval_diff": { "value": -41 } }, { "key_as_string": "2014-04-01T00:00:00.000Z", "key": 1396310400000, "doc_count": 1277, "interval_diff": { "value": -9 } }, { "key_as_string": "2014-03-01T00:00:00.000Z", "key": 1393632000000, "doc_count": 1286, "interval_diff": { "value": 108 } }, { "key_as_string": "2014-02-01T00:00:00.000Z", "key": 1391212800000, "doc_count": 1178, "interval_diff": { "value": -81 } }, { "key_as_string": "2014-01-01T00:00:00.000Z", "key": 1388534400000, "doc_count": 1259, "interval_diff": { "value": 181 } }, { "key_as_string": "2013-12-01T00:00:00.000Z", "key": 1385856000000, "doc_count": 1078, "interval_diff": { "value": 31 } }, { "key_as_string": "2013-11-01T00:00:00.000Z", "key": 1383264000000, "doc_count": 1047, "interval_diff": { "value": -179 } }, { "key_as_string": "2013-10-01T00:00:00.000Z", "key": 1380585600000, "doc_count": 1226, "interval_diff": { "value": 97 } }, { "key_as_string": "2013-09-01T00:00:00.000Z", "key": 1377993600000, "doc_count": 1129, "interval_diff": { "value": 10 } }, { "key_as_string": "2013-08-01T00:00:00.000Z", "key": 1375315200000, "doc_count": 1119, "interval_diff": { "value": -61 } }, { "key_as_string": "2013-07-01T00:00:00.000Z", "key": 1372636800000, "doc_count": 1180, "interval_diff": { "value": 129 } }, { "key_as_string": "2013-06-01T00:00:00.000Z", "key": 1370044800000, "doc_count": 1051, "interval_diff": { "value": 30 } }, { "key_as_string": "2013-05-01T00:00:00.000Z", "key": 1367366400000, "doc_count": 1021, "interval_diff": { "value": 16 } }, { "key_as_string": "2013-04-01T00:00:00.000Z", "key": 1364774400000, "doc_count": 1005, "interval_diff": { "value": -216 } }, { "key_as_string": "2013-03-01T00:00:00.000Z", "key": 1362096000000, "doc_count": 1221, "interval_diff": { "value": 143 } }, { "key_as_string": "2013-02-01T00:00:00.000Z", "key": 1359676800000, "doc_count": 1078, "interval_diff": { "value": -155 } }, { "key_as_string": "2013-01-01T00:00:00.000Z", "key": 1356998400000, "doc_count": 1233, "interval_diff": { "value": 319 } }, { "key_as_string": "2012-12-01T00:00:00.000Z", "key": 1354320000000, "doc_count": 914, "interval_diff": { "value": -26 } }, { "key_as_string": "2012-11-01T00:00:00.000Z", "key": 1351728000000, "doc_count": 940, "interval_diff": { "value": -266 } }, { "key_as_string": "2012-10-01T00:00:00.000Z", "key": 1349049600000, "doc_count": 1206, "interval_diff": { "value": 120 } }, { "key_as_string": "2012-09-01T00:00:00.000Z", "key": 1346457600000, "doc_count": 1086, "interval_diff": { "value": -172 } }, { "key_as_string": "2012-08-01T00:00:00.000Z", "key": 1343779200000, "doc_count": 1258, "interval_diff": { "value": -41 } }, { "key_as_string": "2012-07-01T00:00:00.000Z", "key": 1341100800000, "doc_count": 1299, "interval_diff": { "value": 1294 } }, { "key_as_string": "2012-06-01T00:00:00.000Z", "key": 1338508800000, "doc_count": 5 } ] } } ] } }, "max_date": { "value": 1589821200000, "value_as_string": "2020-05-18T12:00:00-05:00" }, "issue": { "doc_count": 1554659, "issue": { "doc_count_error_upper_bound": 13689, "sum_other_doc_count": 942776, "buckets": [ { "key": "Incorrect information on your report", "doc_count": 247706, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 654, "interval_diff": { "value": -14805 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 15459, "interval_diff": { "value": 2996 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 12463, "interval_diff": { "value": 2832 } }, { "key_as_string": "2020-02-01T00:00:00.000Z", "key": 1580515200000, "doc_count": 9631, "interval_diff": { "value": -699 } }, { "key_as_string": "2020-01-01T00:00:00.000Z", "key": 1577836800000, "doc_count": 10330, "interval_diff": { "value": 2790 } }, { "key_as_string": "2019-12-01T00:00:00.000Z", "key": 1575158400000, "doc_count": 7540, "interval_diff": { "value": -621 } }, { "key_as_string": "2019-11-01T00:00:00.000Z", "key": 1572566400000, "doc_count": 8161, "interval_diff": { "value": -701 } }, { "key_as_string": "2019-10-01T00:00:00.000Z", "key": 1569888000000, "doc_count": 8862, "interval_diff": { "value": 443 } }, { "key_as_string": "2019-09-01T00:00:00.000Z", "key": 1567296000000, "doc_count": 8419, "interval_diff": { "value": -492 } }, { "key_as_string": "2019-08-01T00:00:00.000Z", "key": 1564617600000, "doc_count": 8911, "interval_diff": { "value": 598 } }, { "key_as_string": "2019-07-01T00:00:00.000Z", "key": 1561939200000, "doc_count": 8313, "interval_diff": { "value": 671 } }, { "key_as_string": "2019-06-01T00:00:00.000Z", "key": 1559347200000, "doc_count": 7642, "interval_diff": { "value": -37 } }, { "key_as_string": "2019-05-01T00:00:00.000Z", "key": 1556668800000, "doc_count": 7679, "interval_diff": { "value": 706 } }, { "key_as_string": "2019-04-01T00:00:00.000Z", "key": 1554076800000, "doc_count": 6973, "interval_diff": { "value": -47 } }, { "key_as_string": "2019-03-01T00:00:00.000Z", "key": 1551398400000, "doc_count": 7020, "interval_diff": { "value": 1193 } }, { "key_as_string": "2019-02-01T00:00:00.000Z", "key": 1548979200000, "doc_count": 5827, "interval_diff": { "value": 224 } }, { "key_as_string": "2019-01-01T00:00:00.000Z", "key": 1546300800000, "doc_count": 5603, "interval_diff": { "value": 424 } }, { "key_as_string": "2018-12-01T00:00:00.000Z", "key": 1543622400000, "doc_count": 5179, "interval_diff": { "value": -670 } }, { "key_as_string": "2018-11-01T00:00:00.000Z", "key": 1541030400000, "doc_count": 5849, "interval_diff": { "value": -502 } }, { "key_as_string": "2018-10-01T00:00:00.000Z", "key": 1538352000000, "doc_count": 6351, "interval_diff": { "value": 931 } }, { "key_as_string": "2018-09-01T00:00:00.000Z", "key": 1535760000000, "doc_count": 5420, "interval_diff": { "value": -672 } }, { "key_as_string": "2018-08-01T00:00:00.000Z", "key": 1533081600000, "doc_count": 6092, "interval_diff": { "value": 328 } }, { "key_as_string": "2018-07-01T00:00:00.000Z", "key": 1530403200000, "doc_count": 5764, "interval_diff": { "value": 418 } }, { "key_as_string": "2018-06-01T00:00:00.000Z", "key": 1527811200000, "doc_count": 5346, "interval_diff": { "value": -632 } }, { "key_as_string": "2018-05-01T00:00:00.000Z", "key": 1525132800000, "doc_count": 5978, "interval_diff": { "value": -481 } }, { "key_as_string": "2018-04-01T00:00:00.000Z", "key": 1522540800000, "doc_count": 6459, "interval_diff": { "value": 363 } }, { "key_as_string": "2018-03-01T00:00:00.000Z", "key": 1519862400000, "doc_count": 6096, "interval_diff": { "value": 342 } }, { "key_as_string": "2018-02-01T00:00:00.000Z", "key": 1517443200000, "doc_count": 5754, "interval_diff": { "value": -202 } }, { "key_as_string": "2018-01-01T00:00:00.000Z", "key": 1514764800000, "doc_count": 5956, "interval_diff": { "value": 1279 } }, { "key_as_string": "2017-12-01T00:00:00.000Z", "key": 1512086400000, "doc_count": 4677, "interval_diff": { "value": 201 } }, { "key_as_string": "2017-11-01T00:00:00.000Z", "key": 1509494400000, "doc_count": 4476, "interval_diff": { "value": -431 } }, { "key_as_string": "2017-10-01T00:00:00.000Z", "key": 1506816000000, "doc_count": 4907, "interval_diff": { "value": 416 } }, { "key_as_string": "2017-09-01T00:00:00.000Z", "key": 1504224000000, "doc_count": 4491, "interval_diff": { "value": -745 } }, { "key_as_string": "2017-08-01T00:00:00.000Z", "key": 1501545600000, "doc_count": 5236, "interval_diff": { "value": 559 } }, { "key_as_string": "2017-07-01T00:00:00.000Z", "key": 1498867200000, "doc_count": 4677, "interval_diff": { "value": 587 } }, { "key_as_string": "2017-06-01T00:00:00.000Z", "key": 1496275200000, "doc_count": 4090, "interval_diff": { "value": -186 } }, { "key_as_string": "2017-05-01T00:00:00.000Z", "key": 1493596800000, "doc_count": 4276, "interval_diff": { "value": 3131 } }, { "key_as_string": "2017-04-01T00:00:00.000Z", "key": 1491004800000, "doc_count": 1145 } ] }, "issue": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Information belongs to someone else", "doc_count": 135795, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 11481, "interval_diff": { "value": 2458 } } ] } }, { "key": "Account status incorrect", "doc_count": 39240, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1363, "interval_diff": { "value": 34 } } ] } }, { "key": "Account information incorrect", "doc_count": 35733, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1328, "interval_diff": { "value": 271 } } ] } }, { "key": "Personal information incorrect", "doc_count": 11632, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 507, "interval_diff": { "value": 98 } } ] } }, { "key": "Public record information inaccurate", "doc_count": 9279, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 260, "interval_diff": { "value": 14 } } ] } }, { "key": "Old information reappears or never goes away", "doc_count": 9275, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 278, "interval_diff": { "value": 52 } } ] } }, { "key": "Information is missing that should be on the report", "doc_count": 4492, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 175, "interval_diff": { "value": 62 } } ] } }, { "key": "Information is incorrect", "doc_count": 684, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 16, "interval_diff": { "value": 1 } } ] } }, { "key": "Information that should be on the report is missing", "doc_count": 115, "trend_period": { "buckets": [ { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 2, "interval_diff": { "value": -1 } } ] } }, { "key": "Incorrect information on your report", "doc_count": 1, "trend_period": { "buckets": [] } } ] } }, { "key": "Incorrect information on credit report", "doc_count": 102686, "trend_period": { "buckets": [ { "key_as_string": "2017-04-01T00:00:00.000Z", "key": 1491004800000, "doc_count": 2819, "interval_diff": { "value": -585 } }, { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 3404, "interval_diff": { "value": 286 } }, { "key_as_string": "2017-02-01T00:00:00.000Z", "key": 1485907200000, "doc_count": 3118, "interval_diff": { "value": 153 } }, { "key_as_string": "2017-01-01T00:00:00.000Z", "key": 1483228800000, "doc_count": 2965, "interval_diff": { "value": 585 } }, { "key_as_string": "2016-12-01T00:00:00.000Z", "key": 1480550400000, "doc_count": 2380, "interval_diff": { "value": -92 } }, { "key_as_string": "2016-11-01T00:00:00.000Z", "key": 1477958400000, "doc_count": 2472, "interval_diff": { "value": -851 } }, { "key_as_string": "2016-10-01T00:00:00.000Z", "key": 1475280000000, "doc_count": 3323, "interval_diff": { "value": 605 } }, { "key_as_string": "2016-09-01T00:00:00.000Z", "key": 1472688000000, "doc_count": 2718, "interval_diff": { "value": -105 } }, { "key_as_string": "2016-08-01T00:00:00.000Z", "key": 1470009600000, "doc_count": 2823, "interval_diff": { "value": -384 } }, { "key_as_string": "2016-07-01T00:00:00.000Z", "key": 1467331200000, "doc_count": 3207, "interval_diff": { "value": 316 } }, { "key_as_string": "2016-06-01T00:00:00.000Z", "key": 1464739200000, "doc_count": 2891, "interval_diff": { "value": 124 } }, { "key_as_string": "2016-05-01T00:00:00.000Z", "key": 1462060800000, "doc_count": 2767, "interval_diff": { "value": 83 } }, { "key_as_string": "2016-04-01T00:00:00.000Z", "key": 1459468800000, "doc_count": 2684, "interval_diff": { "value": -307 } }, { "key_as_string": "2016-03-01T00:00:00.000Z", "key": 1456790400000, "doc_count": 2991, "interval_diff": { "value": 670 } }, { "key_as_string": "2016-02-01T00:00:00.000Z", "key": 1454284800000, "doc_count": 2321, "interval_diff": { "value": 328 } }, { "key_as_string": "2016-01-01T00:00:00.000Z", "key": 1451606400000, "doc_count": 1993, "interval_diff": { "value": 49 } }, { "key_as_string": "2015-12-01T00:00:00.000Z", "key": 1448928000000, "doc_count": 1944, "interval_diff": { "value": -136 } }, { "key_as_string": "2015-11-01T00:00:00.000Z", "key": 1446336000000, "doc_count": 2080, "interval_diff": { "value": 36 } }, { "key_as_string": "2015-10-01T00:00:00.000Z", "key": 1443657600000, "doc_count": 2044, "interval_diff": { "value": -113 } }, { "key_as_string": "2015-09-01T00:00:00.000Z", "key": 1441065600000, "doc_count": 2157, "interval_diff": { "value": -340 } }, { "key_as_string": "2015-08-01T00:00:00.000Z", "key": 1438387200000, "doc_count": 2497, "interval_diff": { "value": -419 } }, { "key_as_string": "2015-07-01T00:00:00.000Z", "key": 1435708800000, "doc_count": 2916, "interval_diff": { "value": 946 } }, { "key_as_string": "2015-06-01T00:00:00.000Z", "key": 1433116800000, "doc_count": 1970, "interval_diff": { "value": -50 } }, { "key_as_string": "2015-05-01T00:00:00.000Z", "key": 1430438400000, "doc_count": 2020, "interval_diff": { "value": 41 } }, { "key_as_string": "2015-04-01T00:00:00.000Z", "key": 1427846400000, "doc_count": 1979, "interval_diff": { "value": -105 } }, { "key_as_string": "2015-03-01T00:00:00.000Z", "key": 1425168000000, "doc_count": 2084, "interval_diff": { "value": 322 } }, { "key_as_string": "2015-02-01T00:00:00.000Z", "key": 1422748800000, "doc_count": 1762, "interval_diff": { "value": -245 } }, { "key_as_string": "2015-01-01T00:00:00.000Z", "key": 1420070400000, "doc_count": 2007, "interval_diff": { "value": 371 } }, { "key_as_string": "2014-12-01T00:00:00.000Z", "key": 1417392000000, "doc_count": 1636, "interval_diff": { "value": -8 } }, { "key_as_string": "2014-11-01T00:00:00.000Z", "key": 1414800000000, "doc_count": 1644, "interval_diff": { "value": 2 } }, { "key_as_string": "2014-10-01T00:00:00.000Z", "key": 1412121600000, "doc_count": 1642, "interval_diff": { "value": -293 } }, { "key_as_string": "2014-09-01T00:00:00.000Z", "key": 1409529600000, "doc_count": 1935, "interval_diff": { "value": -62 } }, { "key_as_string": "2014-08-01T00:00:00.000Z", "key": 1406851200000, "doc_count": 1997, "interval_diff": { "value": 22 } }, { "key_as_string": "2014-07-01T00:00:00.000Z", "key": 1404172800000, "doc_count": 1975, "interval_diff": { "value": 74 } }, { "key_as_string": "2014-06-01T00:00:00.000Z", "key": 1401580800000, "doc_count": 1901, "interval_diff": { "value": 226 } }, { "key_as_string": "2014-05-01T00:00:00.000Z", "key": 1398902400000, "doc_count": 1675, "interval_diff": { "value": -200 } }, { "key_as_string": "2014-04-01T00:00:00.000Z", "key": 1396310400000, "doc_count": 1875, "interval_diff": { "value": 65 } }, { "key_as_string": "2014-03-01T00:00:00.000Z", "key": 1393632000000, "doc_count": 1810, "interval_diff": { "value": -26 } }, { "key_as_string": "2014-02-01T00:00:00.000Z", "key": 1391212800000, "doc_count": 1836, "interval_diff": { "value": 170 } }, { "key_as_string": "2014-01-01T00:00:00.000Z", "key": 1388534400000, "doc_count": 1666, "interval_diff": { "value": 813 } }, { "key_as_string": "2013-12-01T00:00:00.000Z", "key": 1385856000000, "doc_count": 853, "interval_diff": { "value": -41 } }, { "key_as_string": "2013-11-01T00:00:00.000Z", "key": 1383264000000, "doc_count": 894, "interval_diff": { "value": 5 } }, { "key_as_string": "2013-10-01T00:00:00.000Z", "key": 1380585600000, "doc_count": 889, "interval_diff": { "value": -69 } }, { "key_as_string": "2013-09-01T00:00:00.000Z", "key": 1377993600000, "doc_count": 958, "interval_diff": { "value": 111 } }, { "key_as_string": "2013-08-01T00:00:00.000Z", "key": 1375315200000, "doc_count": 847, "interval_diff": { "value": 70 } }, { "key_as_string": "2013-07-01T00:00:00.000Z", "key": 1372636800000, "doc_count": 777, "interval_diff": { "value": 67 } }, { "key_as_string": "2013-06-01T00:00:00.000Z", "key": 1370044800000, "doc_count": 710, "interval_diff": { "value": -57 } }, { "key_as_string": "2013-05-01T00:00:00.000Z", "key": 1367366400000, "doc_count": 767, "interval_diff": { "value": 22 } }, { "key_as_string": "2013-04-01T00:00:00.000Z", "key": 1364774400000, "doc_count": 745, "interval_diff": { "value": 38 } }, { "key_as_string": "2013-03-01T00:00:00.000Z", "key": 1362096000000, "doc_count": 707, "interval_diff": { "value": -30 } }, { "key_as_string": "2013-02-01T00:00:00.000Z", "key": 1359676800000, "doc_count": 737, "interval_diff": { "value": 122 } }, { "key_as_string": "2013-01-01T00:00:00.000Z", "key": 1356998400000, "doc_count": 615, "interval_diff": { "value": 135 } }, { "key_as_string": "2012-12-01T00:00:00.000Z", "key": 1354320000000, "doc_count": 480, "interval_diff": { "value": -68 } }, { "key_as_string": "2012-11-01T00:00:00.000Z", "key": 1351728000000, "doc_count": 548, "interval_diff": { "value": 317 } }, { "key_as_string": "2012-10-01T00:00:00.000Z", "key": 1349049600000, "doc_count": 231 } ] }, "issue": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Account status", "doc_count": 37057, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 1005, "interval_diff": { "value": 87 } } ] } }, { "key": "Information is not mine", "doc_count": 32384, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 1182, "interval_diff": { "value": 220 } } ] } }, { "key": "Account terms", "doc_count": 10995, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 324, "interval_diff": { "value": -88 } } ] } }, { "key": "Public record", "doc_count": 8876, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 328, "interval_diff": { "value": 27 } } ] } }, { "key": "Personal information", "doc_count": 7529, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 258, "interval_diff": { "value": 4 } } ] } }, { "key": "Reinserted previously deleted info", "doc_count": 5845, "trend_period": { "buckets": [ { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 307, "interval_diff": { "value": 36 } } ] } } ] } }, { "key": "Loan modification,collection,foreclosure", "doc_count": 101564, "trend_period": { "buckets": [ { "key_as_string": "2017-04-01T00:00:00.000Z", "key": 1491004800000, "doc_count": 630, "interval_diff": { "value": -537 } }, { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 1167, "interval_diff": { "value": 127 } }, { "key_as_string": "2017-02-01T00:00:00.000Z", "key": 1485907200000, "doc_count": 1040, "interval_diff": { "value": -149 } }, { "key_as_string": "2017-01-01T00:00:00.000Z", "key": 1483228800000, "doc_count": 1189, "interval_diff": { "value": 91 } }, { "key_as_string": "2016-12-01T00:00:00.000Z", "key": 1480550400000, "doc_count": 1098, "interval_diff": { "value": -48 } }, { "key_as_string": "2016-11-01T00:00:00.000Z", "key": 1477958400000, "doc_count": 1146, "interval_diff": { "value": -214 } }, { "key_as_string": "2016-10-01T00:00:00.000Z", "key": 1475280000000, "doc_count": 1360, "interval_diff": { "value": -59 } }, { "key_as_string": "2016-09-01T00:00:00.000Z", "key": 1472688000000, "doc_count": 1419, "interval_diff": { "value": 26 } }, { "key_as_string": "2016-08-01T00:00:00.000Z", "key": 1470009600000, "doc_count": 1393, "interval_diff": { "value": 187 } }, { "key_as_string": "2016-07-01T00:00:00.000Z", "key": 1467331200000, "doc_count": 1206, "interval_diff": { "value": -144 } }, { "key_as_string": "2016-06-01T00:00:00.000Z", "key": 1464739200000, "doc_count": 1350, "interval_diff": { "value": -22 } }, { "key_as_string": "2016-05-01T00:00:00.000Z", "key": 1462060800000, "doc_count": 1372, "interval_diff": { "value": -49 } }, { "key_as_string": "2016-04-01T00:00:00.000Z", "key": 1459468800000, "doc_count": 1421, "interval_diff": { "value": -213 } }, { "key_as_string": "2016-03-01T00:00:00.000Z", "key": 1456790400000, "doc_count": 1634, "interval_diff": { "value": 229 } }, { "key_as_string": "2016-02-01T00:00:00.000Z", "key": 1454284800000, "doc_count": 1405, "interval_diff": { "value": -39 } }, { "key_as_string": "2016-01-01T00:00:00.000Z", "key": 1451606400000, "doc_count": 1444, "interval_diff": { "value": 166 } }, { "key_as_string": "2015-12-01T00:00:00.000Z", "key": 1448928000000, "doc_count": 1278, "interval_diff": { "value": -59 } }, { "key_as_string": "2015-11-01T00:00:00.000Z", "key": 1446336000000, "doc_count": 1337, "interval_diff": { "value": -254 } }, { "key_as_string": "2015-10-01T00:00:00.000Z", "key": 1443657600000, "doc_count": 1591, "interval_diff": { "value": -4 } }, { "key_as_string": "2015-09-01T00:00:00.000Z", "key": 1441065600000, "doc_count": 1595, "interval_diff": { "value": -259 } }, { "key_as_string": "2015-08-01T00:00:00.000Z", "key": 1438387200000, "doc_count": 1854, "interval_diff": { "value": 292 } }, { "key_as_string": "2015-07-01T00:00:00.000Z", "key": 1435708800000, "doc_count": 1562, "interval_diff": { "value": -125 } }, { "key_as_string": "2015-06-01T00:00:00.000Z", "key": 1433116800000, "doc_count": 1687, "interval_diff": { "value": 43 } }, { "key_as_string": "2015-05-01T00:00:00.000Z", "key": 1430438400000, "doc_count": 1644, "interval_diff": { "value": -37 } }, { "key_as_string": "2015-04-01T00:00:00.000Z", "key": 1427846400000, "doc_count": 1681, "interval_diff": { "value": 86 } }, { "key_as_string": "2015-03-01T00:00:00.000Z", "key": 1425168000000, "doc_count": 1595, "interval_diff": { "value": 217 } }, { "key_as_string": "2015-02-01T00:00:00.000Z", "key": 1422748800000, "doc_count": 1378, "interval_diff": { "value": -53 } }, { "key_as_string": "2015-01-01T00:00:00.000Z", "key": 1420070400000, "doc_count": 1431, "interval_diff": { "value": -36 } }, { "key_as_string": "2014-12-01T00:00:00.000Z", "key": 1417392000000, "doc_count": 1467, "interval_diff": { "value": 36 } }, { "key_as_string": "2014-11-01T00:00:00.000Z", "key": 1414800000000, "doc_count": 1431, "interval_diff": { "value": -478 } }, { "key_as_string": "2014-10-01T00:00:00.000Z", "key": 1412121600000, "doc_count": 1909, "interval_diff": { "value": 224 } }, { "key_as_string": "2014-09-01T00:00:00.000Z", "key": 1409529600000, "doc_count": 1685, "interval_diff": { "value": -160 } }, { "key_as_string": "2014-08-01T00:00:00.000Z", "key": 1406851200000, "doc_count": 1845, "interval_diff": { "value": -17 } }, { "key_as_string": "2014-07-01T00:00:00.000Z", "key": 1404172800000, "doc_count": 1862, "interval_diff": { "value": 85 } }, { "key_as_string": "2014-06-01T00:00:00.000Z", "key": 1401580800000, "doc_count": 1777, "interval_diff": { "value": 6 } }, { "key_as_string": "2014-05-01T00:00:00.000Z", "key": 1398902400000, "doc_count": 1771, "interval_diff": { "value": -203 } }, { "key_as_string": "2014-04-01T00:00:00.000Z", "key": 1396310400000, "doc_count": 1974, "interval_diff": { "value": -69 } }, { "key_as_string": "2014-03-01T00:00:00.000Z", "key": 1393632000000, "doc_count": 2043, "interval_diff": { "value": 138 } }, { "key_as_string": "2014-02-01T00:00:00.000Z", "key": 1391212800000, "doc_count": 1905, "interval_diff": { "value": 96 } }, { "key_as_string": "2014-01-01T00:00:00.000Z", "key": 1388534400000, "doc_count": 1809, "interval_diff": { "value": 442 } }, { "key_as_string": "2013-12-01T00:00:00.000Z", "key": 1385856000000, "doc_count": 1367, "interval_diff": { "value": -103 } }, { "key_as_string": "2013-11-01T00:00:00.000Z", "key": 1383264000000, "doc_count": 1470, "interval_diff": { "value": -81 } }, { "key_as_string": "2013-10-01T00:00:00.000Z", "key": 1380585600000, "doc_count": 1551, "interval_diff": { "value": -204 } }, { "key_as_string": "2013-09-01T00:00:00.000Z", "key": 1377993600000, "doc_count": 1755, "interval_diff": { "value": -444 } }, { "key_as_string": "2013-08-01T00:00:00.000Z", "key": 1375315200000, "doc_count": 2199, "interval_diff": { "value": -269 } }, { "key_as_string": "2013-07-01T00:00:00.000Z", "key": 1372636800000, "doc_count": 2468, "interval_diff": { "value": -182 } }, { "key_as_string": "2013-06-01T00:00:00.000Z", "key": 1370044800000, "doc_count": 2650, "interval_diff": { "value": -110 } }, { "key_as_string": "2013-05-01T00:00:00.000Z", "key": 1367366400000, "doc_count": 2760, "interval_diff": { "value": -89 } }, { "key_as_string": "2013-04-01T00:00:00.000Z", "key": 1364774400000, "doc_count": 2849, "interval_diff": { "value": -28 } }, { "key_as_string": "2013-03-01T00:00:00.000Z", "key": 1362096000000, "doc_count": 2877, "interval_diff": { "value": -167 } }, { "key_as_string": "2013-02-01T00:00:00.000Z", "key": 1359676800000, "doc_count": 3044, "interval_diff": { "value": -1105 } }, { "key_as_string": "2013-01-01T00:00:00.000Z", "key": 1356998400000, "doc_count": 4149, "interval_diff": { "value": 2256 } }, { "key_as_string": "2012-12-01T00:00:00.000Z", "key": 1354320000000, "doc_count": 1893, "interval_diff": { "value": 103 } }, { "key_as_string": "2012-11-01T00:00:00.000Z", "key": 1351728000000, "doc_count": 1790, "interval_diff": { "value": -236 } }, { "key_as_string": "2012-10-01T00:00:00.000Z", "key": 1349049600000, "doc_count": 2026, "interval_diff": { "value": 204 } }, { "key_as_string": "2012-09-01T00:00:00.000Z", "key": 1346457600000, "doc_count": 1822, "interval_diff": { "value": -576 } }, { "key_as_string": "2012-08-01T00:00:00.000Z", "key": 1343779200000, "doc_count": 2398, "interval_diff": { "value": 297 } }, { "key_as_string": "2012-07-01T00:00:00.000Z", "key": 1341100800000, "doc_count": 2101, "interval_diff": { "value": 2091 } }, { "key_as_string": "2012-06-01T00:00:00.000Z", "key": 1338508800000, "doc_count": 10 } ] }, "issue": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [] } }, { "key": "Problem with a credit reporting company's investigation into an existing problem", "doc_count": 87778, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 176, "interval_diff": { "value": -4269 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 4445, "interval_diff": { "value": 937 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 3508, "interval_diff": { "value": 714 } }, { "key_as_string": "2020-02-01T00:00:00.000Z", "key": 1580515200000, "doc_count": 2794, "interval_diff": { "value": -489 } }, { "key_as_string": "2020-01-01T00:00:00.000Z", "key": 1577836800000, "doc_count": 3283, "interval_diff": { "value": 462 } }, { "key_as_string": "2019-12-01T00:00:00.000Z", "key": 1575158400000, "doc_count": 2821, "interval_diff": { "value": 203 } }, { "key_as_string": "2019-11-01T00:00:00.000Z", "key": 1572566400000, "doc_count": 2618, "interval_diff": { "value": -517 } }, { "key_as_string": "2019-10-01T00:00:00.000Z", "key": 1569888000000, "doc_count": 3135, "interval_diff": { "value": 664 } }, { "key_as_string": "2019-09-01T00:00:00.000Z", "key": 1567296000000, "doc_count": 2471, "interval_diff": { "value": -381 } }, { "key_as_string": "2019-08-01T00:00:00.000Z", "key": 1564617600000, "doc_count": 2852, "interval_diff": { "value": -142 } }, { "key_as_string": "2019-07-01T00:00:00.000Z", "key": 1561939200000, "doc_count": 2994, "interval_diff": { "value": 107 } }, { "key_as_string": "2019-06-01T00:00:00.000Z", "key": 1559347200000, "doc_count": 2887, "interval_diff": { "value": 195 } }, { "key_as_string": "2019-05-01T00:00:00.000Z", "key": 1556668800000, "doc_count": 2692, "interval_diff": { "value": 39 } }, { "key_as_string": "2019-04-01T00:00:00.000Z", "key": 1554076800000, "doc_count": 2653, "interval_diff": { "value": 79 } }, { "key_as_string": "2019-03-01T00:00:00.000Z", "key": 1551398400000, "doc_count": 2574, "interval_diff": { "value": 275 } }, { "key_as_string": "2019-02-01T00:00:00.000Z", "key": 1548979200000, "doc_count": 2299, "interval_diff": { "value": 418 } }, { "key_as_string": "2019-01-01T00:00:00.000Z", "key": 1546300800000, "doc_count": 1881, "interval_diff": { "value": -222 } }, { "key_as_string": "2018-12-01T00:00:00.000Z", "key": 1543622400000, "doc_count": 2103, "interval_diff": { "value": 178 } }, { "key_as_string": "2018-11-01T00:00:00.000Z", "key": 1541030400000, "doc_count": 1925, "interval_diff": { "value": -100 } }, { "key_as_string": "2018-10-01T00:00:00.000Z", "key": 1538352000000, "doc_count": 2025, "interval_diff": { "value": 142 } }, { "key_as_string": "2018-09-01T00:00:00.000Z", "key": 1535760000000, "doc_count": 1883, "interval_diff": { "value": -277 } }, { "key_as_string": "2018-08-01T00:00:00.000Z", "key": 1533081600000, "doc_count": 2160, "interval_diff": { "value": 3 } }, { "key_as_string": "2018-07-01T00:00:00.000Z", "key": 1530403200000, "doc_count": 2157, "interval_diff": { "value": -70 } }, { "key_as_string": "2018-06-01T00:00:00.000Z", "key": 1527811200000, "doc_count": 2227, "interval_diff": { "value": -90 } }, { "key_as_string": "2018-05-01T00:00:00.000Z", "key": 1525132800000, "doc_count": 2317, "interval_diff": { "value": -100 } }, { "key_as_string": "2018-04-01T00:00:00.000Z", "key": 1522540800000, "doc_count": 2417, "interval_diff": { "value": 217 } }, { "key_as_string": "2018-03-01T00:00:00.000Z", "key": 1519862400000, "doc_count": 2200, "interval_diff": { "value": -70 } }, { "key_as_string": "2018-02-01T00:00:00.000Z", "key": 1517443200000, "doc_count": 2270, "interval_diff": { "value": 111 } }, { "key_as_string": "2018-01-01T00:00:00.000Z", "key": 1514764800000, "doc_count": 2159, "interval_diff": { "value": 541 } }, { "key_as_string": "2017-12-01T00:00:00.000Z", "key": 1512086400000, "doc_count": 1618, "interval_diff": { "value": -248 } }, { "key_as_string": "2017-11-01T00:00:00.000Z", "key": 1509494400000, "doc_count": 1866, "interval_diff": { "value": -199 } }, { "key_as_string": "2017-10-01T00:00:00.000Z", "key": 1506816000000, "doc_count": 2065, "interval_diff": { "value": 38 } }, { "key_as_string": "2017-09-01T00:00:00.000Z", "key": 1504224000000, "doc_count": 2027, "interval_diff": { "value": -244 } }, { "key_as_string": "2017-08-01T00:00:00.000Z", "key": 1501545600000, "doc_count": 2271, "interval_diff": { "value": 270 } }, { "key_as_string": "2017-07-01T00:00:00.000Z", "key": 1498867200000, "doc_count": 2001, "interval_diff": { "value": 281 } }, { "key_as_string": "2017-06-01T00:00:00.000Z", "key": 1496275200000, "doc_count": 1720, "interval_diff": { "value": -76 } }, { "key_as_string": "2017-05-01T00:00:00.000Z", "key": 1493596800000, "doc_count": 1796, "interval_diff": { "value": 1308 } }, { "key_as_string": "2017-04-01T00:00:00.000Z", "key": 1491004800000, "doc_count": 488 } ] }, "issue": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Their investigation did not fix an error on your report", "doc_count": 63190, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 2738, "interval_diff": { "value": 401 } } ] } }, { "key": "Investigation took more than 30 days", "doc_count": 7222, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 689, "interval_diff": { "value": 149 } } ] } }, { "key": "Was not notified of investigation status or results", "doc_count": 6586, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 578, "interval_diff": { "value": 255 } } ] } }, { "key": "Difficulty submitting a dispute or getting information about a dispute over the phone", "doc_count": 5998, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 275, "interval_diff": { "value": 118 } } ] } }, { "key": "Problem with personal statement of dispute", "doc_count": 4377, "trend_period": { "buckets": [ { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 151, "interval_diff": { "value": 14 } } ] } } ] } }, { "key": "Loan servicing, payments, escrow account", "doc_count": 72149, "trend_period": { "buckets": [ { "key_as_string": "2017-04-01T00:00:00.000Z", "key": 1491004800000, "doc_count": 852, "interval_diff": { "value": -607 } }, { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 1459, "interval_diff": { "value": 208 } }, { "key_as_string": "2017-02-01T00:00:00.000Z", "key": 1485907200000, "doc_count": 1251, "interval_diff": { "value": -146 } }, { "key_as_string": "2017-01-01T00:00:00.000Z", "key": 1483228800000, "doc_count": 1397, "interval_diff": { "value": 152 } }, { "key_as_string": "2016-12-01T00:00:00.000Z", "key": 1480550400000, "doc_count": 1245, "interval_diff": { "value": -100 } }, { "key_as_string": "2016-11-01T00:00:00.000Z", "key": 1477958400000, "doc_count": 1345, "interval_diff": { "value": -100 } }, { "key_as_string": "2016-10-01T00:00:00.000Z", "key": 1475280000000, "doc_count": 1445, "interval_diff": { "value": -44 } }, { "key_as_string": "2016-09-01T00:00:00.000Z", "key": 1472688000000, "doc_count": 1489, "interval_diff": { "value": 97 } }, { "key_as_string": "2016-08-01T00:00:00.000Z", "key": 1470009600000, "doc_count": 1392, "interval_diff": { "value": 75 } }, { "key_as_string": "2016-07-01T00:00:00.000Z", "key": 1467331200000, "doc_count": 1317, "interval_diff": { "value": -154 } }, { "key_as_string": "2016-06-01T00:00:00.000Z", "key": 1464739200000, "doc_count": 1471, "interval_diff": { "value": 2 } }, { "key_as_string": "2016-05-01T00:00:00.000Z", "key": 1462060800000, "doc_count": 1469, "interval_diff": { "value": 14 } }, { "key_as_string": "2016-04-01T00:00:00.000Z", "key": 1459468800000, "doc_count": 1455, "interval_diff": { "value": -109 } }, { "key_as_string": "2016-03-01T00:00:00.000Z", "key": 1456790400000, "doc_count": 1564, "interval_diff": { "value": 141 } }, { "key_as_string": "2016-02-01T00:00:00.000Z", "key": 1454284800000, "doc_count": 1423, "interval_diff": { "value": 4 } }, { "key_as_string": "2016-01-01T00:00:00.000Z", "key": 1451606400000, "doc_count": 1419, "interval_diff": { "value": 184 } }, { "key_as_string": "2015-12-01T00:00:00.000Z", "key": 1448928000000, "doc_count": 1235, "interval_diff": { "value": 89 } }, { "key_as_string": "2015-11-01T00:00:00.000Z", "key": 1446336000000, "doc_count": 1146, "interval_diff": { "value": -260 } }, { "key_as_string": "2015-10-01T00:00:00.000Z", "key": 1443657600000, "doc_count": 1406, "interval_diff": { "value": -89 } }, { "key_as_string": "2015-09-01T00:00:00.000Z", "key": 1441065600000, "doc_count": 1495, "interval_diff": { "value": -3 } }, { "key_as_string": "2015-08-01T00:00:00.000Z", "key": 1438387200000, "doc_count": 1498, "interval_diff": { "value": 62 } }, { "key_as_string": "2015-07-01T00:00:00.000Z", "key": 1435708800000, "doc_count": 1436, "interval_diff": { "value": -67 } }, { "key_as_string": "2015-06-01T00:00:00.000Z", "key": 1433116800000, "doc_count": 1503, "interval_diff": { "value": 160 } }, { "key_as_string": "2015-05-01T00:00:00.000Z", "key": 1430438400000, "doc_count": 1343, "interval_diff": { "value": -69 } }, { "key_as_string": "2015-04-01T00:00:00.000Z", "key": 1427846400000, "doc_count": 1412, "interval_diff": { "value": 20 } }, { "key_as_string": "2015-03-01T00:00:00.000Z", "key": 1425168000000, "doc_count": 1392, "interval_diff": { "value": 157 } }, { "key_as_string": "2015-02-01T00:00:00.000Z", "key": 1422748800000, "doc_count": 1235, "interval_diff": { "value": 62 } }, { "key_as_string": "2015-01-01T00:00:00.000Z", "key": 1420070400000, "doc_count": 1173, "interval_diff": { "value": 8 } }, { "key_as_string": "2014-12-01T00:00:00.000Z", "key": 1417392000000, "doc_count": 1165, "interval_diff": { "value": 17 } }, { "key_as_string": "2014-11-01T00:00:00.000Z", "key": 1414800000000, "doc_count": 1148, "interval_diff": { "value": -218 } }, { "key_as_string": "2014-10-01T00:00:00.000Z", "key": 1412121600000, "doc_count": 1366, "interval_diff": { "value": 94 } }, { "key_as_string": "2014-09-01T00:00:00.000Z", "key": 1409529600000, "doc_count": 1272, "interval_diff": { "value": 26 } }, { "key_as_string": "2014-08-01T00:00:00.000Z", "key": 1406851200000, "doc_count": 1246, "interval_diff": { "value": -21 } }, { "key_as_string": "2014-07-01T00:00:00.000Z", "key": 1404172800000, "doc_count": 1267, "interval_diff": { "value": 69 } }, { "key_as_string": "2014-06-01T00:00:00.000Z", "key": 1401580800000, "doc_count": 1198, "interval_diff": { "value": -26 } }, { "key_as_string": "2014-05-01T00:00:00.000Z", "key": 1398902400000, "doc_count": 1224, "interval_diff": { "value": -298 } }, { "key_as_string": "2014-04-01T00:00:00.000Z", "key": 1396310400000, "doc_count": 1522, "interval_diff": { "value": -79 } }, { "key_as_string": "2014-03-01T00:00:00.000Z", "key": 1393632000000, "doc_count": 1601, "interval_diff": { "value": 134 } }, { "key_as_string": "2014-02-01T00:00:00.000Z", "key": 1391212800000, "doc_count": 1467, "interval_diff": { "value": 177 } }, { "key_as_string": "2014-01-01T00:00:00.000Z", "key": 1388534400000, "doc_count": 1290, "interval_diff": { "value": 306 } }, { "key_as_string": "2013-12-01T00:00:00.000Z", "key": 1385856000000, "doc_count": 984, "interval_diff": { "value": 15 } }, { "key_as_string": "2013-11-01T00:00:00.000Z", "key": 1383264000000, "doc_count": 969, "interval_diff": { "value": -189 } }, { "key_as_string": "2013-10-01T00:00:00.000Z", "key": 1380585600000, "doc_count": 1158, "interval_diff": { "value": 51 } }, { "key_as_string": "2013-09-01T00:00:00.000Z", "key": 1377993600000, "doc_count": 1107, "interval_diff": { "value": -100 } }, { "key_as_string": "2013-08-01T00:00:00.000Z", "key": 1375315200000, "doc_count": 1207, "interval_diff": { "value": 53 } }, { "key_as_string": "2013-07-01T00:00:00.000Z", "key": 1372636800000, "doc_count": 1154, "interval_diff": { "value": 90 } }, { "key_as_string": "2013-06-01T00:00:00.000Z", "key": 1370044800000, "doc_count": 1064, "interval_diff": { "value": 2 } }, { "key_as_string": "2013-05-01T00:00:00.000Z", "key": 1367366400000, "doc_count": 1062, "interval_diff": { "value": -160 } }, { "key_as_string": "2013-04-01T00:00:00.000Z", "key": 1364774400000, "doc_count": 1222, "interval_diff": { "value": 25 } }, { "key_as_string": "2013-03-01T00:00:00.000Z", "key": 1362096000000, "doc_count": 1197, "interval_diff": { "value": 198 } }, { "key_as_string": "2013-02-01T00:00:00.000Z", "key": 1359676800000, "doc_count": 999, "interval_diff": { "value": -125 } }, { "key_as_string": "2013-01-01T00:00:00.000Z", "key": 1356998400000, "doc_count": 1124, "interval_diff": { "value": 313 } }, { "key_as_string": "2012-12-01T00:00:00.000Z", "key": 1354320000000, "doc_count": 811, "interval_diff": { "value": 126 } }, { "key_as_string": "2012-11-01T00:00:00.000Z", "key": 1351728000000, "doc_count": 685, "interval_diff": { "value": -80 } }, { "key_as_string": "2012-10-01T00:00:00.000Z", "key": 1349049600000, "doc_count": 765, "interval_diff": { "value": 14 } }, { "key_as_string": "2012-09-01T00:00:00.000Z", "key": 1346457600000, "doc_count": 751, "interval_diff": { "value": -219 } }, { "key_as_string": "2012-08-01T00:00:00.000Z", "key": 1343779200000, "doc_count": 970, "interval_diff": { "value": 92 } }, { "key_as_string": "2012-07-01T00:00:00.000Z", "key": 1341100800000, "doc_count": 878, "interval_diff": { "value": 869 } }, { "key_as_string": "2012-06-01T00:00:00.000Z", "key": 1338508800000, "doc_count": 9 } ] }, "issue": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [] } } ] } }, "min_date": { "value": 1322758800000, "value_as_string": "2011-12-01T12:00:00-05:00" }, "dateRangeArea": { "doc_count": 1554659, "dateRangeArea": { "buckets": [ { "key_as_string": "2012-06-01T00:00:00.000Z", "key": 1338508800000, "doc_count": 47 }, { "key_as_string": "2012-07-01T00:00:00.000Z", "key": 1341100800000, "doc_count": 6755 }, { "key_as_string": "2012-08-01T00:00:00.000Z", "key": 1343779200000, "doc_count": 6877 }, { "key_as_string": "2012-09-01T00:00:00.000Z", "key": 1346457600000, "doc_count": 5493 }, { "key_as_string": "2012-10-01T00:00:00.000Z", "key": 1349049600000, "doc_count": 6741 }, { "key_as_string": "2012-11-01T00:00:00.000Z", "key": 1351728000000, "doc_count": 6139 }, { "key_as_string": "2012-12-01T00:00:00.000Z", "key": 1354320000000, "doc_count": 6238 }, { "key_as_string": "2013-01-01T00:00:00.000Z", "key": 1356998400000, "doc_count": 9741 }, { "key_as_string": "2013-02-01T00:00:00.000Z", "key": 1359676800000, "doc_count": 8349 }, { "key_as_string": "2013-03-01T00:00:00.000Z", "key": 1362096000000, "doc_count": 8784 }, { "key_as_string": "2013-04-01T00:00:00.000Z", "key": 1364774400000, "doc_count": 8632 }, { "key_as_string": "2013-05-01T00:00:00.000Z", "key": 1367366400000, "doc_count": 8170 }, { "key_as_string": "2013-06-01T00:00:00.000Z", "key": 1370044800000, "doc_count": 8035 }, { "key_as_string": "2013-07-01T00:00:00.000Z", "key": 1372636800000, "doc_count": 9271 }, { "key_as_string": "2013-08-01T00:00:00.000Z", "key": 1375315200000, "doc_count": 9565 }, { "key_as_string": "2013-09-01T00:00:00.000Z", "key": 1377993600000, "doc_count": 9636 }, { "key_as_string": "2013-10-01T00:00:00.000Z", "key": 1380585600000, "doc_count": 9241 }, { "key_as_string": "2013-11-01T00:00:00.000Z", "key": 1383264000000, "doc_count": 9319 }, { "key_as_string": "2013-12-01T00:00:00.000Z", "key": 1385856000000, "doc_count": 9474 }, { "key_as_string": "2014-01-01T00:00:00.000Z", "key": 1388534400000, "doc_count": 12617 }, { "key_as_string": "2014-02-01T00:00:00.000Z", "key": 1391212800000, "doc_count": 13048 }, { "key_as_string": "2014-03-01T00:00:00.000Z", "key": 1393632000000, "doc_count": 13943 }, { "key_as_string": "2014-04-01T00:00:00.000Z", "key": 1396310400000, "doc_count": 13840 }, { "key_as_string": "2014-05-01T00:00:00.000Z", "key": 1398902400000, "doc_count": 12167 }, { "key_as_string": "2014-06-01T00:00:00.000Z", "key": 1401580800000, "doc_count": 12520 }, { "key_as_string": "2014-07-01T00:00:00.000Z", "key": 1404172800000, "doc_count": 13415 }, { "key_as_string": "2014-08-01T00:00:00.000Z", "key": 1406851200000, "doc_count": 13186 }, { "key_as_string": "2014-09-01T00:00:00.000Z", "key": 1409529600000, "doc_count": 12465 }, { "key_as_string": "2014-10-01T00:00:00.000Z", "key": 1412121600000, "doc_count": 12901 }, { "key_as_string": "2014-11-01T00:00:00.000Z", "key": 1414800000000, "doc_count": 11257 }, { "key_as_string": "2014-12-01T00:00:00.000Z", "key": 1417392000000, "doc_count": 11684 }, { "key_as_string": "2015-01-01T00:00:00.000Z", "key": 1420070400000, "doc_count": 12627 }, { "key_as_string": "2015-02-01T00:00:00.000Z", "key": 1422748800000, "doc_count": 12680 }, { "key_as_string": "2015-03-01T00:00:00.000Z", "key": 1425168000000, "doc_count": 14514 }, { "key_as_string": "2015-04-01T00:00:00.000Z", "key": 1427846400000, "doc_count": 13753 }, { "key_as_string": "2015-05-01T00:00:00.000Z", "key": 1430438400000, "doc_count": 13682 }, { "key_as_string": "2015-06-01T00:00:00.000Z", "key": 1433116800000, "doc_count": 14517 }, { "key_as_string": "2015-07-01T00:00:00.000Z", "key": 1435708800000, "doc_count": 15920 }, { "key_as_string": "2015-08-01T00:00:00.000Z", "key": 1438387200000, "doc_count": 15766 }, { "key_as_string": "2015-09-01T00:00:00.000Z", "key": 1441065600000, "doc_count": 14336 }, { "key_as_string": "2015-10-01T00:00:00.000Z", "key": 1443657600000, "doc_count": 14899 }, { "key_as_string": "2015-11-01T00:00:00.000Z", "key": 1446336000000, "doc_count": 12897 }, { "key_as_string": "2015-12-01T00:00:00.000Z", "key": 1448928000000, "doc_count": 12884 }, { "key_as_string": "2016-01-01T00:00:00.000Z", "key": 1451606400000, "doc_count": 13840 }, { "key_as_string": "2016-02-01T00:00:00.000Z", "key": 1454284800000, "doc_count": 14140 }, { "key_as_string": "2016-03-01T00:00:00.000Z", "key": 1456790400000, "doc_count": 16611 }, { "key_as_string": "2016-04-01T00:00:00.000Z", "key": 1459468800000, "doc_count": 15608 }, { "key_as_string": "2016-05-01T00:00:00.000Z", "key": 1462060800000, "doc_count": 15517 }, { "key_as_string": "2016-06-01T00:00:00.000Z", "key": 1464739200000, "doc_count": 16063 }, { "key_as_string": "2016-07-01T00:00:00.000Z", "key": 1467331200000, "doc_count": 16043 }, { "key_as_string": "2016-08-01T00:00:00.000Z", "key": 1470009600000, "doc_count": 17694 }, { "key_as_string": "2016-09-01T00:00:00.000Z", "key": 1472688000000, "doc_count": 17584 }, { "key_as_string": "2016-10-01T00:00:00.000Z", "key": 1475280000000, "doc_count": 17820 }, { "key_as_string": "2016-11-01T00:00:00.000Z", "key": 1477958400000, "doc_count": 15207 }, { "key_as_string": "2016-12-01T00:00:00.000Z", "key": 1480550400000, "doc_count": 15341 }, { "key_as_string": "2017-01-01T00:00:00.000Z", "key": 1483228800000, "doc_count": 21006 }, { "key_as_string": "2017-02-01T00:00:00.000Z", "key": 1485907200000, "doc_count": 18110 }, { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 19762 }, { "key_as_string": "2017-04-01T00:00:00.000Z", "key": 1491004800000, "doc_count": 18544 }, { "key_as_string": "2017-05-01T00:00:00.000Z", "key": 1493596800000, "doc_count": 19305 }, { "key_as_string": "2017-06-01T00:00:00.000Z", "key": 1496275200000, "doc_count": 18567 }, { "key_as_string": "2017-07-01T00:00:00.000Z", "key": 1498867200000, "doc_count": 20433 }, { "key_as_string": "2017-08-01T00:00:00.000Z", "key": 1501545600000, "doc_count": 21402 }, { "key_as_string": "2017-09-01T00:00:00.000Z", "key": 1504224000000, "doc_count": 27357 }, { "key_as_string": "2017-10-01T00:00:00.000Z", "key": 1506816000000, "doc_count": 20456 }, { "key_as_string": "2017-11-01T00:00:00.000Z", "key": 1509494400000, "doc_count": 18990 }, { "key_as_string": "2017-12-01T00:00:00.000Z", "key": 1512086400000, "doc_count": 19034 }, { "key_as_string": "2018-01-01T00:00:00.000Z", "key": 1514764800000, "doc_count": 23651 }, { "key_as_string": "2018-02-01T00:00:00.000Z", "key": 1517443200000, "doc_count": 21978 }, { "key_as_string": "2018-03-01T00:00:00.000Z", "key": 1519862400000, "doc_count": 23640 }, { "key_as_string": "2018-04-01T00:00:00.000Z", "key": 1522540800000, "doc_count": 24327 }, { "key_as_string": "2018-05-01T00:00:00.000Z", "key": 1525132800000, "doc_count": 22339 }, { "key_as_string": "2018-06-01T00:00:00.000Z", "key": 1527811200000, "doc_count": 20111 }, { "key_as_string": "2018-07-01T00:00:00.000Z", "key": 1530403200000, "doc_count": 20963 }, { "key_as_string": "2018-08-01T00:00:00.000Z", "key": 1533081600000, "doc_count": 21726 }, { "key_as_string": "2018-09-01T00:00:00.000Z", "key": 1535760000000, "doc_count": 19072 }, { "key_as_string": "2018-10-01T00:00:00.000Z", "key": 1538352000000, "doc_count": 21903 }, { "key_as_string": "2018-11-01T00:00:00.000Z", "key": 1541030400000, "doc_count": 19053 }, { "key_as_string": "2018-12-01T00:00:00.000Z", "key": 1543622400000, "doc_count": 18552 }, { "key_as_string": "2019-01-01T00:00:00.000Z", "key": 1546300800000, "doc_count": 18934 }, { "key_as_string": "2019-02-01T00:00:00.000Z", "key": 1548979200000, "doc_count": 20206 }, { "key_as_string": "2019-03-01T00:00:00.000Z", "key": 1551398400000, "doc_count": 23412 }, { "key_as_string": "2019-04-01T00:00:00.000Z", "key": 1554076800000, "doc_count": 22915 }, { "key_as_string": "2019-05-01T00:00:00.000Z", "key": 1556668800000, "doc_count": 23850 }, { "key_as_string": "2019-06-01T00:00:00.000Z", "key": 1559347200000, "doc_count": 23352 }, { "key_as_string": "2019-07-01T00:00:00.000Z", "key": 1561939200000, "doc_count": 25090 }, { "key_as_string": "2019-08-01T00:00:00.000Z", "key": 1564617600000, "doc_count": 26059 }, { "key_as_string": "2019-09-01T00:00:00.000Z", "key": 1567296000000, "doc_count": 23575 }, { "key_as_string": "2019-10-01T00:00:00.000Z", "key": 1569888000000, "doc_count": 25636 }, { "key_as_string": "2019-11-01T00:00:00.000Z", "key": 1572566400000, "doc_count": 22659 }, { "key_as_string": "2019-12-01T00:00:00.000Z", "key": 1575158400000, "doc_count": 21704 }, { "key_as_string": "2020-01-01T00:00:00.000Z", "key": 1577836800000, "doc_count": 26413 }, { "key_as_string": "2020-02-01T00:00:00.000Z", "key": 1580515200000, "doc_count": 25096 }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 29506 }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 35112 }, { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 1366 } ] } }, "tags": { "doc_count": 1554659, "tags": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Servicemember", "doc_count": 109650, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 97, "interval_diff": { "value": -2368 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 2465, "interval_diff": { "value": 379 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 2086, "interval_diff": { "value": 125 } }, { "key_as_string": "2020-02-01T00:00:00.000Z", "key": 1580515200000, "doc_count": 1961, "interval_diff": { "value": -84 } }, { "key_as_string": "2020-01-01T00:00:00.000Z", "key": 1577836800000, "doc_count": 2045, "interval_diff": { "value": 320 } }, { "key_as_string": "2019-12-01T00:00:00.000Z", "key": 1575158400000, "doc_count": 1725, "interval_diff": { "value": -206 } }, { "key_as_string": "2019-11-01T00:00:00.000Z", "key": 1572566400000, "doc_count": 1931, "interval_diff": { "value": -155 } }, { "key_as_string": "2019-10-01T00:00:00.000Z", "key": 1569888000000, "doc_count": 2086, "interval_diff": { "value": -6 } }, { "key_as_string": "2019-09-01T00:00:00.000Z", "key": 1567296000000, "doc_count": 2092, "interval_diff": { "value": 91 } }, { "key_as_string": "2019-08-01T00:00:00.000Z", "key": 1564617600000, "doc_count": 2001, "interval_diff": { "value": 115 } }, { "key_as_string": "2019-07-01T00:00:00.000Z", "key": 1561939200000, "doc_count": 1886, "interval_diff": { "value": -120 } }, { "key_as_string": "2019-06-01T00:00:00.000Z", "key": 1559347200000, "doc_count": 2006, "interval_diff": { "value": 69 } }, { "key_as_string": "2019-05-01T00:00:00.000Z", "key": 1556668800000, "doc_count": 1937, "interval_diff": { "value": -34 } }, { "key_as_string": "2019-04-01T00:00:00.000Z", "key": 1554076800000, "doc_count": 1971, "interval_diff": { "value": -188 } }, { "key_as_string": "2019-03-01T00:00:00.000Z", "key": 1551398400000, "doc_count": 2159, "interval_diff": { "value": 240 } }, { "key_as_string": "2019-02-01T00:00:00.000Z", "key": 1548979200000, "doc_count": 1919, "interval_diff": { "value": 251 } }, { "key_as_string": "2019-01-01T00:00:00.000Z", "key": 1546300800000, "doc_count": 1668, "interval_diff": { "value": 20 } }, { "key_as_string": "2018-12-01T00:00:00.000Z", "key": 1543622400000, "doc_count": 1648, "interval_diff": { "value": -95 } }, { "key_as_string": "2018-11-01T00:00:00.000Z", "key": 1541030400000, "doc_count": 1743, "interval_diff": { "value": -170 } }, { "key_as_string": "2018-10-01T00:00:00.000Z", "key": 1538352000000, "doc_count": 1913, "interval_diff": { "value": 206 } }, { "key_as_string": "2018-09-01T00:00:00.000Z", "key": 1535760000000, "doc_count": 1707, "interval_diff": { "value": -470 } }, { "key_as_string": "2018-08-01T00:00:00.000Z", "key": 1533081600000, "doc_count": 2177, "interval_diff": { "value": 208 } }, { "key_as_string": "2018-07-01T00:00:00.000Z", "key": 1530403200000, "doc_count": 1969, "interval_diff": { "value": 100 } }, { "key_as_string": "2018-06-01T00:00:00.000Z", "key": 1527811200000, "doc_count": 1869, "interval_diff": { "value": -177 } }, { "key_as_string": "2018-05-01T00:00:00.000Z", "key": 1525132800000, "doc_count": 2046, "interval_diff": { "value": -1 } }, { "key_as_string": "2018-04-01T00:00:00.000Z", "key": 1522540800000, "doc_count": 2047, "interval_diff": { "value": -241 } }, { "key_as_string": "2018-03-01T00:00:00.000Z", "key": 1519862400000, "doc_count": 2288, "interval_diff": { "value": -7 } }, { "key_as_string": "2018-02-01T00:00:00.000Z", "key": 1517443200000, "doc_count": 2295, "interval_diff": { "value": 87 } }, { "key_as_string": "2018-01-01T00:00:00.000Z", "key": 1514764800000, "doc_count": 2208, "interval_diff": { "value": 342 } }, { "key_as_string": "2017-12-01T00:00:00.000Z", "key": 1512086400000, "doc_count": 1866, "interval_diff": { "value": -90 } }, { "key_as_string": "2017-11-01T00:00:00.000Z", "key": 1509494400000, "doc_count": 1956, "interval_diff": { "value": -88 } }, { "key_as_string": "2017-10-01T00:00:00.000Z", "key": 1506816000000, "doc_count": 2044, "interval_diff": { "value": -400 } }, { "key_as_string": "2017-09-01T00:00:00.000Z", "key": 1504224000000, "doc_count": 2444, "interval_diff": { "value": 346 } }, { "key_as_string": "2017-08-01T00:00:00.000Z", "key": 1501545600000, "doc_count": 2098, "interval_diff": { "value": 105 } }, { "key_as_string": "2017-07-01T00:00:00.000Z", "key": 1498867200000, "doc_count": 1993, "interval_diff": { "value": 99 } }, { "key_as_string": "2017-06-01T00:00:00.000Z", "key": 1496275200000, "doc_count": 1894, "interval_diff": { "value": -76 } }, { "key_as_string": "2017-05-01T00:00:00.000Z", "key": 1493596800000, "doc_count": 1970, "interval_diff": { "value": 566 } }, { "key_as_string": "2017-04-01T00:00:00.000Z", "key": 1491004800000, "doc_count": 1404, "interval_diff": { "value": 389 } }, { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 1015, "interval_diff": { "value": 63 } }, { "key_as_string": "2017-02-01T00:00:00.000Z", "key": 1485907200000, "doc_count": 952, "interval_diff": { "value": -104 } }, { "key_as_string": "2017-01-01T00:00:00.000Z", "key": 1483228800000, "doc_count": 1056, "interval_diff": { "value": 252 } }, { "key_as_string": "2016-12-01T00:00:00.000Z", "key": 1480550400000, "doc_count": 804, "interval_diff": { "value": 3 } }, { "key_as_string": "2016-11-01T00:00:00.000Z", "key": 1477958400000, "doc_count": 801, "interval_diff": { "value": -260 } }, { "key_as_string": "2016-10-01T00:00:00.000Z", "key": 1475280000000, "doc_count": 1061, "interval_diff": { "value": 177 } }, { "key_as_string": "2016-09-01T00:00:00.000Z", "key": 1472688000000, "doc_count": 884, "interval_diff": { "value": 0 } }, { "key_as_string": "2016-08-01T00:00:00.000Z", "key": 1470009600000, "doc_count": 884, "interval_diff": { "value": 128 } }, { "key_as_string": "2016-07-01T00:00:00.000Z", "key": 1467331200000, "doc_count": 756, "interval_diff": { "value": -136 } }, { "key_as_string": "2016-06-01T00:00:00.000Z", "key": 1464739200000, "doc_count": 892, "interval_diff": { "value": 114 } }, { "key_as_string": "2016-05-01T00:00:00.000Z", "key": 1462060800000, "doc_count": 778, "interval_diff": { "value": 1 } }, { "key_as_string": "2016-04-01T00:00:00.000Z", "key": 1459468800000, "doc_count": 777, "interval_diff": { "value": -143 } }, { "key_as_string": "2016-03-01T00:00:00.000Z", "key": 1456790400000, "doc_count": 920, "interval_diff": { "value": 140 } }, { "key_as_string": "2016-02-01T00:00:00.000Z", "key": 1454284800000, "doc_count": 780, "interval_diff": { "value": 83 } }, { "key_as_string": "2016-01-01T00:00:00.000Z", "key": 1451606400000, "doc_count": 697, "interval_diff": { "value": -37 } }, { "key_as_string": "2015-12-01T00:00:00.000Z", "key": 1448928000000, "doc_count": 734, "interval_diff": { "value": 70 } }, { "key_as_string": "2015-11-01T00:00:00.000Z", "key": 1446336000000, "doc_count": 664, "interval_diff": { "value": -195 } }, { "key_as_string": "2015-10-01T00:00:00.000Z", "key": 1443657600000, "doc_count": 859, "interval_diff": { "value": 21 } }, { "key_as_string": "2015-09-01T00:00:00.000Z", "key": 1441065600000, "doc_count": 838, "interval_diff": { "value": -36 } }, { "key_as_string": "2015-08-01T00:00:00.000Z", "key": 1438387200000, "doc_count": 874, "interval_diff": { "value": 70 } }, { "key_as_string": "2015-07-01T00:00:00.000Z", "key": 1435708800000, "doc_count": 804, "interval_diff": { "value": 97 } }, { "key_as_string": "2015-06-01T00:00:00.000Z", "key": 1433116800000, "doc_count": 707, "interval_diff": { "value": -5 } }, { "key_as_string": "2015-05-01T00:00:00.000Z", "key": 1430438400000, "doc_count": 712, "interval_diff": { "value": -91 } }, { "key_as_string": "2015-04-01T00:00:00.000Z", "key": 1427846400000, "doc_count": 803, "interval_diff": { "value": -32 } }, { "key_as_string": "2015-03-01T00:00:00.000Z", "key": 1425168000000, "doc_count": 835, "interval_diff": { "value": 120 } }, { "key_as_string": "2015-02-01T00:00:00.000Z", "key": 1422748800000, "doc_count": 715, "interval_diff": { "value": 41 } }, { "key_as_string": "2015-01-01T00:00:00.000Z", "key": 1420070400000, "doc_count": 674, "interval_diff": { "value": 48 } }, { "key_as_string": "2014-12-01T00:00:00.000Z", "key": 1417392000000, "doc_count": 626, "interval_diff": { "value": 30 } }, { "key_as_string": "2014-11-01T00:00:00.000Z", "key": 1414800000000, "doc_count": 596, "interval_diff": { "value": -121 } }, { "key_as_string": "2014-10-01T00:00:00.000Z", "key": 1412121600000, "doc_count": 717, "interval_diff": { "value": 10 } }, { "key_as_string": "2014-09-01T00:00:00.000Z", "key": 1409529600000, "doc_count": 707, "interval_diff": { "value": 10 } }, { "key_as_string": "2014-08-01T00:00:00.000Z", "key": 1406851200000, "doc_count": 697, "interval_diff": { "value": -12 } }, { "key_as_string": "2014-07-01T00:00:00.000Z", "key": 1404172800000, "doc_count": 709, "interval_diff": { "value": 57 } }, { "key_as_string": "2014-06-01T00:00:00.000Z", "key": 1401580800000, "doc_count": 652, "interval_diff": { "value": 24 } }, { "key_as_string": "2014-05-01T00:00:00.000Z", "key": 1398902400000, "doc_count": 628, "interval_diff": { "value": -53 } }, { "key_as_string": "2014-04-01T00:00:00.000Z", "key": 1396310400000, "doc_count": 681, "interval_diff": { "value": -34 } }, { "key_as_string": "2014-03-01T00:00:00.000Z", "key": 1393632000000, "doc_count": 715, "interval_diff": { "value": 34 } }, { "key_as_string": "2014-02-01T00:00:00.000Z", "key": 1391212800000, "doc_count": 681, "interval_diff": { "value": 19 } }, { "key_as_string": "2014-01-01T00:00:00.000Z", "key": 1388534400000, "doc_count": 662, "interval_diff": { "value": 207 } }, { "key_as_string": "2013-12-01T00:00:00.000Z", "key": 1385856000000, "doc_count": 455, "interval_diff": { "value": -3 } }, { "key_as_string": "2013-11-01T00:00:00.000Z", "key": 1383264000000, "doc_count": 458, "interval_diff": { "value": 61 } }, { "key_as_string": "2013-10-01T00:00:00.000Z", "key": 1380585600000, "doc_count": 397, "interval_diff": { "value": -56 } }, { "key_as_string": "2013-09-01T00:00:00.000Z", "key": 1377993600000, "doc_count": 453, "interval_diff": { "value": 12 } }, { "key_as_string": "2013-08-01T00:00:00.000Z", "key": 1375315200000, "doc_count": 441, "interval_diff": { "value": 67 } }, { "key_as_string": "2013-07-01T00:00:00.000Z", "key": 1372636800000, "doc_count": 374, "interval_diff": { "value": 40 } }, { "key_as_string": "2013-06-01T00:00:00.000Z", "key": 1370044800000, "doc_count": 334, "interval_diff": { "value": 3 } }, { "key_as_string": "2013-05-01T00:00:00.000Z", "key": 1367366400000, "doc_count": 331, "interval_diff": { "value": -10 } }, { "key_as_string": "2013-04-01T00:00:00.000Z", "key": 1364774400000, "doc_count": 341, "interval_diff": { "value": 57 } }, { "key_as_string": "2013-03-01T00:00:00.000Z", "key": 1362096000000, "doc_count": 284, "interval_diff": { "value": 12 } }, { "key_as_string": "2013-02-01T00:00:00.000Z", "key": 1359676800000, "doc_count": 272, "interval_diff": { "value": 17 } }, { "key_as_string": "2013-01-01T00:00:00.000Z", "key": 1356998400000, "doc_count": 255, "interval_diff": { "value": 40 } }, { "key_as_string": "2012-12-01T00:00:00.000Z", "key": 1354320000000, "doc_count": 215, "interval_diff": { "value": -8 } }, { "key_as_string": "2012-11-01T00:00:00.000Z", "key": 1351728000000, "doc_count": 223, "interval_diff": { "value": -29 } }, { "key_as_string": "2012-10-01T00:00:00.000Z", "key": 1349049600000, "doc_count": 252, "interval_diff": { "value": 103 } }, { "key_as_string": "2012-09-01T00:00:00.000Z", "key": 1346457600000, "doc_count": 149, "interval_diff": { "value": -60 } }, { "key_as_string": "2012-08-01T00:00:00.000Z", "key": 1343779200000, "doc_count": 209, "interval_diff": { "value": -32 } }, { "key_as_string": "2012-07-01T00:00:00.000Z", "key": 1341100800000, "doc_count": 241, "interval_diff": { "value": 236 } }, { "key_as_string": "2012-06-01T00:00:00.000Z", "key": 1338508800000, "doc_count": 5 } ] } }, { "key": "Older American", "doc_count": 85620, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 28, "interval_diff": { "value": -1006 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1034, "interval_diff": { "value": -65 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 1099, "interval_diff": { "value": 104 } }, { "key_as_string": "2020-02-01T00:00:00.000Z", "key": 1580515200000, "doc_count": 995, "interval_diff": { "value": 67 } }, { "key_as_string": "2020-01-01T00:00:00.000Z", "key": 1577836800000, "doc_count": 928, "interval_diff": { "value": 113 } }, { "key_as_string": "2019-12-01T00:00:00.000Z", "key": 1575158400000, "doc_count": 815, "interval_diff": { "value": -11 } }, { "key_as_string": "2019-11-01T00:00:00.000Z", "key": 1572566400000, "doc_count": 826, "interval_diff": { "value": -133 } }, { "key_as_string": "2019-10-01T00:00:00.000Z", "key": 1569888000000, "doc_count": 959, "interval_diff": { "value": 11 } }, { "key_as_string": "2019-09-01T00:00:00.000Z", "key": 1567296000000, "doc_count": 948, "interval_diff": { "value": -90 } }, { "key_as_string": "2019-08-01T00:00:00.000Z", "key": 1564617600000, "doc_count": 1038, "interval_diff": { "value": 108 } }, { "key_as_string": "2019-07-01T00:00:00.000Z", "key": 1561939200000, "doc_count": 930, "interval_diff": { "value": -1 } }, { "key_as_string": "2019-06-01T00:00:00.000Z", "key": 1559347200000, "doc_count": 931, "interval_diff": { "value": -24 } }, { "key_as_string": "2019-05-01T00:00:00.000Z", "key": 1556668800000, "doc_count": 955, "interval_diff": { "value": -52 } }, { "key_as_string": "2019-04-01T00:00:00.000Z", "key": 1554076800000, "doc_count": 1007, "interval_diff": { "value": 6 } }, { "key_as_string": "2019-03-01T00:00:00.000Z", "key": 1551398400000, "doc_count": 1001, "interval_diff": { "value": 224 } }, { "key_as_string": "2019-02-01T00:00:00.000Z", "key": 1548979200000, "doc_count": 777, "interval_diff": { "value": 83 } }, { "key_as_string": "2019-01-01T00:00:00.000Z", "key": 1546300800000, "doc_count": 694, "interval_diff": { "value": 131 } }, { "key_as_string": "2018-12-01T00:00:00.000Z", "key": 1543622400000, "doc_count": 563, "interval_diff": { "value": 18 } }, { "key_as_string": "2018-11-01T00:00:00.000Z", "key": 1541030400000, "doc_count": 545, "interval_diff": { "value": -49 } }, { "key_as_string": "2018-10-01T00:00:00.000Z", "key": 1538352000000, "doc_count": 594, "interval_diff": { "value": 58 } }, { "key_as_string": "2018-09-01T00:00:00.000Z", "key": 1535760000000, "doc_count": 536, "interval_diff": { "value": -82 } }, { "key_as_string": "2018-08-01T00:00:00.000Z", "key": 1533081600000, "doc_count": 618, "interval_diff": { "value": 45 } }, { "key_as_string": "2018-07-01T00:00:00.000Z", "key": 1530403200000, "doc_count": 573, "interval_diff": { "value": 21 } }, { "key_as_string": "2018-06-01T00:00:00.000Z", "key": 1527811200000, "doc_count": 552, "interval_diff": { "value": -45 } }, { "key_as_string": "2018-05-01T00:00:00.000Z", "key": 1525132800000, "doc_count": 597, "interval_diff": { "value": 87 } }, { "key_as_string": "2018-04-01T00:00:00.000Z", "key": 1522540800000, "doc_count": 510, "interval_diff": { "value": -81 } }, { "key_as_string": "2018-03-01T00:00:00.000Z", "key": 1519862400000, "doc_count": 591, "interval_diff": { "value": 36 } }, { "key_as_string": "2018-02-01T00:00:00.000Z", "key": 1517443200000, "doc_count": 555, "interval_diff": { "value": -31 } }, { "key_as_string": "2018-01-01T00:00:00.000Z", "key": 1514764800000, "doc_count": 586, "interval_diff": { "value": 106 } }, { "key_as_string": "2017-12-01T00:00:00.000Z", "key": 1512086400000, "doc_count": 480, "interval_diff": { "value": -28 } }, { "key_as_string": "2017-11-01T00:00:00.000Z", "key": 1509494400000, "doc_count": 508, "interval_diff": { "value": -135 } }, { "key_as_string": "2017-10-01T00:00:00.000Z", "key": 1506816000000, "doc_count": 643, "interval_diff": { "value": -34 } }, { "key_as_string": "2017-09-01T00:00:00.000Z", "key": 1504224000000, "doc_count": 677, "interval_diff": { "value": 72 } }, { "key_as_string": "2017-08-01T00:00:00.000Z", "key": 1501545600000, "doc_count": 605, "interval_diff": { "value": 37 } }, { "key_as_string": "2017-07-01T00:00:00.000Z", "key": 1498867200000, "doc_count": 568, "interval_diff": { "value": 13 } }, { "key_as_string": "2017-06-01T00:00:00.000Z", "key": 1496275200000, "doc_count": 555, "interval_diff": { "value": -34 } }, { "key_as_string": "2017-05-01T00:00:00.000Z", "key": 1493596800000, "doc_count": 589, "interval_diff": { "value": -417 } }, { "key_as_string": "2017-04-01T00:00:00.000Z", "key": 1491004800000, "doc_count": 1006, "interval_diff": { "value": -355 } }, { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 1361, "interval_diff": { "value": 9 } }, { "key_as_string": "2017-02-01T00:00:00.000Z", "key": 1485907200000, "doc_count": 1352, "interval_diff": { "value": -52 } }, { "key_as_string": "2017-01-01T00:00:00.000Z", "key": 1483228800000, "doc_count": 1404, "interval_diff": { "value": 224 } }, { "key_as_string": "2016-12-01T00:00:00.000Z", "key": 1480550400000, "doc_count": 1180, "interval_diff": { "value": -104 } }, { "key_as_string": "2016-11-01T00:00:00.000Z", "key": 1477958400000, "doc_count": 1284, "interval_diff": { "value": -184 } }, { "key_as_string": "2016-10-01T00:00:00.000Z", "key": 1475280000000, "doc_count": 1468, "interval_diff": { "value": -149 } }, { "key_as_string": "2016-09-01T00:00:00.000Z", "key": 1472688000000, "doc_count": 1617, "interval_diff": { "value": 195 } }, { "key_as_string": "2016-08-01T00:00:00.000Z", "key": 1470009600000, "doc_count": 1422, "interval_diff": { "value": 172 } }, { "key_as_string": "2016-07-01T00:00:00.000Z", "key": 1467331200000, "doc_count": 1250, "interval_diff": { "value": -70 } }, { "key_as_string": "2016-06-01T00:00:00.000Z", "key": 1464739200000, "doc_count": 1320, "interval_diff": { "value": -6 } }, { "key_as_string": "2016-05-01T00:00:00.000Z", "key": 1462060800000, "doc_count": 1326, "interval_diff": { "value": 19 } }, { "key_as_string": "2016-04-01T00:00:00.000Z", "key": 1459468800000, "doc_count": 1307, "interval_diff": { "value": -55 } }, { "key_as_string": "2016-03-01T00:00:00.000Z", "key": 1456790400000, "doc_count": 1362, "interval_diff": { "value": 163 } }, { "key_as_string": "2016-02-01T00:00:00.000Z", "key": 1454284800000, "doc_count": 1199, "interval_diff": { "value": -57 } }, { "key_as_string": "2016-01-01T00:00:00.000Z", "key": 1451606400000, "doc_count": 1256, "interval_diff": { "value": 116 } }, { "key_as_string": "2015-12-01T00:00:00.000Z", "key": 1448928000000, "doc_count": 1140, "interval_diff": { "value": -65 } }, { "key_as_string": "2015-11-01T00:00:00.000Z", "key": 1446336000000, "doc_count": 1205, "interval_diff": { "value": -38 } }, { "key_as_string": "2015-10-01T00:00:00.000Z", "key": 1443657600000, "doc_count": 1243, "interval_diff": { "value": -114 } }, { "key_as_string": "2015-09-01T00:00:00.000Z", "key": 1441065600000, "doc_count": 1357, "interval_diff": { "value": -82 } }, { "key_as_string": "2015-08-01T00:00:00.000Z", "key": 1438387200000, "doc_count": 1439, "interval_diff": { "value": -3 } }, { "key_as_string": "2015-07-01T00:00:00.000Z", "key": 1435708800000, "doc_count": 1442, "interval_diff": { "value": 271 } }, { "key_as_string": "2015-06-01T00:00:00.000Z", "key": 1433116800000, "doc_count": 1171, "interval_diff": { "value": 77 } }, { "key_as_string": "2015-05-01T00:00:00.000Z", "key": 1430438400000, "doc_count": 1094, "interval_diff": { "value": -67 } }, { "key_as_string": "2015-04-01T00:00:00.000Z", "key": 1427846400000, "doc_count": 1161, "interval_diff": { "value": -74 } }, { "key_as_string": "2015-03-01T00:00:00.000Z", "key": 1425168000000, "doc_count": 1235, "interval_diff": { "value": 199 } }, { "key_as_string": "2015-02-01T00:00:00.000Z", "key": 1422748800000, "doc_count": 1036, "interval_diff": { "value": 6 } }, { "key_as_string": "2015-01-01T00:00:00.000Z", "key": 1420070400000, "doc_count": 1030, "interval_diff": { "value": 77 } }, { "key_as_string": "2014-12-01T00:00:00.000Z", "key": 1417392000000, "doc_count": 953, "interval_diff": { "value": 52 } }, { "key_as_string": "2014-11-01T00:00:00.000Z", "key": 1414800000000, "doc_count": 901, "interval_diff": { "value": -154 } }, { "key_as_string": "2014-10-01T00:00:00.000Z", "key": 1412121600000, "doc_count": 1055, "interval_diff": { "value": 38 } }, { "key_as_string": "2014-09-01T00:00:00.000Z", "key": 1409529600000, "doc_count": 1017, "interval_diff": { "value": -88 } }, { "key_as_string": "2014-08-01T00:00:00.000Z", "key": 1406851200000, "doc_count": 1105, "interval_diff": { "value": -31 } }, { "key_as_string": "2014-07-01T00:00:00.000Z", "key": 1404172800000, "doc_count": 1136, "interval_diff": { "value": 142 } }, { "key_as_string": "2014-06-01T00:00:00.000Z", "key": 1401580800000, "doc_count": 994, "interval_diff": { "value": -29 } }, { "key_as_string": "2014-05-01T00:00:00.000Z", "key": 1398902400000, "doc_count": 1023, "interval_diff": { "value": -96 } }, { "key_as_string": "2014-04-01T00:00:00.000Z", "key": 1396310400000, "doc_count": 1119, "interval_diff": { "value": -82 } }, { "key_as_string": "2014-03-01T00:00:00.000Z", "key": 1393632000000, "doc_count": 1201, "interval_diff": { "value": 118 } }, { "key_as_string": "2014-02-01T00:00:00.000Z", "key": 1391212800000, "doc_count": 1083, "interval_diff": { "value": -16 } }, { "key_as_string": "2014-01-01T00:00:00.000Z", "key": 1388534400000, "doc_count": 1099, "interval_diff": { "value": 453 } }, { "key_as_string": "2013-12-01T00:00:00.000Z", "key": 1385856000000, "doc_count": 646, "interval_diff": { "value": -160 } }, { "key_as_string": "2013-11-01T00:00:00.000Z", "key": 1383264000000, "doc_count": 806, "interval_diff": { "value": 22 } }, { "key_as_string": "2013-10-01T00:00:00.000Z", "key": 1380585600000, "doc_count": 784, "interval_diff": { "value": -30 } }, { "key_as_string": "2013-09-01T00:00:00.000Z", "key": 1377993600000, "doc_count": 814, "interval_diff": { "value": -13 } }, { "key_as_string": "2013-08-01T00:00:00.000Z", "key": 1375315200000, "doc_count": 827, "interval_diff": { "value": 11 } }, { "key_as_string": "2013-07-01T00:00:00.000Z", "key": 1372636800000, "doc_count": 816, "interval_diff": { "value": 185 } }, { "key_as_string": "2013-06-01T00:00:00.000Z", "key": 1370044800000, "doc_count": 631, "interval_diff": { "value": -4 } }, { "key_as_string": "2013-05-01T00:00:00.000Z", "key": 1367366400000, "doc_count": 635, "interval_diff": { "value": -88 } }, { "key_as_string": "2013-04-01T00:00:00.000Z", "key": 1364774400000, "doc_count": 723, "interval_diff": { "value": 101 } }, { "key_as_string": "2013-03-01T00:00:00.000Z", "key": 1362096000000, "doc_count": 622, "interval_diff": { "value": 97 } }, { "key_as_string": "2013-02-01T00:00:00.000Z", "key": 1359676800000, "doc_count": 525, "interval_diff": { "value": -87 } }, { "key_as_string": "2013-01-01T00:00:00.000Z", "key": 1356998400000, "doc_count": 612, "interval_diff": { "value": 258 } }, { "key_as_string": "2012-12-01T00:00:00.000Z", "key": 1354320000000, "doc_count": 354, "interval_diff": { "value": -27 } }, { "key_as_string": "2012-11-01T00:00:00.000Z", "key": 1351728000000, "doc_count": 381, "interval_diff": { "value": -70 } }, { "key_as_string": "2012-10-01T00:00:00.000Z", "key": 1349049600000, "doc_count": 451, "interval_diff": { "value": 111 } }, { "key_as_string": "2012-09-01T00:00:00.000Z", "key": 1346457600000, "doc_count": 340, "interval_diff": { "value": -101 } }, { "key_as_string": "2012-08-01T00:00:00.000Z", "key": 1343779200000, "doc_count": 441, "interval_diff": { "value": -1 } }, { "key_as_string": "2012-07-01T00:00:00.000Z", "key": 1341100800000, "doc_count": 442, "interval_diff": { "value": 435 } }, { "key_as_string": "2012-06-01T00:00:00.000Z", "key": 1338508800000, "doc_count": 7 } ] } }, { "key": "Older American, Servicemember", "doc_count": 17831, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 11, "interval_diff": { "value": -263 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 274, "interval_diff": { "value": -33 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 307, "interval_diff": { "value": -20 } }, { "key_as_string": "2020-02-01T00:00:00.000Z", "key": 1580515200000, "doc_count": 327, "interval_diff": { "value": 8 } }, { "key_as_string": "2020-01-01T00:00:00.000Z", "key": 1577836800000, "doc_count": 319, "interval_diff": { "value": 73 } }, { "key_as_string": "2019-12-01T00:00:00.000Z", "key": 1575158400000, "doc_count": 246, "interval_diff": { "value": -23 } }, { "key_as_string": "2019-11-01T00:00:00.000Z", "key": 1572566400000, "doc_count": 269, "interval_diff": { "value": -68 } }, { "key_as_string": "2019-10-01T00:00:00.000Z", "key": 1569888000000, "doc_count": 337, "interval_diff": { "value": 45 } }, { "key_as_string": "2019-09-01T00:00:00.000Z", "key": 1567296000000, "doc_count": 292, "interval_diff": { "value": -32 } }, { "key_as_string": "2019-08-01T00:00:00.000Z", "key": 1564617600000, "doc_count": 324, "interval_diff": { "value": -2 } }, { "key_as_string": "2019-07-01T00:00:00.000Z", "key": 1561939200000, "doc_count": 326, "interval_diff": { "value": 14 } }, { "key_as_string": "2019-06-01T00:00:00.000Z", "key": 1559347200000, "doc_count": 312, "interval_diff": { "value": -3 } }, { "key_as_string": "2019-05-01T00:00:00.000Z", "key": 1556668800000, "doc_count": 315, "interval_diff": { "value": 16 } }, { "key_as_string": "2019-04-01T00:00:00.000Z", "key": 1554076800000, "doc_count": 299, "interval_diff": { "value": 7 } }, { "key_as_string": "2019-03-01T00:00:00.000Z", "key": 1551398400000, "doc_count": 292, "interval_diff": { "value": -8 } }, { "key_as_string": "2019-02-01T00:00:00.000Z", "key": 1548979200000, "doc_count": 300, "interval_diff": { "value": 98 } }, { "key_as_string": "2019-01-01T00:00:00.000Z", "key": 1546300800000, "doc_count": 202, "interval_diff": { "value": 2 } }, { "key_as_string": "2018-12-01T00:00:00.000Z", "key": 1543622400000, "doc_count": 200, "interval_diff": { "value": 30 } }, { "key_as_string": "2018-11-01T00:00:00.000Z", "key": 1541030400000, "doc_count": 170, "interval_diff": { "value": -41 } }, { "key_as_string": "2018-10-01T00:00:00.000Z", "key": 1538352000000, "doc_count": 211, "interval_diff": { "value": -14 } }, { "key_as_string": "2018-09-01T00:00:00.000Z", "key": 1535760000000, "doc_count": 225, "interval_diff": { "value": 6 } }, { "key_as_string": "2018-08-01T00:00:00.000Z", "key": 1533081600000, "doc_count": 219, "interval_diff": { "value": -10 } }, { "key_as_string": "2018-07-01T00:00:00.000Z", "key": 1530403200000, "doc_count": 229, "interval_diff": { "value": 26 } }, { "key_as_string": "2018-06-01T00:00:00.000Z", "key": 1527811200000, "doc_count": 203, "interval_diff": { "value": -3 } }, { "key_as_string": "2018-05-01T00:00:00.000Z", "key": 1525132800000, "doc_count": 206, "interval_diff": { "value": -11 } }, { "key_as_string": "2018-04-01T00:00:00.000Z", "key": 1522540800000, "doc_count": 217, "interval_diff": { "value": -3 } }, { "key_as_string": "2018-03-01T00:00:00.000Z", "key": 1519862400000, "doc_count": 220, "interval_diff": { "value": 20 } }, { "key_as_string": "2018-02-01T00:00:00.000Z", "key": 1517443200000, "doc_count": 200, "interval_diff": { "value": 0 } }, { "key_as_string": "2018-01-01T00:00:00.000Z", "key": 1514764800000, "doc_count": 200, "interval_diff": { "value": -14 } }, { "key_as_string": "2017-12-01T00:00:00.000Z", "key": 1512086400000, "doc_count": 214, "interval_diff": { "value": 2 } }, { "key_as_string": "2017-11-01T00:00:00.000Z", "key": 1509494400000, "doc_count": 212, "interval_diff": { "value": -36 } }, { "key_as_string": "2017-10-01T00:00:00.000Z", "key": 1506816000000, "doc_count": 248, "interval_diff": { "value": -10 } }, { "key_as_string": "2017-09-01T00:00:00.000Z", "key": 1504224000000, "doc_count": 258, "interval_diff": { "value": 26 } }, { "key_as_string": "2017-08-01T00:00:00.000Z", "key": 1501545600000, "doc_count": 232, "interval_diff": { "value": 3 } }, { "key_as_string": "2017-07-01T00:00:00.000Z", "key": 1498867200000, "doc_count": 229, "interval_diff": { "value": 6 } }, { "key_as_string": "2017-06-01T00:00:00.000Z", "key": 1496275200000, "doc_count": 223, "interval_diff": { "value": 34 } }, { "key_as_string": "2017-05-01T00:00:00.000Z", "key": 1493596800000, "doc_count": 189, "interval_diff": { "value": 6 } }, { "key_as_string": "2017-04-01T00:00:00.000Z", "key": 1491004800000, "doc_count": 183, "interval_diff": { "value": -3 } }, { "key_as_string": "2017-03-01T00:00:00.000Z", "key": 1488326400000, "doc_count": 186, "interval_diff": { "value": 22 } }, { "key_as_string": "2017-02-01T00:00:00.000Z", "key": 1485907200000, "doc_count": 164, "interval_diff": { "value": -14 } }, { "key_as_string": "2017-01-01T00:00:00.000Z", "key": 1483228800000, "doc_count": 178, "interval_diff": { "value": 18 } }, { "key_as_string": "2016-12-01T00:00:00.000Z", "key": 1480550400000, "doc_count": 160, "interval_diff": { "value": -17 } }, { "key_as_string": "2016-11-01T00:00:00.000Z", "key": 1477958400000, "doc_count": 177, "interval_diff": { "value": -13 } }, { "key_as_string": "2016-10-01T00:00:00.000Z", "key": 1475280000000, "doc_count": 190, "interval_diff": { "value": -29 } }, { "key_as_string": "2016-09-01T00:00:00.000Z", "key": 1472688000000, "doc_count": 219, "interval_diff": { "value": -13 } }, { "key_as_string": "2016-08-01T00:00:00.000Z", "key": 1470009600000, "doc_count": 232, "interval_diff": { "value": 53 } }, { "key_as_string": "2016-07-01T00:00:00.000Z", "key": 1467331200000, "doc_count": 179, "interval_diff": { "value": -6 } }, { "key_as_string": "2016-06-01T00:00:00.000Z", "key": 1464739200000, "doc_count": 185, "interval_diff": { "value": -16 } }, { "key_as_string": "2016-05-01T00:00:00.000Z", "key": 1462060800000, "doc_count": 201, "interval_diff": { "value": 0 } }, { "key_as_string": "2016-04-01T00:00:00.000Z", "key": 1459468800000, "doc_count": 201, "interval_diff": { "value": -27 } }, { "key_as_string": "2016-03-01T00:00:00.000Z", "key": 1456790400000, "doc_count": 228, "interval_diff": { "value": 19 } }, { "key_as_string": "2016-02-01T00:00:00.000Z", "key": 1454284800000, "doc_count": 209, "interval_diff": { "value": 0 } }, { "key_as_string": "2016-01-01T00:00:00.000Z", "key": 1451606400000, "doc_count": 209, "interval_diff": { "value": 18 } }, { "key_as_string": "2015-12-01T00:00:00.000Z", "key": 1448928000000, "doc_count": 191, "interval_diff": { "value": 5 } }, { "key_as_string": "2015-11-01T00:00:00.000Z", "key": 1446336000000, "doc_count": 186, "interval_diff": { "value": -23 } }, { "key_as_string": "2015-10-01T00:00:00.000Z", "key": 1443657600000, "doc_count": 209, "interval_diff": { "value": -22 } }, { "key_as_string": "2015-09-01T00:00:00.000Z", "key": 1441065600000, "doc_count": 231, "interval_diff": { "value": 45 } }, { "key_as_string": "2015-08-01T00:00:00.000Z", "key": 1438387200000, "doc_count": 186, "interval_diff": { "value": -28 } }, { "key_as_string": "2015-07-01T00:00:00.000Z", "key": 1435708800000, "doc_count": 214, "interval_diff": { "value": 28 } }, { "key_as_string": "2015-06-01T00:00:00.000Z", "key": 1433116800000, "doc_count": 186, "interval_diff": { "value": 26 } }, { "key_as_string": "2015-05-01T00:00:00.000Z", "key": 1430438400000, "doc_count": 160, "interval_diff": { "value": -28 } }, { "key_as_string": "2015-04-01T00:00:00.000Z", "key": 1427846400000, "doc_count": 188, "interval_diff": { "value": 3 } }, { "key_as_string": "2015-03-01T00:00:00.000Z", "key": 1425168000000, "doc_count": 185, "interval_diff": { "value": 11 } }, { "key_as_string": "2015-02-01T00:00:00.000Z", "key": 1422748800000, "doc_count": 174, "interval_diff": { "value": 34 } }, { "key_as_string": "2015-01-01T00:00:00.000Z", "key": 1420070400000, "doc_count": 140, "interval_diff": { "value": -30 } }, { "key_as_string": "2014-12-01T00:00:00.000Z", "key": 1417392000000, "doc_count": 170, "interval_diff": { "value": 24 } }, { "key_as_string": "2014-11-01T00:00:00.000Z", "key": 1414800000000, "doc_count": 146, "interval_diff": { "value": -15 } }, { "key_as_string": "2014-10-01T00:00:00.000Z", "key": 1412121600000, "doc_count": 161, "interval_diff": { "value": -9 } }, { "key_as_string": "2014-09-01T00:00:00.000Z", "key": 1409529600000, "doc_count": 170, "interval_diff": { "value": 20 } }, { "key_as_string": "2014-08-01T00:00:00.000Z", "key": 1406851200000, "doc_count": 150, "interval_diff": { "value": -41 } }, { "key_as_string": "2014-07-01T00:00:00.000Z", "key": 1404172800000, "doc_count": 191, "interval_diff": { "value": 59 } }, { "key_as_string": "2014-06-01T00:00:00.000Z", "key": 1401580800000, "doc_count": 132, "interval_diff": { "value": -31 } }, { "key_as_string": "2014-05-01T00:00:00.000Z", "key": 1398902400000, "doc_count": 163, "interval_diff": { "value": -18 } }, { "key_as_string": "2014-04-01T00:00:00.000Z", "key": 1396310400000, "doc_count": 181, "interval_diff": { "value": 25 } }, { "key_as_string": "2014-03-01T00:00:00.000Z", "key": 1393632000000, "doc_count": 156, "interval_diff": { "value": 15 } }, { "key_as_string": "2014-02-01T00:00:00.000Z", "key": 1391212800000, "doc_count": 141, "interval_diff": { "value": -29 } }, { "key_as_string": "2014-01-01T00:00:00.000Z", "key": 1388534400000, "doc_count": 170, "interval_diff": { "value": 25 } }, { "key_as_string": "2013-12-01T00:00:00.000Z", "key": 1385856000000, "doc_count": 145, "interval_diff": { "value": 11 } }, { "key_as_string": "2013-11-01T00:00:00.000Z", "key": 1383264000000, "doc_count": 134, "interval_diff": { "value": 31 } }, { "key_as_string": "2013-10-01T00:00:00.000Z", "key": 1380585600000, "doc_count": 103, "interval_diff": { "value": -27 } }, { "key_as_string": "2013-09-01T00:00:00.000Z", "key": 1377993600000, "doc_count": 130, "interval_diff": { "value": -15 } }, { "key_as_string": "2013-08-01T00:00:00.000Z", "key": 1375315200000, "doc_count": 145, "interval_diff": { "value": 37 } }, { "key_as_string": "2013-07-01T00:00:00.000Z", "key": 1372636800000, "doc_count": 108, "interval_diff": { "value": 31 } }, { "key_as_string": "2013-06-01T00:00:00.000Z", "key": 1370044800000, "doc_count": 77, "interval_diff": { "value": 3 } }, { "key_as_string": "2013-05-01T00:00:00.000Z", "key": 1367366400000, "doc_count": 74, "interval_diff": { "value": -26 } }, { "key_as_string": "2013-04-01T00:00:00.000Z", "key": 1364774400000, "doc_count": 100, "interval_diff": { "value": 32 } }, { "key_as_string": "2013-03-01T00:00:00.000Z", "key": 1362096000000, "doc_count": 68, "interval_diff": { "value": 9 } }, { "key_as_string": "2013-02-01T00:00:00.000Z", "key": 1359676800000, "doc_count": 59, "interval_diff": { "value": -16 } }, { "key_as_string": "2013-01-01T00:00:00.000Z", "key": 1356998400000, "doc_count": 75, "interval_diff": { "value": 25 } }, { "key_as_string": "2012-12-01T00:00:00.000Z", "key": 1354320000000, "doc_count": 50, "interval_diff": { "value": 3 } }, { "key_as_string": "2012-11-01T00:00:00.000Z", "key": 1351728000000, "doc_count": 47, "interval_diff": { "value": 9 } }, { "key_as_string": "2012-10-01T00:00:00.000Z", "key": 1349049600000, "doc_count": 38, "interval_diff": { "value": 7 } }, { "key_as_string": "2012-09-01T00:00:00.000Z", "key": 1346457600000, "doc_count": 31, "interval_diff": { "value": -16 } }, { "key_as_string": "2012-08-01T00:00:00.000Z", "key": 1343779200000, "doc_count": 47, "interval_diff": { "value": -14 } }, { "key_as_string": "2012-07-01T00:00:00.000Z", "key": 1341100800000, "doc_count": 61 } ] } } ] } } }
+export default {"dateRangeBrush":{"doc_count":1660586,"dateRangeBrush":{"buckets":[{"key_as_string":"2011-12-01T00:00:00.000Z","key":1322697600000,"doc_count":2536},{"key_as_string":"2012-01-01T00:00:00.000Z","key":1325376000000,"doc_count":3230},{"key_as_string":"2012-02-01T00:00:00.000Z","key":1328054400000,"doc_count":3509},{"key_as_string":"2012-03-01T00:00:00.000Z","key":1330560000000,"doc_count":6230},{"key_as_string":"2012-04-01T00:00:00.000Z","key":1333238400000,"doc_count":5703},{"key_as_string":"2012-05-01T00:00:00.000Z","key":1335830400000,"doc_count":7617},{"key_as_string":"2012-06-01T00:00:00.000Z","key":1338508800000,"doc_count":7841},{"key_as_string":"2012-07-01T00:00:00.000Z","key":1341100800000,"doc_count":6755},{"key_as_string":"2012-08-01T00:00:00.000Z","key":1343779200000,"doc_count":6877},{"key_as_string":"2012-09-01T00:00:00.000Z","key":1346457600000,"doc_count":5493},{"key_as_string":"2012-10-01T00:00:00.000Z","key":1349049600000,"doc_count":6741},{"key_as_string":"2012-11-01T00:00:00.000Z","key":1351728000000,"doc_count":6139},{"key_as_string":"2012-12-01T00:00:00.000Z","key":1354320000000,"doc_count":6238},{"key_as_string":"2013-01-01T00:00:00.000Z","key":1356998400000,"doc_count":9741},{"key_as_string":"2013-02-01T00:00:00.000Z","key":1359676800000,"doc_count":8349},{"key_as_string":"2013-03-01T00:00:00.000Z","key":1362096000000,"doc_count":8784},{"key_as_string":"2013-04-01T00:00:00.000Z","key":1364774400000,"doc_count":8632},{"key_as_string":"2013-05-01T00:00:00.000Z","key":1367366400000,"doc_count":8170},{"key_as_string":"2013-06-01T00:00:00.000Z","key":1370044800000,"doc_count":8035},{"key_as_string":"2013-07-01T00:00:00.000Z","key":1372636800000,"doc_count":9271},{"key_as_string":"2013-08-01T00:00:00.000Z","key":1375315200000,"doc_count":9565},{"key_as_string":"2013-09-01T00:00:00.000Z","key":1377993600000,"doc_count":9636},{"key_as_string":"2013-10-01T00:00:00.000Z","key":1380585600000,"doc_count":9241},{"key_as_string":"2013-11-01T00:00:00.000Z","key":1383264000000,"doc_count":9319},{"key_as_string":"2013-12-01T00:00:00.000Z","key":1385856000000,"doc_count":9474},{"key_as_string":"2014-01-01T00:00:00.000Z","key":1388534400000,"doc_count":12617},{"key_as_string":"2014-02-01T00:00:00.000Z","key":1391212800000,"doc_count":13048},{"key_as_string":"2014-03-01T00:00:00.000Z","key":1393632000000,"doc_count":13943},{"key_as_string":"2014-04-01T00:00:00.000Z","key":1396310400000,"doc_count":13840},{"key_as_string":"2014-05-01T00:00:00.000Z","key":1398902400000,"doc_count":12167},{"key_as_string":"2014-06-01T00:00:00.000Z","key":1401580800000,"doc_count":12520},{"key_as_string":"2014-07-01T00:00:00.000Z","key":1404172800000,"doc_count":13415},{"key_as_string":"2014-08-01T00:00:00.000Z","key":1406851200000,"doc_count":13186},{"key_as_string":"2014-09-01T00:00:00.000Z","key":1409529600000,"doc_count":12465},{"key_as_string":"2014-10-01T00:00:00.000Z","key":1412121600000,"doc_count":12901},{"key_as_string":"2014-11-01T00:00:00.000Z","key":1414800000000,"doc_count":11257},{"key_as_string":"2014-12-01T00:00:00.000Z","key":1417392000000,"doc_count":11684},{"key_as_string":"2015-01-01T00:00:00.000Z","key":1420070400000,"doc_count":12627},{"key_as_string":"2015-02-01T00:00:00.000Z","key":1422748800000,"doc_count":12680},{"key_as_string":"2015-03-01T00:00:00.000Z","key":1425168000000,"doc_count":14514},{"key_as_string":"2015-04-01T00:00:00.000Z","key":1427846400000,"doc_count":13753},{"key_as_string":"2015-05-01T00:00:00.000Z","key":1430438400000,"doc_count":13682},{"key_as_string":"2015-06-01T00:00:00.000Z","key":1433116800000,"doc_count":14517},{"key_as_string":"2015-07-01T00:00:00.000Z","key":1435708800000,"doc_count":15920},{"key_as_string":"2015-08-01T00:00:00.000Z","key":1438387200000,"doc_count":15766},{"key_as_string":"2015-09-01T00:00:00.000Z","key":1441065600000,"doc_count":14336},{"key_as_string":"2015-10-01T00:00:00.000Z","key":1443657600000,"doc_count":14899},{"key_as_string":"2015-11-01T00:00:00.000Z","key":1446336000000,"doc_count":12897},{"key_as_string":"2015-12-01T00:00:00.000Z","key":1448928000000,"doc_count":12884},{"key_as_string":"2016-01-01T00:00:00.000Z","key":1451606400000,"doc_count":13840},{"key_as_string":"2016-02-01T00:00:00.000Z","key":1454284800000,"doc_count":14140},{"key_as_string":"2016-03-01T00:00:00.000Z","key":1456790400000,"doc_count":16611},{"key_as_string":"2016-04-01T00:00:00.000Z","key":1459468800000,"doc_count":15608},{"key_as_string":"2016-05-01T00:00:00.000Z","key":1462060800000,"doc_count":15517},{"key_as_string":"2016-06-01T00:00:00.000Z","key":1464739200000,"doc_count":16063},{"key_as_string":"2016-07-01T00:00:00.000Z","key":1467331200000,"doc_count":16043},{"key_as_string":"2016-08-01T00:00:00.000Z","key":1470009600000,"doc_count":17694},{"key_as_string":"2016-09-01T00:00:00.000Z","key":1472688000000,"doc_count":17584},{"key_as_string":"2016-10-01T00:00:00.000Z","key":1475280000000,"doc_count":17820},{"key_as_string":"2016-11-01T00:00:00.000Z","key":1477958400000,"doc_count":15207},{"key_as_string":"2016-12-01T00:00:00.000Z","key":1480550400000,"doc_count":15341},{"key_as_string":"2017-01-01T00:00:00.000Z","key":1483228800000,"doc_count":21006},{"key_as_string":"2017-02-01T00:00:00.000Z","key":1485907200000,"doc_count":18110},{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":19762},{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":18544},{"key_as_string":"2017-05-01T00:00:00.000Z","key":1493596800000,"doc_count":19304},{"key_as_string":"2017-06-01T00:00:00.000Z","key":1496275200000,"doc_count":18567},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":20433},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":21402},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":27357},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":20456},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":18990},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":19034},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":23650},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":21978},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":23639},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":24327},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":22339},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":20111},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":20963},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":21726},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":19072},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":21903},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":19053},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":18552},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":18934},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":20206},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":23412},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":22915},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":23850},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":23352},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":25090},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":26059},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":23575},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":25636},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":22657},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":21704},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":26413},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":25097},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":29494},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":34805},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":37146},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":32699},{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":1152}]}},"product":{"doc_count":1660586,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":389601,"buckets":[{"key":"Credit reporting, credit repair services, or other personal consumer reports","doc_count":436241,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Credit reporting","doc_count":429446,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":21394,"interval_diff":{"value":-2132}}]}},{"key":"Other personal consumer report","doc_count":5424,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":131,"interval_diff":{"value":27}}]}},{"key":"Credit repair services","doc_count":1370,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":38,"interval_diff":{"value":-2}}]}},{"key":"Conventional home mortgage","doc_count":1,"trend_period":{"buckets":[]}}]},"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":917,"interval_diff":{"value":-20643}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":21560,"interval_diff":{"value":-2108}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":23668,"interval_diff":{"value":2856}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":20812,"interval_diff":{"value":3589}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":17223,"interval_diff":{"value":3622}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":13601,"interval_diff":{"value":-1246}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":14847,"interval_diff":{"value":3539}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":11308,"interval_diff":{"value":-540}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":11848,"interval_diff":{"value":-1364}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":13212,"interval_diff":{"value":1116}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":12096,"interval_diff":{"value":-1425}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":13521,"interval_diff":{"value":515}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":13006,"interval_diff":{"value":1264}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":11742,"interval_diff":{"value":-179}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":11921,"interval_diff":{"value":863}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":11058,"interval_diff":{"value":57}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":11001,"interval_diff":{"value":1634}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":9367,"interval_diff":{"value":853}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":8514,"interval_diff":{"value":149}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":8365,"interval_diff":{"value":-562}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":8927,"interval_diff":{"value":-923}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":9850,"interval_diff":{"value":1447}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":8403,"interval_diff":{"value":-1046}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":9449,"interval_diff":{"value":309}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":9140,"interval_diff":{"value":645}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":8495,"interval_diff":{"value":-980}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":9475,"interval_diff":{"value":-863}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":10338,"interval_diff":{"value":463}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":9875,"interval_diff":{"value":189}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":9686,"interval_diff":{"value":64}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":9622,"interval_diff":{"value":1926}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":7696,"interval_diff":{"value":-204}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":7900,"interval_diff":{"value":-835}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":8735,"interval_diff":{"value":-7360}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":16095,"interval_diff":{"value":7306}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":8789,"interval_diff":{"value":604}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":8185,"interval_diff":{"value":1261}},{"key_as_string":"2017-06-01T00:00:00.000Z","key":1496275200000,"doc_count":6924,"interval_diff":{"value":-184}},{"key_as_string":"2017-05-01T00:00:00.000Z","key":1493596800000,"doc_count":7108,"interval_diff":{"value":5146}},{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":1962}]}},{"key":"Mortgage","doc_count":304721,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Other mortgage","doc_count":86635,"trend_period":{"buckets":[{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":1006,"interval_diff":{"value":145}}]}},{"key":"Conventional fixed mortgage","doc_count":70613,"trend_period":{"buckets":[{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":1012,"interval_diff":{"value":16}}]}},{"key":"Conventional home mortgage","doc_count":45658,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":901,"interval_diff":{"value":-317}}]}},{"key":"FHA mortgage","doc_count":35734,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":207,"interval_diff":{"value":-90}}]}},{"key":"Conventional adjustable mortgage (ARM)","doc_count":25380,"trend_period":{"buckets":[{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":359,"interval_diff":{"value":60}}]}},{"key":"Home equity loan or line of credit","doc_count":11624,"trend_period":{"buckets":[{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":235,"interval_diff":{"value":61}}]}},{"key":"Other type of mortgage","doc_count":10794,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":122,"interval_diff":{"value":6}}]}},{"key":"VA mortgage","doc_count":9306,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":101,"interval_diff":{"value":-49}}]}},{"key":"Home equity loan or line of credit (HELOC)","doc_count":5072,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":103,"interval_diff":{"value":-19}}]}},{"key":"Reverse mortgage","doc_count":3243,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":16,"interval_diff":{"value":-4}}]}},{"key":"Second mortgage","doc_count":662,"trend_period":{"buckets":[{"key_as_string":"2016-02-01T00:00:00.000Z","key":1454284800000,"doc_count":0,"interval_diff":{"value":0}}]}}]},"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":12,"interval_diff":{"value":-1380}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1392,"interval_diff":{"value":-514}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1906,"interval_diff":{"value":-295}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":2201,"interval_diff":{"value":67}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":2134,"interval_diff":{"value":309}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":1825,"interval_diff":{"value":-10}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":1835,"interval_diff":{"value":148}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":1687,"interval_diff":{"value":-30}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":1717,"interval_diff":{"value":-354}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":2071,"interval_diff":{"value":215}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":1856,"interval_diff":{"value":-179}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2035,"interval_diff":{"value":23}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":2012,"interval_diff":{"value":154}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":1858,"interval_diff":{"value":-87}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1945,"interval_diff":{"value":-48}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1993,"interval_diff":{"value":-12}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":2005,"interval_diff":{"value":256}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":1749,"interval_diff":{"value":-31}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":1780,"interval_diff":{"value":162}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":1618,"interval_diff":{"value":-16}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":1634,"interval_diff":{"value":-332}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":1966,"interval_diff":{"value":186}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":1780,"interval_diff":{"value":-305}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":2085,"interval_diff":{"value":69}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":2016,"interval_diff":{"value":132}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":1884,"interval_diff":{"value":-337}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":2221,"interval_diff":{"value":-504}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":2725,"interval_diff":{"value":303}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":2422,"interval_diff":{"value":323}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":2099,"interval_diff":{"value":-26}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":2125,"interval_diff":{"value":90}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":2035,"interval_diff":{"value":-134}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":2169,"interval_diff":{"value":-135}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":2304,"interval_diff":{"value":39}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":2265,"interval_diff":{"value":-183}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":2448,"interval_diff":{"value":154}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":2294,"interval_diff":{"value":-56}},{"key_as_string":"2017-06-01T00:00:00.000Z","key":1496275200000,"doc_count":2350,"interval_diff":{"value":-315}},{"key_as_string":"2017-05-01T00:00:00.000Z","key":1493596800000,"doc_count":2665,"interval_diff":{"value":94}},{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":2571,"interval_diff":{"value":-677}},{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":3248,"interval_diff":{"value":325}},{"key_as_string":"2017-02-01T00:00:00.000Z","key":1485907200000,"doc_count":2923,"interval_diff":{"value":-381}},{"key_as_string":"2017-01-01T00:00:00.000Z","key":1483228800000,"doc_count":3304,"interval_diff":{"value":251}},{"key_as_string":"2016-12-01T00:00:00.000Z","key":1480550400000,"doc_count":3053,"interval_diff":{"value":-138}},{"key_as_string":"2016-11-01T00:00:00.000Z","key":1477958400000,"doc_count":3191,"interval_diff":{"value":-352}},{"key_as_string":"2016-10-01T00:00:00.000Z","key":1475280000000,"doc_count":3543,"interval_diff":{"value":-137}},{"key_as_string":"2016-09-01T00:00:00.000Z","key":1472688000000,"doc_count":3680,"interval_diff":{"value":192}},{"key_as_string":"2016-08-01T00:00:00.000Z","key":1470009600000,"doc_count":3488,"interval_diff":{"value":302}},{"key_as_string":"2016-07-01T00:00:00.000Z","key":1467331200000,"doc_count":3186,"interval_diff":{"value":-324}},{"key_as_string":"2016-06-01T00:00:00.000Z","key":1464739200000,"doc_count":3510,"interval_diff":{"value":30}},{"key_as_string":"2016-05-01T00:00:00.000Z","key":1462060800000,"doc_count":3480,"interval_diff":{"value":-37}},{"key_as_string":"2016-04-01T00:00:00.000Z","key":1459468800000,"doc_count":3517,"interval_diff":{"value":-376}},{"key_as_string":"2016-03-01T00:00:00.000Z","key":1456790400000,"doc_count":3893,"interval_diff":{"value":454}},{"key_as_string":"2016-02-01T00:00:00.000Z","key":1454284800000,"doc_count":3439,"interval_diff":{"value":-47}},{"key_as_string":"2016-01-01T00:00:00.000Z","key":1451606400000,"doc_count":3486,"interval_diff":{"value":399}},{"key_as_string":"2015-12-01T00:00:00.000Z","key":1448928000000,"doc_count":3087,"interval_diff":{"value":-54}},{"key_as_string":"2015-11-01T00:00:00.000Z","key":1446336000000,"doc_count":3141,"interval_diff":{"value":-511}},{"key_as_string":"2015-10-01T00:00:00.000Z","key":1443657600000,"doc_count":3652,"interval_diff":{"value":-145}},{"key_as_string":"2015-09-01T00:00:00.000Z","key":1441065600000,"doc_count":3797,"interval_diff":{"value":-335}},{"key_as_string":"2015-08-01T00:00:00.000Z","key":1438387200000,"doc_count":4132,"interval_diff":{"value":385}},{"key_as_string":"2015-07-01T00:00:00.000Z","key":1435708800000,"doc_count":3747,"interval_diff":{"value":-215}},{"key_as_string":"2015-06-01T00:00:00.000Z","key":1433116800000,"doc_count":3962,"interval_diff":{"value":372}},{"key_as_string":"2015-05-01T00:00:00.000Z","key":1430438400000,"doc_count":3590,"interval_diff":{"value":-28}},{"key_as_string":"2015-04-01T00:00:00.000Z","key":1427846400000,"doc_count":3618,"interval_diff":{"value":61}},{"key_as_string":"2015-03-01T00:00:00.000Z","key":1425168000000,"doc_count":3557,"interval_diff":{"value":505}},{"key_as_string":"2015-02-01T00:00:00.000Z","key":1422748800000,"doc_count":3052,"interval_diff":{"value":42}},{"key_as_string":"2015-01-01T00:00:00.000Z","key":1420070400000,"doc_count":3010,"interval_diff":{"value":-5}},{"key_as_string":"2014-12-01T00:00:00.000Z","key":1417392000000,"doc_count":3015,"interval_diff":{"value":42}},{"key_as_string":"2014-11-01T00:00:00.000Z","key":1414800000000,"doc_count":2973,"interval_diff":{"value":-774}},{"key_as_string":"2014-10-01T00:00:00.000Z","key":1412121600000,"doc_count":3747,"interval_diff":{"value":310}},{"key_as_string":"2014-09-01T00:00:00.000Z","key":1409529600000,"doc_count":3437,"interval_diff":{"value":-164}},{"key_as_string":"2014-08-01T00:00:00.000Z","key":1406851200000,"doc_count":3601,"interval_diff":{"value":-36}},{"key_as_string":"2014-07-01T00:00:00.000Z","key":1404172800000,"doc_count":3637,"interval_diff":{"value":211}},{"key_as_string":"2014-06-01T00:00:00.000Z","key":1401580800000,"doc_count":3426,"interval_diff":{"value":-31}},{"key_as_string":"2014-05-01T00:00:00.000Z","key":1398902400000,"doc_count":3457,"interval_diff":{"value":-573}},{"key_as_string":"2014-04-01T00:00:00.000Z","key":1396310400000,"doc_count":4030,"interval_diff":{"value":-149}},{"key_as_string":"2014-03-01T00:00:00.000Z","key":1393632000000,"doc_count":4179,"interval_diff":{"value":319}},{"key_as_string":"2014-02-01T00:00:00.000Z","key":1391212800000,"doc_count":3860,"interval_diff":{"value":261}},{"key_as_string":"2014-01-01T00:00:00.000Z","key":1388534400000,"doc_count":3599,"interval_diff":{"value":739}},{"key_as_string":"2013-12-01T00:00:00.000Z","key":1385856000000,"doc_count":2860,"interval_diff":{"value":-24}},{"key_as_string":"2013-11-01T00:00:00.000Z","key":1383264000000,"doc_count":2884,"interval_diff":{"value":-309}},{"key_as_string":"2013-10-01T00:00:00.000Z","key":1380585600000,"doc_count":3193,"interval_diff":{"value":-175}},{"key_as_string":"2013-09-01T00:00:00.000Z","key":1377993600000,"doc_count":3368,"interval_diff":{"value":-669}},{"key_as_string":"2013-08-01T00:00:00.000Z","key":1375315200000,"doc_count":4037,"interval_diff":{"value":-315}},{"key_as_string":"2013-07-01T00:00:00.000Z","key":1372636800000,"doc_count":4352,"interval_diff":{"value":-15}},{"key_as_string":"2013-06-01T00:00:00.000Z","key":1370044800000,"doc_count":4367,"interval_diff":{"value":-5}},{"key_as_string":"2013-05-01T00:00:00.000Z","key":1367366400000,"doc_count":4372,"interval_diff":{"value":-348}},{"key_as_string":"2013-04-01T00:00:00.000Z","key":1364774400000,"doc_count":4720,"interval_diff":{"value":28}},{"key_as_string":"2013-03-01T00:00:00.000Z","key":1362096000000,"doc_count":4692,"interval_diff":{"value":68}},{"key_as_string":"2013-02-01T00:00:00.000Z","key":1359676800000,"doc_count":4624,"interval_diff":{"value":-1307}},{"key_as_string":"2013-01-01T00:00:00.000Z","key":1356998400000,"doc_count":5931,"interval_diff":{"value":2754}},{"key_as_string":"2012-12-01T00:00:00.000Z","key":1354320000000,"doc_count":3177,"interval_diff":{"value":246}},{"key_as_string":"2012-11-01T00:00:00.000Z","key":1351728000000,"doc_count":2931,"interval_diff":{"value":-388}},{"key_as_string":"2012-10-01T00:00:00.000Z","key":1349049600000,"doc_count":3319,"interval_diff":{"value":266}},{"key_as_string":"2012-09-01T00:00:00.000Z","key":1346457600000,"doc_count":3053,"interval_diff":{"value":-845}},{"key_as_string":"2012-08-01T00:00:00.000Z","key":1343779200000,"doc_count":3898,"interval_diff":{"value":384}},{"key_as_string":"2012-07-01T00:00:00.000Z","key":1341100800000,"doc_count":3514,"interval_diff":{"value":-447}},{"key_as_string":"2012-06-01T00:00:00.000Z","key":1338508800000,"doc_count":3961,"interval_diff":{"value":-87}},{"key_as_string":"2012-05-01T00:00:00.000Z","key":1335830400000,"doc_count":4048,"interval_diff":{"value":1196}},{"key_as_string":"2012-04-01T00:00:00.000Z","key":1333238400000,"doc_count":2852,"interval_diff":{"value":-144}},{"key_as_string":"2012-03-01T00:00:00.000Z","key":1330560000000,"doc_count":2996,"interval_diff":{"value":699}},{"key_as_string":"2012-02-01T00:00:00.000Z","key":1328054400000,"doc_count":2297,"interval_diff":{"value":234}},{"key_as_string":"2012-01-01T00:00:00.000Z","key":1325376000000,"doc_count":2063,"interval_diff":{"value":787}},{"key_as_string":"2011-12-01T00:00:00.000Z","key":1322697600000,"doc_count":1276}]}},{"key":"Debt collection","doc_count":300401,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"I do not know","doc_count":62985,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":877,"interval_diff":{"value":-200}}]}},{"key":"Other debt","doc_count":45441,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":879,"interval_diff":{"value":-293}}]}},{"key":"Other (i.e. phone, health club, etc.)","doc_count":44543,"trend_period":{"buckets":[{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":1565,"interval_diff":{"value":204}}]}},{"key":"Credit card debt","doc_count":33298,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":925,"interval_diff":{"value":-187}}]}},{"key":"Credit card","doc_count":28698,"trend_period":{"buckets":[{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":834,"interval_diff":{"value":177}}]}},{"key":"Medical debt","doc_count":24725,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":516,"interval_diff":{"value":-129}}]}},{"key":"Medical","doc_count":21187,"trend_period":{"buckets":[{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":892,"interval_diff":{"value":183}}]}},{"key":"Payday loan","doc_count":7562,"trend_period":{"buckets":[{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":155,"interval_diff":{"value":6}}]}},{"key":"Auto debt","doc_count":5025,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":105,"interval_diff":{"value":-53}}]}},{"key":"Mortgage","doc_count":4809,"trend_period":{"buckets":[{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":94,"interval_diff":{"value":0}}]}},{"key":"Payday loan debt","doc_count":4729,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":127,"interval_diff":{"value":8}}]}},{"key":"Auto","doc_count":3755,"trend_period":{"buckets":[{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":133,"interval_diff":{"value":24}}]}},{"key":"Mortgage debt","doc_count":3432,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":56,"interval_diff":{"value":-25}}]}},{"key":"Non-federal student loan","doc_count":2881,"trend_period":{"buckets":[{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":91,"interval_diff":{"value":34}}]}},{"key":"Federal student loan debt","doc_count":2541,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":36,"interval_diff":{"value":-6}}]}},{"key":"Federal student loan","doc_count":2475,"trend_period":{"buckets":[{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":69,"interval_diff":{"value":-8}}]}},{"key":"Private student loan debt","doc_count":2315,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":39,"interval_diff":{"value":-1}}]}}]},"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":64,"interval_diff":{"value":-3444}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":3508,"interval_diff":{"value":-914}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":4422,"interval_diff":{"value":-91}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":4513,"interval_diff":{"value":308}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":4205,"interval_diff":{"value":222}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":3983,"interval_diff":{"value":215}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":3768,"interval_diff":{"value":444}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":3324,"interval_diff":{"value":-202}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":3526,"interval_diff":{"value":-496}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":4022,"interval_diff":{"value":46}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":3976,"interval_diff":{"value":-255}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":4231,"interval_diff":{"value":217}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":4014,"interval_diff":{"value":-37}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":4051,"interval_diff":{"value":-84}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":4135,"interval_diff":{"value":152}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":3983,"interval_diff":{"value":-244}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":4227,"interval_diff":{"value":440}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":3787,"interval_diff":{"value":660}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":3127,"interval_diff":{"value":-132}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":3259,"interval_diff":{"value":-89}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":3348,"interval_diff":{"value":-739}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":4087,"interval_diff":{"value":406}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":3681,"interval_diff":{"value":-732}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":4413,"interval_diff":{"value":414}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":3999,"interval_diff":{"value":-257}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":4256,"interval_diff":{"value":-480}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":4736,"interval_diff":{"value":-21}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":4757,"interval_diff":{"value":-509}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":5266,"interval_diff":{"value":792}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":4474,"interval_diff":{"value":-434}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":4908,"interval_diff":{"value":1024}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":3884,"interval_diff":{"value":320}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":3564,"interval_diff":{"value":-468}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":4032,"interval_diff":{"value":491}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":3541,"interval_diff":{"value":-835}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":4376,"interval_diff":{"value":153}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":4223,"interval_diff":{"value":510}},{"key_as_string":"2017-06-01T00:00:00.000Z","key":1496275200000,"doc_count":3713,"interval_diff":{"value":-450}},{"key_as_string":"2017-05-01T00:00:00.000Z","key":1493596800000,"doc_count":4163,"interval_diff":{"value":-10}},{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":4173,"interval_diff":{"value":-432}},{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":4605,"interval_diff":{"value":656}},{"key_as_string":"2017-02-01T00:00:00.000Z","key":1485907200000,"doc_count":3949,"interval_diff":{"value":219}},{"key_as_string":"2017-01-01T00:00:00.000Z","key":1483228800000,"doc_count":3730,"interval_diff":{"value":62}},{"key_as_string":"2016-12-01T00:00:00.000Z","key":1480550400000,"doc_count":3668,"interval_diff":{"value":380}},{"key_as_string":"2016-11-01T00:00:00.000Z","key":1477958400000,"doc_count":3288,"interval_diff":{"value":-291}},{"key_as_string":"2016-10-01T00:00:00.000Z","key":1475280000000,"doc_count":3579,"interval_diff":{"value":42}},{"key_as_string":"2016-09-01T00:00:00.000Z","key":1472688000000,"doc_count":3537,"interval_diff":{"value":-626}},{"key_as_string":"2016-08-01T00:00:00.000Z","key":1470009600000,"doc_count":4163,"interval_diff":{"value":1143}},{"key_as_string":"2016-07-01T00:00:00.000Z","key":1467331200000,"doc_count":3020,"interval_diff":{"value":-213}},{"key_as_string":"2016-06-01T00:00:00.000Z","key":1464739200000,"doc_count":3233,"interval_diff":{"value":169}},{"key_as_string":"2016-05-01T00:00:00.000Z","key":1462060800000,"doc_count":3064,"interval_diff":{"value":-179}},{"key_as_string":"2016-04-01T00:00:00.000Z","key":1459468800000,"doc_count":3243,"interval_diff":{"value":-282}},{"key_as_string":"2016-03-01T00:00:00.000Z","key":1456790400000,"doc_count":3525,"interval_diff":{"value":303}},{"key_as_string":"2016-02-01T00:00:00.000Z","key":1454284800000,"doc_count":3222,"interval_diff":{"value":298}},{"key_as_string":"2016-01-01T00:00:00.000Z","key":1451606400000,"doc_count":2924,"interval_diff":{"value":62}},{"key_as_string":"2015-12-01T00:00:00.000Z","key":1448928000000,"doc_count":2862,"interval_diff":{"value":241}},{"key_as_string":"2015-11-01T00:00:00.000Z","key":1446336000000,"doc_count":2621,"interval_diff":{"value":-394}},{"key_as_string":"2015-10-01T00:00:00.000Z","key":1443657600000,"doc_count":3015,"interval_diff":{"value":-135}},{"key_as_string":"2015-09-01T00:00:00.000Z","key":1441065600000,"doc_count":3150,"interval_diff":{"value":-416}},{"key_as_string":"2015-08-01T00:00:00.000Z","key":1438387200000,"doc_count":3566,"interval_diff":{"value":-216}},{"key_as_string":"2015-07-01T00:00:00.000Z","key":1435708800000,"doc_count":3782,"interval_diff":{"value":303}},{"key_as_string":"2015-06-01T00:00:00.000Z","key":1433116800000,"doc_count":3479,"interval_diff":{"value":145}},{"key_as_string":"2015-05-01T00:00:00.000Z","key":1430438400000,"doc_count":3334,"interval_diff":{"value":-34}},{"key_as_string":"2015-04-01T00:00:00.000Z","key":1427846400000,"doc_count":3368,"interval_diff":{"value":-511}},{"key_as_string":"2015-03-01T00:00:00.000Z","key":1425168000000,"doc_count":3879,"interval_diff":{"value":467}},{"key_as_string":"2015-02-01T00:00:00.000Z","key":1422748800000,"doc_count":3412,"interval_diff":{"value":156}},{"key_as_string":"2015-01-01T00:00:00.000Z","key":1420070400000,"doc_count":3256,"interval_diff":{"value":282}},{"key_as_string":"2014-12-01T00:00:00.000Z","key":1417392000000,"doc_count":2974,"interval_diff":{"value":158}},{"key_as_string":"2014-11-01T00:00:00.000Z","key":1414800000000,"doc_count":2816,"interval_diff":{"value":-406}},{"key_as_string":"2014-10-01T00:00:00.000Z","key":1412121600000,"doc_count":3222,"interval_diff":{"value":332}},{"key_as_string":"2014-09-01T00:00:00.000Z","key":1409529600000,"doc_count":2890,"interval_diff":{"value":-343}},{"key_as_string":"2014-08-01T00:00:00.000Z","key":1406851200000,"doc_count":3233,"interval_diff":{"value":-247}},{"key_as_string":"2014-07-01T00:00:00.000Z","key":1404172800000,"doc_count":3480,"interval_diff":{"value":83}},{"key_as_string":"2014-06-01T00:00:00.000Z","key":1401580800000,"doc_count":3397,"interval_diff":{"value":193}},{"key_as_string":"2014-05-01T00:00:00.000Z","key":1398902400000,"doc_count":3204,"interval_diff":{"value":-491}},{"key_as_string":"2014-04-01T00:00:00.000Z","key":1396310400000,"doc_count":3695,"interval_diff":{"value":105}},{"key_as_string":"2014-03-01T00:00:00.000Z","key":1393632000000,"doc_count":3590,"interval_diff":{"value":220}},{"key_as_string":"2014-02-01T00:00:00.000Z","key":1391212800000,"doc_count":3370,"interval_diff":{"value":102}},{"key_as_string":"2014-01-01T00:00:00.000Z","key":1388534400000,"doc_count":3268,"interval_diff":{"value":837}},{"key_as_string":"2013-12-01T00:00:00.000Z","key":1385856000000,"doc_count":2431,"interval_diff":{"value":-17}},{"key_as_string":"2013-11-01T00:00:00.000Z","key":1383264000000,"doc_count":2448,"interval_diff":{"value":655}},{"key_as_string":"2013-10-01T00:00:00.000Z","key":1380585600000,"doc_count":1793,"interval_diff":{"value":-210}},{"key_as_string":"2013-09-01T00:00:00.000Z","key":1377993600000,"doc_count":2003,"interval_diff":{"value":509}},{"key_as_string":"2013-08-01T00:00:00.000Z","key":1375315200000,"doc_count":1494,"interval_diff":{"value":594}},{"key_as_string":"2013-07-01T00:00:00.000Z","key":1372636800000,"doc_count":900}]}},{"key":"Credit reporting","doc_count":140432,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[]},"trend_period":{"buckets":[{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":3756,"interval_diff":{"value":-950}},{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":4706,"interval_diff":{"value":561}},{"key_as_string":"2017-02-01T00:00:00.000Z","key":1485907200000,"doc_count":4145,"interval_diff":{"value":165}},{"key_as_string":"2017-01-01T00:00:00.000Z","key":1483228800000,"doc_count":3980,"interval_diff":{"value":803}},{"key_as_string":"2016-12-01T00:00:00.000Z","key":1480550400000,"doc_count":3177,"interval_diff":{"value":-100}},{"key_as_string":"2016-11-01T00:00:00.000Z","key":1477958400000,"doc_count":3277,"interval_diff":{"value":-1056}},{"key_as_string":"2016-10-01T00:00:00.000Z","key":1475280000000,"doc_count":4333,"interval_diff":{"value":712}},{"key_as_string":"2016-09-01T00:00:00.000Z","key":1472688000000,"doc_count":3621,"interval_diff":{"value":-325}},{"key_as_string":"2016-08-01T00:00:00.000Z","key":1470009600000,"doc_count":3946,"interval_diff":{"value":-450}},{"key_as_string":"2016-07-01T00:00:00.000Z","key":1467331200000,"doc_count":4396,"interval_diff":{"value":494}},{"key_as_string":"2016-06-01T00:00:00.000Z","key":1464739200000,"doc_count":3902,"interval_diff":{"value":77}},{"key_as_string":"2016-05-01T00:00:00.000Z","key":1462060800000,"doc_count":3825,"interval_diff":{"value":60}},{"key_as_string":"2016-04-01T00:00:00.000Z","key":1459468800000,"doc_count":3765,"interval_diff":{"value":-277}},{"key_as_string":"2016-03-01T00:00:00.000Z","key":1456790400000,"doc_count":4042,"interval_diff":{"value":1003}},{"key_as_string":"2016-02-01T00:00:00.000Z","key":1454284800000,"doc_count":3039,"interval_diff":{"value":281}},{"key_as_string":"2016-01-01T00:00:00.000Z","key":1451606400000,"doc_count":2758,"interval_diff":{"value":80}},{"key_as_string":"2015-12-01T00:00:00.000Z","key":1448928000000,"doc_count":2678,"interval_diff":{"value":-164}},{"key_as_string":"2015-11-01T00:00:00.000Z","key":1446336000000,"doc_count":2842,"interval_diff":{"value":33}},{"key_as_string":"2015-10-01T00:00:00.000Z","key":1443657600000,"doc_count":2809,"interval_diff":{"value":-80}},{"key_as_string":"2015-09-01T00:00:00.000Z","key":1441065600000,"doc_count":2889,"interval_diff":{"value":-540}},{"key_as_string":"2015-08-01T00:00:00.000Z","key":1438387200000,"doc_count":3429,"interval_diff":{"value":-258}},{"key_as_string":"2015-07-01T00:00:00.000Z","key":1435708800000,"doc_count":3687,"interval_diff":{"value":978}},{"key_as_string":"2015-06-01T00:00:00.000Z","key":1433116800000,"doc_count":2709,"interval_diff":{"value":53}},{"key_as_string":"2015-05-01T00:00:00.000Z","key":1430438400000,"doc_count":2656,"interval_diff":{"value":-32}},{"key_as_string":"2015-04-01T00:00:00.000Z","key":1427846400000,"doc_count":2688,"interval_diff":{"value":-139}},{"key_as_string":"2015-03-01T00:00:00.000Z","key":1425168000000,"doc_count":2827,"interval_diff":{"value":445}},{"key_as_string":"2015-02-01T00:00:00.000Z","key":1422748800000,"doc_count":2382,"interval_diff":{"value":-294}},{"key_as_string":"2015-01-01T00:00:00.000Z","key":1420070400000,"doc_count":2676,"interval_diff":{"value":486}},{"key_as_string":"2014-12-01T00:00:00.000Z","key":1417392000000,"doc_count":2190,"interval_diff":{"value":11}},{"key_as_string":"2014-11-01T00:00:00.000Z","key":1414800000000,"doc_count":2179,"interval_diff":{"value":-84}},{"key_as_string":"2014-10-01T00:00:00.000Z","key":1412121600000,"doc_count":2263,"interval_diff":{"value":-219}},{"key_as_string":"2014-09-01T00:00:00.000Z","key":1409529600000,"doc_count":2482,"interval_diff":{"value":-186}},{"key_as_string":"2014-08-01T00:00:00.000Z","key":1406851200000,"doc_count":2668,"interval_diff":{"value":9}},{"key_as_string":"2014-07-01T00:00:00.000Z","key":1404172800000,"doc_count":2659,"interval_diff":{"value":194}},{"key_as_string":"2014-06-01T00:00:00.000Z","key":1401580800000,"doc_count":2465,"interval_diff":{"value":165}},{"key_as_string":"2014-05-01T00:00:00.000Z","key":1398902400000,"doc_count":2300,"interval_diff":{"value":-249}},{"key_as_string":"2014-04-01T00:00:00.000Z","key":1396310400000,"doc_count":2549,"interval_diff":{"value":-40}},{"key_as_string":"2014-03-01T00:00:00.000Z","key":1393632000000,"doc_count":2589,"interval_diff":{"value":51}},{"key_as_string":"2014-02-01T00:00:00.000Z","key":1391212800000,"doc_count":2538,"interval_diff":{"value":181}},{"key_as_string":"2014-01-01T00:00:00.000Z","key":1388534400000,"doc_count":2357,"interval_diff":{"value":1060}},{"key_as_string":"2013-12-01T00:00:00.000Z","key":1385856000000,"doc_count":1297,"interval_diff":{"value":-3}},{"key_as_string":"2013-11-01T00:00:00.000Z","key":1383264000000,"doc_count":1300,"interval_diff":{"value":10}},{"key_as_string":"2013-10-01T00:00:00.000Z","key":1380585600000,"doc_count":1290,"interval_diff":{"value":-157}},{"key_as_string":"2013-09-01T00:00:00.000Z","key":1377993600000,"doc_count":1447,"interval_diff":{"value":194}},{"key_as_string":"2013-08-01T00:00:00.000Z","key":1375315200000,"doc_count":1253,"interval_diff":{"value":4}},{"key_as_string":"2013-07-01T00:00:00.000Z","key":1372636800000,"doc_count":1249,"interval_diff":{"value":137}},{"key_as_string":"2013-06-01T00:00:00.000Z","key":1370044800000,"doc_count":1112,"interval_diff":{"value":-95}},{"key_as_string":"2013-05-01T00:00:00.000Z","key":1367366400000,"doc_count":1207,"interval_diff":{"value":56}},{"key_as_string":"2013-04-01T00:00:00.000Z","key":1364774400000,"doc_count":1151,"interval_diff":{"value":53}},{"key_as_string":"2013-03-01T00:00:00.000Z","key":1362096000000,"doc_count":1098,"interval_diff":{"value":33}},{"key_as_string":"2013-02-01T00:00:00.000Z","key":1359676800000,"doc_count":1065,"interval_diff":{"value":154}},{"key_as_string":"2013-01-01T00:00:00.000Z","key":1356998400000,"doc_count":911,"interval_diff":{"value":180}},{"key_as_string":"2012-12-01T00:00:00.000Z","key":1354320000000,"doc_count":731,"interval_diff":{"value":-51}},{"key_as_string":"2012-11-01T00:00:00.000Z","key":1351728000000,"doc_count":782,"interval_diff":{"value":422}},{"key_as_string":"2012-10-01T00:00:00.000Z","key":1349049600000,"doc_count":360}]}},{"key":"Credit card","doc_count":89190,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[]},"trend_period":{"buckets":[{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":1326,"interval_diff":{"value":-760}},{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":2086,"interval_diff":{"value":257}},{"key_as_string":"2017-02-01T00:00:00.000Z","key":1485907200000,"doc_count":1829,"interval_diff":{"value":-63}},{"key_as_string":"2017-01-01T00:00:00.000Z","key":1483228800000,"doc_count":1892,"interval_diff":{"value":69}},{"key_as_string":"2016-12-01T00:00:00.000Z","key":1480550400000,"doc_count":1823,"interval_diff":{"value":92}},{"key_as_string":"2016-11-01T00:00:00.000Z","key":1477958400000,"doc_count":1731,"interval_diff":{"value":-333}},{"key_as_string":"2016-10-01T00:00:00.000Z","key":1475280000000,"doc_count":2064,"interval_diff":{"value":-124}},{"key_as_string":"2016-09-01T00:00:00.000Z","key":1472688000000,"doc_count":2188,"interval_diff":{"value":167}},{"key_as_string":"2016-08-01T00:00:00.000Z","key":1470009600000,"doc_count":2021,"interval_diff":{"value":261}},{"key_as_string":"2016-07-01T00:00:00.000Z","key":1467331200000,"doc_count":1760,"interval_diff":{"value":194}},{"key_as_string":"2016-06-01T00:00:00.000Z","key":1464739200000,"doc_count":1566,"interval_diff":{"value":-7}},{"key_as_string":"2016-05-01T00:00:00.000Z","key":1462060800000,"doc_count":1573,"interval_diff":{"value":-11}},{"key_as_string":"2016-04-01T00:00:00.000Z","key":1459468800000,"doc_count":1584,"interval_diff":{"value":-36}},{"key_as_string":"2016-03-01T00:00:00.000Z","key":1456790400000,"doc_count":1620,"interval_diff":{"value":57}},{"key_as_string":"2016-02-01T00:00:00.000Z","key":1454284800000,"doc_count":1563,"interval_diff":{"value":-9}},{"key_as_string":"2016-01-01T00:00:00.000Z","key":1451606400000,"doc_count":1572,"interval_diff":{"value":113}},{"key_as_string":"2015-12-01T00:00:00.000Z","key":1448928000000,"doc_count":1459,"interval_diff":{"value":16}},{"key_as_string":"2015-11-01T00:00:00.000Z","key":1446336000000,"doc_count":1443,"interval_diff":{"value":-87}},{"key_as_string":"2015-10-01T00:00:00.000Z","key":1443657600000,"doc_count":1530,"interval_diff":{"value":10}},{"key_as_string":"2015-09-01T00:00:00.000Z","key":1441065600000,"doc_count":1520,"interval_diff":{"value":6}},{"key_as_string":"2015-08-01T00:00:00.000Z","key":1438387200000,"doc_count":1514,"interval_diff":{"value":-21}},{"key_as_string":"2015-07-01T00:00:00.000Z","key":1435708800000,"doc_count":1535,"interval_diff":{"value":90}},{"key_as_string":"2015-06-01T00:00:00.000Z","key":1433116800000,"doc_count":1445,"interval_diff":{"value":-11}},{"key_as_string":"2015-05-01T00:00:00.000Z","key":1430438400000,"doc_count":1456,"interval_diff":{"value":53}},{"key_as_string":"2015-04-01T00:00:00.000Z","key":1427846400000,"doc_count":1403,"interval_diff":{"value":-58}},{"key_as_string":"2015-03-01T00:00:00.000Z","key":1425168000000,"doc_count":1461,"interval_diff":{"value":69}},{"key_as_string":"2015-02-01T00:00:00.000Z","key":1422748800000,"doc_count":1392,"interval_diff":{"value":250}},{"key_as_string":"2015-01-01T00:00:00.000Z","key":1420070400000,"doc_count":1142,"interval_diff":{"value":39}},{"key_as_string":"2014-12-01T00:00:00.000Z","key":1417392000000,"doc_count":1103,"interval_diff":{"value":45}},{"key_as_string":"2014-11-01T00:00:00.000Z","key":1414800000000,"doc_count":1058,"interval_diff":{"value":-36}},{"key_as_string":"2014-10-01T00:00:00.000Z","key":1412121600000,"doc_count":1094,"interval_diff":{"value":-79}},{"key_as_string":"2014-09-01T00:00:00.000Z","key":1409529600000,"doc_count":1173,"interval_diff":{"value":-56}},{"key_as_string":"2014-08-01T00:00:00.000Z","key":1406851200000,"doc_count":1229,"interval_diff":{"value":70}},{"key_as_string":"2014-07-01T00:00:00.000Z","key":1404172800000,"doc_count":1159,"interval_diff":{"value":89}},{"key_as_string":"2014-06-01T00:00:00.000Z","key":1401580800000,"doc_count":1070,"interval_diff":{"value":-31}},{"key_as_string":"2014-05-01T00:00:00.000Z","key":1398902400000,"doc_count":1101,"interval_diff":{"value":-196}},{"key_as_string":"2014-04-01T00:00:00.000Z","key":1396310400000,"doc_count":1297,"interval_diff":{"value":34}},{"key_as_string":"2014-03-01T00:00:00.000Z","key":1393632000000,"doc_count":1263,"interval_diff":{"value":26}},{"key_as_string":"2014-02-01T00:00:00.000Z","key":1391212800000,"doc_count":1237,"interval_diff":{"value":47}},{"key_as_string":"2014-01-01T00:00:00.000Z","key":1388534400000,"doc_count":1190,"interval_diff":{"value":188}},{"key_as_string":"2013-12-01T00:00:00.000Z","key":1385856000000,"doc_count":1002,"interval_diff":{"value":52}},{"key_as_string":"2013-11-01T00:00:00.000Z","key":1383264000000,"doc_count":950,"interval_diff":{"value":-112}},{"key_as_string":"2013-10-01T00:00:00.000Z","key":1380585600000,"doc_count":1062,"interval_diff":{"value":-23}},{"key_as_string":"2013-09-01T00:00:00.000Z","key":1377993600000,"doc_count":1085,"interval_diff":{"value":9}},{"key_as_string":"2013-08-01T00:00:00.000Z","key":1375315200000,"doc_count":1076,"interval_diff":{"value":40}},{"key_as_string":"2013-07-01T00:00:00.000Z","key":1372636800000,"doc_count":1036,"interval_diff":{"value":14}},{"key_as_string":"2013-06-01T00:00:00.000Z","key":1370044800000,"doc_count":1022,"interval_diff":{"value":-50}},{"key_as_string":"2013-05-01T00:00:00.000Z","key":1367366400000,"doc_count":1072,"interval_diff":{"value":-144}},{"key_as_string":"2013-04-01T00:00:00.000Z","key":1364774400000,"doc_count":1216,"interval_diff":{"value":-64}},{"key_as_string":"2013-03-01T00:00:00.000Z","key":1362096000000,"doc_count":1280,"interval_diff":{"value":138}},{"key_as_string":"2013-02-01T00:00:00.000Z","key":1359676800000,"doc_count":1142,"interval_diff":{"value":-20}},{"key_as_string":"2013-01-01T00:00:00.000Z","key":1356998400000,"doc_count":1162,"interval_diff":{"value":130}},{"key_as_string":"2012-12-01T00:00:00.000Z","key":1354320000000,"doc_count":1032,"interval_diff":{"value":-54}},{"key_as_string":"2012-11-01T00:00:00.000Z","key":1351728000000,"doc_count":1086,"interval_diff":{"value":-272}},{"key_as_string":"2012-10-01T00:00:00.000Z","key":1349049600000,"doc_count":1358,"interval_diff":{"value":364}},{"key_as_string":"2012-09-01T00:00:00.000Z","key":1346457600000,"doc_count":994,"interval_diff":{"value":-287}},{"key_as_string":"2012-08-01T00:00:00.000Z","key":1343779200000,"doc_count":1281,"interval_diff":{"value":-224}},{"key_as_string":"2012-07-01T00:00:00.000Z","key":1341100800000,"doc_count":1505,"interval_diff":{"value":-194}},{"key_as_string":"2012-06-01T00:00:00.000Z","key":1338508800000,"doc_count":1699,"interval_diff":{"value":231}},{"key_as_string":"2012-05-01T00:00:00.000Z","key":1335830400000,"doc_count":1468,"interval_diff":{"value":295}},{"key_as_string":"2012-04-01T00:00:00.000Z","key":1333238400000,"doc_count":1173,"interval_diff":{"value":-205}},{"key_as_string":"2012-03-01T00:00:00.000Z","key":1330560000000,"doc_count":1378,"interval_diff":{"value":166}},{"key_as_string":"2012-02-01T00:00:00.000Z","key":1328054400000,"doc_count":1212,"interval_diff":{"value":45}},{"key_as_string":"2012-01-01T00:00:00.000Z","key":1325376000000,"doc_count":1167,"interval_diff":{"value":-93}},{"key_as_string":"2011-12-01T00:00:00.000Z","key":1322697600000,"doc_count":1260}]}}]}},"max_date":{"value":1593882000000,"value_as_string":"2020-07-04T12:00:00-05:00"},"issue":{"doc_count":1660586,"issue":{"doc_count_error_upper_bound":14722,"sum_other_doc_count":990947,"buckets":[{"key":"Incorrect information on your report","doc_count":279586,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":639,"interval_diff":{"value":-14700}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":15339,"interval_diff":{"value":-1524}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":16863,"interval_diff":{"value":1706}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":15157,"interval_diff":{"value":2698}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":12459,"interval_diff":{"value":2828}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":9631,"interval_diff":{"value":-698}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":10329,"interval_diff":{"value":2789}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":7540,"interval_diff":{"value":-621}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":8161,"interval_diff":{"value":-701}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":8862,"interval_diff":{"value":443}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":8419,"interval_diff":{"value":-492}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":8911,"interval_diff":{"value":598}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":8313,"interval_diff":{"value":671}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":7642,"interval_diff":{"value":-37}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":7679,"interval_diff":{"value":706}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":6973,"interval_diff":{"value":-47}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":7020,"interval_diff":{"value":1193}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":5827,"interval_diff":{"value":224}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":5603,"interval_diff":{"value":424}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":5179,"interval_diff":{"value":-670}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":5849,"interval_diff":{"value":-502}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":6351,"interval_diff":{"value":931}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":5420,"interval_diff":{"value":-672}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":6092,"interval_diff":{"value":328}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":5764,"interval_diff":{"value":418}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":5346,"interval_diff":{"value":-632}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":5978,"interval_diff":{"value":-481}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":6459,"interval_diff":{"value":363}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":6096,"interval_diff":{"value":342}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":5754,"interval_diff":{"value":-202}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":5956,"interval_diff":{"value":1279}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":4677,"interval_diff":{"value":201}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":4476,"interval_diff":{"value":-431}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":4907,"interval_diff":{"value":416}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":4491,"interval_diff":{"value":-745}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":5236,"interval_diff":{"value":559}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":4677,"interval_diff":{"value":587}},{"key_as_string":"2017-06-01T00:00:00.000Z","key":1496275200000,"doc_count":4090,"interval_diff":{"value":-186}},{"key_as_string":"2017-05-01T00:00:00.000Z","key":1493596800000,"doc_count":4276,"interval_diff":{"value":3131}},{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":1145}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Information belongs to someone else","doc_count":159378,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":11563,"interval_diff":{"value":-706}}]}},{"key":"Account status incorrect","doc_count":41890,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1157,"interval_diff":{"value":-357}}]}},{"key":"Account information incorrect","doc_count":38628,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1315,"interval_diff":{"value":-290}}]}},{"key":"Personal information incorrect","doc_count":12803,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":568,"interval_diff":{"value":-32}}]}},{"key":"Old information reappears or never goes away","doc_count":9833,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":245,"interval_diff":{"value":-67}}]}},{"key":"Public record information inaccurate","doc_count":9679,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":183,"interval_diff":{"value":-51}}]}},{"key":"Information is missing that should be on the report","doc_count":4950,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":241,"interval_diff":{"value":15}}]}},{"key":"Information is incorrect","doc_count":728,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":20,"interval_diff":{"value":4}}]}},{"key":"Information that should be on the report is missing","doc_count":120,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":3,"interval_diff":{"value":-2}}]}},{"key":"Incorrect information on your report","doc_count":1,"trend_period":{"buckets":[]}}]}},{"key":"Loan modification,collection,foreclosure","doc_count":112309,"trend_period":{"buckets":[{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":630,"interval_diff":{"value":-537}},{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":1167,"interval_diff":{"value":127}},{"key_as_string":"2017-02-01T00:00:00.000Z","key":1485907200000,"doc_count":1040,"interval_diff":{"value":-149}},{"key_as_string":"2017-01-01T00:00:00.000Z","key":1483228800000,"doc_count":1189,"interval_diff":{"value":91}},{"key_as_string":"2016-12-01T00:00:00.000Z","key":1480550400000,"doc_count":1098,"interval_diff":{"value":-48}},{"key_as_string":"2016-11-01T00:00:00.000Z","key":1477958400000,"doc_count":1146,"interval_diff":{"value":-214}},{"key_as_string":"2016-10-01T00:00:00.000Z","key":1475280000000,"doc_count":1360,"interval_diff":{"value":-59}},{"key_as_string":"2016-09-01T00:00:00.000Z","key":1472688000000,"doc_count":1419,"interval_diff":{"value":26}},{"key_as_string":"2016-08-01T00:00:00.000Z","key":1470009600000,"doc_count":1393,"interval_diff":{"value":187}},{"key_as_string":"2016-07-01T00:00:00.000Z","key":1467331200000,"doc_count":1206,"interval_diff":{"value":-144}},{"key_as_string":"2016-06-01T00:00:00.000Z","key":1464739200000,"doc_count":1350,"interval_diff":{"value":-22}},{"key_as_string":"2016-05-01T00:00:00.000Z","key":1462060800000,"doc_count":1372,"interval_diff":{"value":-49}},{"key_as_string":"2016-04-01T00:00:00.000Z","key":1459468800000,"doc_count":1421,"interval_diff":{"value":-213}},{"key_as_string":"2016-03-01T00:00:00.000Z","key":1456790400000,"doc_count":1634,"interval_diff":{"value":229}},{"key_as_string":"2016-02-01T00:00:00.000Z","key":1454284800000,"doc_count":1405,"interval_diff":{"value":-39}},{"key_as_string":"2016-01-01T00:00:00.000Z","key":1451606400000,"doc_count":1444,"interval_diff":{"value":166}},{"key_as_string":"2015-12-01T00:00:00.000Z","key":1448928000000,"doc_count":1278,"interval_diff":{"value":-59}},{"key_as_string":"2015-11-01T00:00:00.000Z","key":1446336000000,"doc_count":1337,"interval_diff":{"value":-254}},{"key_as_string":"2015-10-01T00:00:00.000Z","key":1443657600000,"doc_count":1591,"interval_diff":{"value":-4}},{"key_as_string":"2015-09-01T00:00:00.000Z","key":1441065600000,"doc_count":1595,"interval_diff":{"value":-259}},{"key_as_string":"2015-08-01T00:00:00.000Z","key":1438387200000,"doc_count":1854,"interval_diff":{"value":292}},{"key_as_string":"2015-07-01T00:00:00.000Z","key":1435708800000,"doc_count":1562,"interval_diff":{"value":-125}},{"key_as_string":"2015-06-01T00:00:00.000Z","key":1433116800000,"doc_count":1687,"interval_diff":{"value":43}},{"key_as_string":"2015-05-01T00:00:00.000Z","key":1430438400000,"doc_count":1644,"interval_diff":{"value":-37}},{"key_as_string":"2015-04-01T00:00:00.000Z","key":1427846400000,"doc_count":1681,"interval_diff":{"value":86}},{"key_as_string":"2015-03-01T00:00:00.000Z","key":1425168000000,"doc_count":1595,"interval_diff":{"value":217}},{"key_as_string":"2015-02-01T00:00:00.000Z","key":1422748800000,"doc_count":1378,"interval_diff":{"value":-53}},{"key_as_string":"2015-01-01T00:00:00.000Z","key":1420070400000,"doc_count":1431,"interval_diff":{"value":-36}},{"key_as_string":"2014-12-01T00:00:00.000Z","key":1417392000000,"doc_count":1467,"interval_diff":{"value":36}},{"key_as_string":"2014-11-01T00:00:00.000Z","key":1414800000000,"doc_count":1431,"interval_diff":{"value":-478}},{"key_as_string":"2014-10-01T00:00:00.000Z","key":1412121600000,"doc_count":1909,"interval_diff":{"value":224}},{"key_as_string":"2014-09-01T00:00:00.000Z","key":1409529600000,"doc_count":1685,"interval_diff":{"value":-160}},{"key_as_string":"2014-08-01T00:00:00.000Z","key":1406851200000,"doc_count":1845,"interval_diff":{"value":-17}},{"key_as_string":"2014-07-01T00:00:00.000Z","key":1404172800000,"doc_count":1862,"interval_diff":{"value":85}},{"key_as_string":"2014-06-01T00:00:00.000Z","key":1401580800000,"doc_count":1777,"interval_diff":{"value":6}},{"key_as_string":"2014-05-01T00:00:00.000Z","key":1398902400000,"doc_count":1771,"interval_diff":{"value":-203}},{"key_as_string":"2014-04-01T00:00:00.000Z","key":1396310400000,"doc_count":1974,"interval_diff":{"value":-69}},{"key_as_string":"2014-03-01T00:00:00.000Z","key":1393632000000,"doc_count":2043,"interval_diff":{"value":138}},{"key_as_string":"2014-02-01T00:00:00.000Z","key":1391212800000,"doc_count":1905,"interval_diff":{"value":96}},{"key_as_string":"2014-01-01T00:00:00.000Z","key":1388534400000,"doc_count":1809,"interval_diff":{"value":442}},{"key_as_string":"2013-12-01T00:00:00.000Z","key":1385856000000,"doc_count":1367,"interval_diff":{"value":-103}},{"key_as_string":"2013-11-01T00:00:00.000Z","key":1383264000000,"doc_count":1470,"interval_diff":{"value":-81}},{"key_as_string":"2013-10-01T00:00:00.000Z","key":1380585600000,"doc_count":1551,"interval_diff":{"value":-204}},{"key_as_string":"2013-09-01T00:00:00.000Z","key":1377993600000,"doc_count":1755,"interval_diff":{"value":-444}},{"key_as_string":"2013-08-01T00:00:00.000Z","key":1375315200000,"doc_count":2199,"interval_diff":{"value":-269}},{"key_as_string":"2013-07-01T00:00:00.000Z","key":1372636800000,"doc_count":2468,"interval_diff":{"value":-182}},{"key_as_string":"2013-06-01T00:00:00.000Z","key":1370044800000,"doc_count":2650,"interval_diff":{"value":-110}},{"key_as_string":"2013-05-01T00:00:00.000Z","key":1367366400000,"doc_count":2760,"interval_diff":{"value":-89}},{"key_as_string":"2013-04-01T00:00:00.000Z","key":1364774400000,"doc_count":2849,"interval_diff":{"value":-28}},{"key_as_string":"2013-03-01T00:00:00.000Z","key":1362096000000,"doc_count":2877,"interval_diff":{"value":-167}},{"key_as_string":"2013-02-01T00:00:00.000Z","key":1359676800000,"doc_count":3044,"interval_diff":{"value":-1105}},{"key_as_string":"2013-01-01T00:00:00.000Z","key":1356998400000,"doc_count":4149,"interval_diff":{"value":2256}},{"key_as_string":"2012-12-01T00:00:00.000Z","key":1354320000000,"doc_count":1893,"interval_diff":{"value":103}},{"key_as_string":"2012-11-01T00:00:00.000Z","key":1351728000000,"doc_count":1790,"interval_diff":{"value":-236}},{"key_as_string":"2012-10-01T00:00:00.000Z","key":1349049600000,"doc_count":2026,"interval_diff":{"value":204}},{"key_as_string":"2012-09-01T00:00:00.000Z","key":1346457600000,"doc_count":1822,"interval_diff":{"value":-576}},{"key_as_string":"2012-08-01T00:00:00.000Z","key":1343779200000,"doc_count":2398,"interval_diff":{"value":297}},{"key_as_string":"2012-07-01T00:00:00.000Z","key":1341100800000,"doc_count":2101,"interval_diff":{"value":155}},{"key_as_string":"2012-06-01T00:00:00.000Z","key":1338508800000,"doc_count":1946,"interval_diff":{"value":-482}},{"key_as_string":"2012-05-01T00:00:00.000Z","key":1335830400000,"doc_count":2428,"interval_diff":{"value":769}},{"key_as_string":"2012-04-01T00:00:00.000Z","key":1333238400000,"doc_count":1659,"interval_diff":{"value":-39}},{"key_as_string":"2012-03-01T00:00:00.000Z","key":1330560000000,"doc_count":1698,"interval_diff":{"value":429}},{"key_as_string":"2012-02-01T00:00:00.000Z","key":1328054400000,"doc_count":1269,"interval_diff":{"value":158}},{"key_as_string":"2012-01-01T00:00:00.000Z","key":1325376000000,"doc_count":1111,"interval_diff":{"value":467}},{"key_as_string":"2011-12-01T00:00:00.000Z","key":1322697600000,"doc_count":644}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[]}},{"key":"Incorrect information on credit report","doc_count":102686,"trend_period":{"buckets":[{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":2819,"interval_diff":{"value":-585}},{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":3404,"interval_diff":{"value":286}},{"key_as_string":"2017-02-01T00:00:00.000Z","key":1485907200000,"doc_count":3118,"interval_diff":{"value":153}},{"key_as_string":"2017-01-01T00:00:00.000Z","key":1483228800000,"doc_count":2965,"interval_diff":{"value":585}},{"key_as_string":"2016-12-01T00:00:00.000Z","key":1480550400000,"doc_count":2380,"interval_diff":{"value":-92}},{"key_as_string":"2016-11-01T00:00:00.000Z","key":1477958400000,"doc_count":2472,"interval_diff":{"value":-851}},{"key_as_string":"2016-10-01T00:00:00.000Z","key":1475280000000,"doc_count":3323,"interval_diff":{"value":605}},{"key_as_string":"2016-09-01T00:00:00.000Z","key":1472688000000,"doc_count":2718,"interval_diff":{"value":-105}},{"key_as_string":"2016-08-01T00:00:00.000Z","key":1470009600000,"doc_count":2823,"interval_diff":{"value":-384}},{"key_as_string":"2016-07-01T00:00:00.000Z","key":1467331200000,"doc_count":3207,"interval_diff":{"value":316}},{"key_as_string":"2016-06-01T00:00:00.000Z","key":1464739200000,"doc_count":2891,"interval_diff":{"value":124}},{"key_as_string":"2016-05-01T00:00:00.000Z","key":1462060800000,"doc_count":2767,"interval_diff":{"value":83}},{"key_as_string":"2016-04-01T00:00:00.000Z","key":1459468800000,"doc_count":2684,"interval_diff":{"value":-307}},{"key_as_string":"2016-03-01T00:00:00.000Z","key":1456790400000,"doc_count":2991,"interval_diff":{"value":670}},{"key_as_string":"2016-02-01T00:00:00.000Z","key":1454284800000,"doc_count":2321,"interval_diff":{"value":328}},{"key_as_string":"2016-01-01T00:00:00.000Z","key":1451606400000,"doc_count":1993,"interval_diff":{"value":49}},{"key_as_string":"2015-12-01T00:00:00.000Z","key":1448928000000,"doc_count":1944,"interval_diff":{"value":-136}},{"key_as_string":"2015-11-01T00:00:00.000Z","key":1446336000000,"doc_count":2080,"interval_diff":{"value":36}},{"key_as_string":"2015-10-01T00:00:00.000Z","key":1443657600000,"doc_count":2044,"interval_diff":{"value":-113}},{"key_as_string":"2015-09-01T00:00:00.000Z","key":1441065600000,"doc_count":2157,"interval_diff":{"value":-340}},{"key_as_string":"2015-08-01T00:00:00.000Z","key":1438387200000,"doc_count":2497,"interval_diff":{"value":-419}},{"key_as_string":"2015-07-01T00:00:00.000Z","key":1435708800000,"doc_count":2916,"interval_diff":{"value":946}},{"key_as_string":"2015-06-01T00:00:00.000Z","key":1433116800000,"doc_count":1970,"interval_diff":{"value":-50}},{"key_as_string":"2015-05-01T00:00:00.000Z","key":1430438400000,"doc_count":2020,"interval_diff":{"value":41}},{"key_as_string":"2015-04-01T00:00:00.000Z","key":1427846400000,"doc_count":1979,"interval_diff":{"value":-105}},{"key_as_string":"2015-03-01T00:00:00.000Z","key":1425168000000,"doc_count":2084,"interval_diff":{"value":322}},{"key_as_string":"2015-02-01T00:00:00.000Z","key":1422748800000,"doc_count":1762,"interval_diff":{"value":-245}},{"key_as_string":"2015-01-01T00:00:00.000Z","key":1420070400000,"doc_count":2007,"interval_diff":{"value":371}},{"key_as_string":"2014-12-01T00:00:00.000Z","key":1417392000000,"doc_count":1636,"interval_diff":{"value":-8}},{"key_as_string":"2014-11-01T00:00:00.000Z","key":1414800000000,"doc_count":1644,"interval_diff":{"value":2}},{"key_as_string":"2014-10-01T00:00:00.000Z","key":1412121600000,"doc_count":1642,"interval_diff":{"value":-293}},{"key_as_string":"2014-09-01T00:00:00.000Z","key":1409529600000,"doc_count":1935,"interval_diff":{"value":-62}},{"key_as_string":"2014-08-01T00:00:00.000Z","key":1406851200000,"doc_count":1997,"interval_diff":{"value":22}},{"key_as_string":"2014-07-01T00:00:00.000Z","key":1404172800000,"doc_count":1975,"interval_diff":{"value":74}},{"key_as_string":"2014-06-01T00:00:00.000Z","key":1401580800000,"doc_count":1901,"interval_diff":{"value":226}},{"key_as_string":"2014-05-01T00:00:00.000Z","key":1398902400000,"doc_count":1675,"interval_diff":{"value":-200}},{"key_as_string":"2014-04-01T00:00:00.000Z","key":1396310400000,"doc_count":1875,"interval_diff":{"value":65}},{"key_as_string":"2014-03-01T00:00:00.000Z","key":1393632000000,"doc_count":1810,"interval_diff":{"value":-26}},{"key_as_string":"2014-02-01T00:00:00.000Z","key":1391212800000,"doc_count":1836,"interval_diff":{"value":170}},{"key_as_string":"2014-01-01T00:00:00.000Z","key":1388534400000,"doc_count":1666,"interval_diff":{"value":813}},{"key_as_string":"2013-12-01T00:00:00.000Z","key":1385856000000,"doc_count":853,"interval_diff":{"value":-41}},{"key_as_string":"2013-11-01T00:00:00.000Z","key":1383264000000,"doc_count":894,"interval_diff":{"value":5}},{"key_as_string":"2013-10-01T00:00:00.000Z","key":1380585600000,"doc_count":889,"interval_diff":{"value":-69}},{"key_as_string":"2013-09-01T00:00:00.000Z","key":1377993600000,"doc_count":958,"interval_diff":{"value":111}},{"key_as_string":"2013-08-01T00:00:00.000Z","key":1375315200000,"doc_count":847,"interval_diff":{"value":70}},{"key_as_string":"2013-07-01T00:00:00.000Z","key":1372636800000,"doc_count":777,"interval_diff":{"value":67}},{"key_as_string":"2013-06-01T00:00:00.000Z","key":1370044800000,"doc_count":710,"interval_diff":{"value":-57}},{"key_as_string":"2013-05-01T00:00:00.000Z","key":1367366400000,"doc_count":767,"interval_diff":{"value":22}},{"key_as_string":"2013-04-01T00:00:00.000Z","key":1364774400000,"doc_count":745,"interval_diff":{"value":38}},{"key_as_string":"2013-03-01T00:00:00.000Z","key":1362096000000,"doc_count":707,"interval_diff":{"value":-30}},{"key_as_string":"2013-02-01T00:00:00.000Z","key":1359676800000,"doc_count":737,"interval_diff":{"value":122}},{"key_as_string":"2013-01-01T00:00:00.000Z","key":1356998400000,"doc_count":615,"interval_diff":{"value":135}},{"key_as_string":"2012-12-01T00:00:00.000Z","key":1354320000000,"doc_count":480,"interval_diff":{"value":-68}},{"key_as_string":"2012-11-01T00:00:00.000Z","key":1351728000000,"doc_count":548,"interval_diff":{"value":317}},{"key_as_string":"2012-10-01T00:00:00.000Z","key":1349049600000,"doc_count":231}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Account status","doc_count":37057,"trend_period":{"buckets":[{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":1005,"interval_diff":{"value":87}}]}},{"key":"Information is not mine","doc_count":32384,"trend_period":{"buckets":[{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":1182,"interval_diff":{"value":220}}]}},{"key":"Account terms","doc_count":10995,"trend_period":{"buckets":[{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":324,"interval_diff":{"value":-88}}]}},{"key":"Public record","doc_count":8876,"trend_period":{"buckets":[{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":328,"interval_diff":{"value":27}}]}},{"key":"Personal information","doc_count":7529,"trend_period":{"buckets":[{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":258,"interval_diff":{"value":4}}]}},{"key":"Reinserted previously deleted info","doc_count":5845,"trend_period":{"buckets":[{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":307,"interval_diff":{"value":36}}]}}]}},{"key":"Problem with a credit reporting company's investigation into an existing problem","doc_count":97724,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":218,"interval_diff":{"value":-4413}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":4631,"interval_diff":{"value":-699}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":5330,"interval_diff":{"value":938}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":4392,"interval_diff":{"value":888}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":3504,"interval_diff":{"value":710}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":2794,"interval_diff":{"value":-489}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":3283,"interval_diff":{"value":462}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":2821,"interval_diff":{"value":203}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":2618,"interval_diff":{"value":-517}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":3135,"interval_diff":{"value":664}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":2471,"interval_diff":{"value":-381}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2852,"interval_diff":{"value":-142}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":2994,"interval_diff":{"value":107}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":2887,"interval_diff":{"value":195}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":2692,"interval_diff":{"value":39}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":2653,"interval_diff":{"value":79}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":2574,"interval_diff":{"value":275}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":2299,"interval_diff":{"value":418}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":1881,"interval_diff":{"value":-222}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":2103,"interval_diff":{"value":178}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":1925,"interval_diff":{"value":-100}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":2025,"interval_diff":{"value":142}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":1883,"interval_diff":{"value":-277}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":2160,"interval_diff":{"value":3}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":2157,"interval_diff":{"value":-70}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":2227,"interval_diff":{"value":-90}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":2317,"interval_diff":{"value":-100}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":2417,"interval_diff":{"value":217}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":2200,"interval_diff":{"value":-70}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":2270,"interval_diff":{"value":111}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":2159,"interval_diff":{"value":541}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":1618,"interval_diff":{"value":-248}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":1866,"interval_diff":{"value":-199}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":2065,"interval_diff":{"value":38}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":2027,"interval_diff":{"value":-244}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":2271,"interval_diff":{"value":270}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":2001,"interval_diff":{"value":281}},{"key_as_string":"2017-06-01T00:00:00.000Z","key":1496275200000,"doc_count":1720,"interval_diff":{"value":-76}},{"key_as_string":"2017-05-01T00:00:00.000Z","key":1493596800000,"doc_count":1796,"interval_diff":{"value":1308}},{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":488}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Their investigation did not fix an error on your report","doc_count":68211,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":2364,"interval_diff":{"value":-325}}]}},{"key":"Investigation took more than 30 days","doc_count":9367,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":904,"interval_diff":{"value":-327}}]}},{"key":"Was not notified of investigation status or results","doc_count":8509,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":957,"interval_diff":{"value":7}}]}},{"key":"Difficulty submitting a dispute or getting information about a dispute over the phone","doc_count":6492,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":228,"interval_diff":{"value":-42}}]}},{"key":"Problem with personal statement of dispute","doc_count":4693,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":161,"interval_diff":{"value":0}}]}}]}},{"key":"Loan servicing, payments, escrow account","doc_count":77333,"trend_period":{"buckets":[{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":852,"interval_diff":{"value":-607}},{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":1459,"interval_diff":{"value":208}},{"key_as_string":"2017-02-01T00:00:00.000Z","key":1485907200000,"doc_count":1251,"interval_diff":{"value":-146}},{"key_as_string":"2017-01-01T00:00:00.000Z","key":1483228800000,"doc_count":1397,"interval_diff":{"value":152}},{"key_as_string":"2016-12-01T00:00:00.000Z","key":1480550400000,"doc_count":1245,"interval_diff":{"value":-100}},{"key_as_string":"2016-11-01T00:00:00.000Z","key":1477958400000,"doc_count":1345,"interval_diff":{"value":-100}},{"key_as_string":"2016-10-01T00:00:00.000Z","key":1475280000000,"doc_count":1445,"interval_diff":{"value":-44}},{"key_as_string":"2016-09-01T00:00:00.000Z","key":1472688000000,"doc_count":1489,"interval_diff":{"value":97}},{"key_as_string":"2016-08-01T00:00:00.000Z","key":1470009600000,"doc_count":1392,"interval_diff":{"value":75}},{"key_as_string":"2016-07-01T00:00:00.000Z","key":1467331200000,"doc_count":1317,"interval_diff":{"value":-154}},{"key_as_string":"2016-06-01T00:00:00.000Z","key":1464739200000,"doc_count":1471,"interval_diff":{"value":2}},{"key_as_string":"2016-05-01T00:00:00.000Z","key":1462060800000,"doc_count":1469,"interval_diff":{"value":14}},{"key_as_string":"2016-04-01T00:00:00.000Z","key":1459468800000,"doc_count":1455,"interval_diff":{"value":-109}},{"key_as_string":"2016-03-01T00:00:00.000Z","key":1456790400000,"doc_count":1564,"interval_diff":{"value":141}},{"key_as_string":"2016-02-01T00:00:00.000Z","key":1454284800000,"doc_count":1423,"interval_diff":{"value":4}},{"key_as_string":"2016-01-01T00:00:00.000Z","key":1451606400000,"doc_count":1419,"interval_diff":{"value":184}},{"key_as_string":"2015-12-01T00:00:00.000Z","key":1448928000000,"doc_count":1235,"interval_diff":{"value":89}},{"key_as_string":"2015-11-01T00:00:00.000Z","key":1446336000000,"doc_count":1146,"interval_diff":{"value":-260}},{"key_as_string":"2015-10-01T00:00:00.000Z","key":1443657600000,"doc_count":1406,"interval_diff":{"value":-89}},{"key_as_string":"2015-09-01T00:00:00.000Z","key":1441065600000,"doc_count":1495,"interval_diff":{"value":-3}},{"key_as_string":"2015-08-01T00:00:00.000Z","key":1438387200000,"doc_count":1498,"interval_diff":{"value":62}},{"key_as_string":"2015-07-01T00:00:00.000Z","key":1435708800000,"doc_count":1436,"interval_diff":{"value":-67}},{"key_as_string":"2015-06-01T00:00:00.000Z","key":1433116800000,"doc_count":1503,"interval_diff":{"value":160}},{"key_as_string":"2015-05-01T00:00:00.000Z","key":1430438400000,"doc_count":1343,"interval_diff":{"value":-69}},{"key_as_string":"2015-04-01T00:00:00.000Z","key":1427846400000,"doc_count":1412,"interval_diff":{"value":20}},{"key_as_string":"2015-03-01T00:00:00.000Z","key":1425168000000,"doc_count":1392,"interval_diff":{"value":157}},{"key_as_string":"2015-02-01T00:00:00.000Z","key":1422748800000,"doc_count":1235,"interval_diff":{"value":62}},{"key_as_string":"2015-01-01T00:00:00.000Z","key":1420070400000,"doc_count":1173,"interval_diff":{"value":8}},{"key_as_string":"2014-12-01T00:00:00.000Z","key":1417392000000,"doc_count":1165,"interval_diff":{"value":17}},{"key_as_string":"2014-11-01T00:00:00.000Z","key":1414800000000,"doc_count":1148,"interval_diff":{"value":-218}},{"key_as_string":"2014-10-01T00:00:00.000Z","key":1412121600000,"doc_count":1366,"interval_diff":{"value":94}},{"key_as_string":"2014-09-01T00:00:00.000Z","key":1409529600000,"doc_count":1272,"interval_diff":{"value":26}},{"key_as_string":"2014-08-01T00:00:00.000Z","key":1406851200000,"doc_count":1246,"interval_diff":{"value":-21}},{"key_as_string":"2014-07-01T00:00:00.000Z","key":1404172800000,"doc_count":1267,"interval_diff":{"value":69}},{"key_as_string":"2014-06-01T00:00:00.000Z","key":1401580800000,"doc_count":1198,"interval_diff":{"value":-26}},{"key_as_string":"2014-05-01T00:00:00.000Z","key":1398902400000,"doc_count":1224,"interval_diff":{"value":-298}},{"key_as_string":"2014-04-01T00:00:00.000Z","key":1396310400000,"doc_count":1522,"interval_diff":{"value":-79}},{"key_as_string":"2014-03-01T00:00:00.000Z","key":1393632000000,"doc_count":1601,"interval_diff":{"value":134}},{"key_as_string":"2014-02-01T00:00:00.000Z","key":1391212800000,"doc_count":1467,"interval_diff":{"value":177}},{"key_as_string":"2014-01-01T00:00:00.000Z","key":1388534400000,"doc_count":1290,"interval_diff":{"value":306}},{"key_as_string":"2013-12-01T00:00:00.000Z","key":1385856000000,"doc_count":984,"interval_diff":{"value":15}},{"key_as_string":"2013-11-01T00:00:00.000Z","key":1383264000000,"doc_count":969,"interval_diff":{"value":-189}},{"key_as_string":"2013-10-01T00:00:00.000Z","key":1380585600000,"doc_count":1158,"interval_diff":{"value":51}},{"key_as_string":"2013-09-01T00:00:00.000Z","key":1377993600000,"doc_count":1107,"interval_diff":{"value":-100}},{"key_as_string":"2013-08-01T00:00:00.000Z","key":1375315200000,"doc_count":1207,"interval_diff":{"value":53}},{"key_as_string":"2013-07-01T00:00:00.000Z","key":1372636800000,"doc_count":1154,"interval_diff":{"value":90}},{"key_as_string":"2013-06-01T00:00:00.000Z","key":1370044800000,"doc_count":1064,"interval_diff":{"value":2}},{"key_as_string":"2013-05-01T00:00:00.000Z","key":1367366400000,"doc_count":1062,"interval_diff":{"value":-160}},{"key_as_string":"2013-04-01T00:00:00.000Z","key":1364774400000,"doc_count":1222,"interval_diff":{"value":25}},{"key_as_string":"2013-03-01T00:00:00.000Z","key":1362096000000,"doc_count":1197,"interval_diff":{"value":198}},{"key_as_string":"2013-02-01T00:00:00.000Z","key":1359676800000,"doc_count":999,"interval_diff":{"value":-125}},{"key_as_string":"2013-01-01T00:00:00.000Z","key":1356998400000,"doc_count":1124,"interval_diff":{"value":313}},{"key_as_string":"2012-12-01T00:00:00.000Z","key":1354320000000,"doc_count":811,"interval_diff":{"value":126}},{"key_as_string":"2012-11-01T00:00:00.000Z","key":1351728000000,"doc_count":685,"interval_diff":{"value":-80}},{"key_as_string":"2012-10-01T00:00:00.000Z","key":1349049600000,"doc_count":765,"interval_diff":{"value":14}},{"key_as_string":"2012-09-01T00:00:00.000Z","key":1346457600000,"doc_count":751,"interval_diff":{"value":-219}},{"key_as_string":"2012-08-01T00:00:00.000Z","key":1343779200000,"doc_count":970,"interval_diff":{"value":92}},{"key_as_string":"2012-07-01T00:00:00.000Z","key":1341100800000,"doc_count":878,"interval_diff":{"value":5}},{"key_as_string":"2012-06-01T00:00:00.000Z","key":1338508800000,"doc_count":873,"interval_diff":{"value":-133}},{"key_as_string":"2012-05-01T00:00:00.000Z","key":1335830400000,"doc_count":1006,"interval_diff":{"value":205}},{"key_as_string":"2012-04-01T00:00:00.000Z","key":1333238400000,"doc_count":801,"interval_diff":{"value":-82}},{"key_as_string":"2012-03-01T00:00:00.000Z","key":1330560000000,"doc_count":883,"interval_diff":{"value":229}},{"key_as_string":"2012-02-01T00:00:00.000Z","key":1328054400000,"doc_count":654,"interval_diff":{"value":55}},{"key_as_string":"2012-01-01T00:00:00.000Z","key":1325376000000,"doc_count":599,"interval_diff":{"value":222}},{"key_as_string":"2011-12-01T00:00:00.000Z","key":1322697600000,"doc_count":377}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[]}}]}},"min_date":{"value":1322758800000,"value_as_string":"2011-12-01T12:00:00-05:00"},"dateRangeArea":{"doc_count":1660586,"dateRangeArea":{"buckets":[{"key_as_string":"2011-12-01T00:00:00.000Z","key":1322697600000,"doc_count":2536},{"key_as_string":"2012-01-01T00:00:00.000Z","key":1325376000000,"doc_count":3230},{"key_as_string":"2012-02-01T00:00:00.000Z","key":1328054400000,"doc_count":3509},{"key_as_string":"2012-03-01T00:00:00.000Z","key":1330560000000,"doc_count":6230},{"key_as_string":"2012-04-01T00:00:00.000Z","key":1333238400000,"doc_count":5703},{"key_as_string":"2012-05-01T00:00:00.000Z","key":1335830400000,"doc_count":7617},{"key_as_string":"2012-06-01T00:00:00.000Z","key":1338508800000,"doc_count":7841},{"key_as_string":"2012-07-01T00:00:00.000Z","key":1341100800000,"doc_count":6755},{"key_as_string":"2012-08-01T00:00:00.000Z","key":1343779200000,"doc_count":6877},{"key_as_string":"2012-09-01T00:00:00.000Z","key":1346457600000,"doc_count":5493},{"key_as_string":"2012-10-01T00:00:00.000Z","key":1349049600000,"doc_count":6741},{"key_as_string":"2012-11-01T00:00:00.000Z","key":1351728000000,"doc_count":6139},{"key_as_string":"2012-12-01T00:00:00.000Z","key":1354320000000,"doc_count":6238},{"key_as_string":"2013-01-01T00:00:00.000Z","key":1356998400000,"doc_count":9741},{"key_as_string":"2013-02-01T00:00:00.000Z","key":1359676800000,"doc_count":8349},{"key_as_string":"2013-03-01T00:00:00.000Z","key":1362096000000,"doc_count":8784},{"key_as_string":"2013-04-01T00:00:00.000Z","key":1364774400000,"doc_count":8632},{"key_as_string":"2013-05-01T00:00:00.000Z","key":1367366400000,"doc_count":8170},{"key_as_string":"2013-06-01T00:00:00.000Z","key":1370044800000,"doc_count":8035},{"key_as_string":"2013-07-01T00:00:00.000Z","key":1372636800000,"doc_count":9271},{"key_as_string":"2013-08-01T00:00:00.000Z","key":1375315200000,"doc_count":9565},{"key_as_string":"2013-09-01T00:00:00.000Z","key":1377993600000,"doc_count":9636},{"key_as_string":"2013-10-01T00:00:00.000Z","key":1380585600000,"doc_count":9241},{"key_as_string":"2013-11-01T00:00:00.000Z","key":1383264000000,"doc_count":9319},{"key_as_string":"2013-12-01T00:00:00.000Z","key":1385856000000,"doc_count":9474},{"key_as_string":"2014-01-01T00:00:00.000Z","key":1388534400000,"doc_count":12617},{"key_as_string":"2014-02-01T00:00:00.000Z","key":1391212800000,"doc_count":13048},{"key_as_string":"2014-03-01T00:00:00.000Z","key":1393632000000,"doc_count":13943},{"key_as_string":"2014-04-01T00:00:00.000Z","key":1396310400000,"doc_count":13840},{"key_as_string":"2014-05-01T00:00:00.000Z","key":1398902400000,"doc_count":12167},{"key_as_string":"2014-06-01T00:00:00.000Z","key":1401580800000,"doc_count":12520},{"key_as_string":"2014-07-01T00:00:00.000Z","key":1404172800000,"doc_count":13415},{"key_as_string":"2014-08-01T00:00:00.000Z","key":1406851200000,"doc_count":13186},{"key_as_string":"2014-09-01T00:00:00.000Z","key":1409529600000,"doc_count":12465},{"key_as_string":"2014-10-01T00:00:00.000Z","key":1412121600000,"doc_count":12901},{"key_as_string":"2014-11-01T00:00:00.000Z","key":1414800000000,"doc_count":11257},{"key_as_string":"2014-12-01T00:00:00.000Z","key":1417392000000,"doc_count":11684},{"key_as_string":"2015-01-01T00:00:00.000Z","key":1420070400000,"doc_count":12627},{"key_as_string":"2015-02-01T00:00:00.000Z","key":1422748800000,"doc_count":12680},{"key_as_string":"2015-03-01T00:00:00.000Z","key":1425168000000,"doc_count":14514},{"key_as_string":"2015-04-01T00:00:00.000Z","key":1427846400000,"doc_count":13753},{"key_as_string":"2015-05-01T00:00:00.000Z","key":1430438400000,"doc_count":13682},{"key_as_string":"2015-06-01T00:00:00.000Z","key":1433116800000,"doc_count":14517},{"key_as_string":"2015-07-01T00:00:00.000Z","key":1435708800000,"doc_count":15920},{"key_as_string":"2015-08-01T00:00:00.000Z","key":1438387200000,"doc_count":15766},{"key_as_string":"2015-09-01T00:00:00.000Z","key":1441065600000,"doc_count":14336},{"key_as_string":"2015-10-01T00:00:00.000Z","key":1443657600000,"doc_count":14899},{"key_as_string":"2015-11-01T00:00:00.000Z","key":1446336000000,"doc_count":12897},{"key_as_string":"2015-12-01T00:00:00.000Z","key":1448928000000,"doc_count":12884},{"key_as_string":"2016-01-01T00:00:00.000Z","key":1451606400000,"doc_count":13840},{"key_as_string":"2016-02-01T00:00:00.000Z","key":1454284800000,"doc_count":14140},{"key_as_string":"2016-03-01T00:00:00.000Z","key":1456790400000,"doc_count":16611},{"key_as_string":"2016-04-01T00:00:00.000Z","key":1459468800000,"doc_count":15608},{"key_as_string":"2016-05-01T00:00:00.000Z","key":1462060800000,"doc_count":15517},{"key_as_string":"2016-06-01T00:00:00.000Z","key":1464739200000,"doc_count":16063},{"key_as_string":"2016-07-01T00:00:00.000Z","key":1467331200000,"doc_count":16043},{"key_as_string":"2016-08-01T00:00:00.000Z","key":1470009600000,"doc_count":17694},{"key_as_string":"2016-09-01T00:00:00.000Z","key":1472688000000,"doc_count":17584},{"key_as_string":"2016-10-01T00:00:00.000Z","key":1475280000000,"doc_count":17820},{"key_as_string":"2016-11-01T00:00:00.000Z","key":1477958400000,"doc_count":15207},{"key_as_string":"2016-12-01T00:00:00.000Z","key":1480550400000,"doc_count":15341},{"key_as_string":"2017-01-01T00:00:00.000Z","key":1483228800000,"doc_count":21006},{"key_as_string":"2017-02-01T00:00:00.000Z","key":1485907200000,"doc_count":18110},{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":19762},{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":18544},{"key_as_string":"2017-05-01T00:00:00.000Z","key":1493596800000,"doc_count":19304},{"key_as_string":"2017-06-01T00:00:00.000Z","key":1496275200000,"doc_count":18567},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":20433},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":21402},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":27357},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":20456},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":18990},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":19034},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":23650},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":21978},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":23639},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":24327},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":22339},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":20111},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":20963},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":21726},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":19072},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":21903},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":19053},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":18552},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":18934},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":20206},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":23412},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":22915},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":23850},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":23352},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":25090},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":26059},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":23575},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":25636},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":22657},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":21704},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":26413},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":25097},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":29494},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":34805},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":37146},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":32699},{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":1152}]}},"tags":{"doc_count":1660586,"tags":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Servicemember","doc_count":115185,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":66,"interval_diff":{"value":-2061}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":2127,"interval_diff":{"value":-251}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":2378,"interval_diff":{"value":-75}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":2453,"interval_diff":{"value":368}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":2085,"interval_diff":{"value":124}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":1961,"interval_diff":{"value":-84}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":2045,"interval_diff":{"value":320}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":1725,"interval_diff":{"value":-206}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":1931,"interval_diff":{"value":-155}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":2086,"interval_diff":{"value":-6}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":2092,"interval_diff":{"value":91}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2001,"interval_diff":{"value":115}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":1886,"interval_diff":{"value":-120}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":2006,"interval_diff":{"value":69}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1937,"interval_diff":{"value":-34}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1971,"interval_diff":{"value":-188}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":2159,"interval_diff":{"value":240}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":1919,"interval_diff":{"value":251}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":1668,"interval_diff":{"value":20}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":1648,"interval_diff":{"value":-95}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":1743,"interval_diff":{"value":-170}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":1913,"interval_diff":{"value":206}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":1707,"interval_diff":{"value":-470}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":2177,"interval_diff":{"value":208}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":1969,"interval_diff":{"value":100}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":1869,"interval_diff":{"value":-177}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":2046,"interval_diff":{"value":-1}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":2047,"interval_diff":{"value":-241}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":2288,"interval_diff":{"value":-7}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":2295,"interval_diff":{"value":87}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":2208,"interval_diff":{"value":342}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":1866,"interval_diff":{"value":-90}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":1956,"interval_diff":{"value":-88}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":2044,"interval_diff":{"value":-400}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":2444,"interval_diff":{"value":346}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":2098,"interval_diff":{"value":105}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":1993,"interval_diff":{"value":99}},{"key_as_string":"2017-06-01T00:00:00.000Z","key":1496275200000,"doc_count":1894,"interval_diff":{"value":-76}},{"key_as_string":"2017-05-01T00:00:00.000Z","key":1493596800000,"doc_count":1970,"interval_diff":{"value":566}},{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":1404,"interval_diff":{"value":389}},{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":1015,"interval_diff":{"value":63}},{"key_as_string":"2017-02-01T00:00:00.000Z","key":1485907200000,"doc_count":952,"interval_diff":{"value":-104}},{"key_as_string":"2017-01-01T00:00:00.000Z","key":1483228800000,"doc_count":1056,"interval_diff":{"value":252}},{"key_as_string":"2016-12-01T00:00:00.000Z","key":1480550400000,"doc_count":804,"interval_diff":{"value":3}},{"key_as_string":"2016-11-01T00:00:00.000Z","key":1477958400000,"doc_count":801,"interval_diff":{"value":-260}},{"key_as_string":"2016-10-01T00:00:00.000Z","key":1475280000000,"doc_count":1061,"interval_diff":{"value":177}},{"key_as_string":"2016-09-01T00:00:00.000Z","key":1472688000000,"doc_count":884,"interval_diff":{"value":0}},{"key_as_string":"2016-08-01T00:00:00.000Z","key":1470009600000,"doc_count":884,"interval_diff":{"value":128}},{"key_as_string":"2016-07-01T00:00:00.000Z","key":1467331200000,"doc_count":756,"interval_diff":{"value":-136}},{"key_as_string":"2016-06-01T00:00:00.000Z","key":1464739200000,"doc_count":892,"interval_diff":{"value":114}},{"key_as_string":"2016-05-01T00:00:00.000Z","key":1462060800000,"doc_count":778,"interval_diff":{"value":1}},{"key_as_string":"2016-04-01T00:00:00.000Z","key":1459468800000,"doc_count":777,"interval_diff":{"value":-143}},{"key_as_string":"2016-03-01T00:00:00.000Z","key":1456790400000,"doc_count":920,"interval_diff":{"value":140}},{"key_as_string":"2016-02-01T00:00:00.000Z","key":1454284800000,"doc_count":780,"interval_diff":{"value":83}},{"key_as_string":"2016-01-01T00:00:00.000Z","key":1451606400000,"doc_count":697,"interval_diff":{"value":-37}},{"key_as_string":"2015-12-01T00:00:00.000Z","key":1448928000000,"doc_count":734,"interval_diff":{"value":70}},{"key_as_string":"2015-11-01T00:00:00.000Z","key":1446336000000,"doc_count":664,"interval_diff":{"value":-195}},{"key_as_string":"2015-10-01T00:00:00.000Z","key":1443657600000,"doc_count":859,"interval_diff":{"value":21}},{"key_as_string":"2015-09-01T00:00:00.000Z","key":1441065600000,"doc_count":838,"interval_diff":{"value":-36}},{"key_as_string":"2015-08-01T00:00:00.000Z","key":1438387200000,"doc_count":874,"interval_diff":{"value":70}},{"key_as_string":"2015-07-01T00:00:00.000Z","key":1435708800000,"doc_count":804,"interval_diff":{"value":97}},{"key_as_string":"2015-06-01T00:00:00.000Z","key":1433116800000,"doc_count":707,"interval_diff":{"value":-5}},{"key_as_string":"2015-05-01T00:00:00.000Z","key":1430438400000,"doc_count":712,"interval_diff":{"value":-91}},{"key_as_string":"2015-04-01T00:00:00.000Z","key":1427846400000,"doc_count":803,"interval_diff":{"value":-32}},{"key_as_string":"2015-03-01T00:00:00.000Z","key":1425168000000,"doc_count":835,"interval_diff":{"value":120}},{"key_as_string":"2015-02-01T00:00:00.000Z","key":1422748800000,"doc_count":715,"interval_diff":{"value":41}},{"key_as_string":"2015-01-01T00:00:00.000Z","key":1420070400000,"doc_count":674,"interval_diff":{"value":48}},{"key_as_string":"2014-12-01T00:00:00.000Z","key":1417392000000,"doc_count":626,"interval_diff":{"value":30}},{"key_as_string":"2014-11-01T00:00:00.000Z","key":1414800000000,"doc_count":596,"interval_diff":{"value":-121}},{"key_as_string":"2014-10-01T00:00:00.000Z","key":1412121600000,"doc_count":717,"interval_diff":{"value":10}},{"key_as_string":"2014-09-01T00:00:00.000Z","key":1409529600000,"doc_count":707,"interval_diff":{"value":10}},{"key_as_string":"2014-08-01T00:00:00.000Z","key":1406851200000,"doc_count":697,"interval_diff":{"value":-12}},{"key_as_string":"2014-07-01T00:00:00.000Z","key":1404172800000,"doc_count":709,"interval_diff":{"value":57}},{"key_as_string":"2014-06-01T00:00:00.000Z","key":1401580800000,"doc_count":652,"interval_diff":{"value":24}},{"key_as_string":"2014-05-01T00:00:00.000Z","key":1398902400000,"doc_count":628,"interval_diff":{"value":-53}},{"key_as_string":"2014-04-01T00:00:00.000Z","key":1396310400000,"doc_count":681,"interval_diff":{"value":-34}},{"key_as_string":"2014-03-01T00:00:00.000Z","key":1393632000000,"doc_count":715,"interval_diff":{"value":34}},{"key_as_string":"2014-02-01T00:00:00.000Z","key":1391212800000,"doc_count":681,"interval_diff":{"value":19}},{"key_as_string":"2014-01-01T00:00:00.000Z","key":1388534400000,"doc_count":662,"interval_diff":{"value":207}},{"key_as_string":"2013-12-01T00:00:00.000Z","key":1385856000000,"doc_count":455,"interval_diff":{"value":-3}},{"key_as_string":"2013-11-01T00:00:00.000Z","key":1383264000000,"doc_count":458,"interval_diff":{"value":61}},{"key_as_string":"2013-10-01T00:00:00.000Z","key":1380585600000,"doc_count":397,"interval_diff":{"value":-56}},{"key_as_string":"2013-09-01T00:00:00.000Z","key":1377993600000,"doc_count":453,"interval_diff":{"value":12}},{"key_as_string":"2013-08-01T00:00:00.000Z","key":1375315200000,"doc_count":441,"interval_diff":{"value":67}},{"key_as_string":"2013-07-01T00:00:00.000Z","key":1372636800000,"doc_count":374,"interval_diff":{"value":40}},{"key_as_string":"2013-06-01T00:00:00.000Z","key":1370044800000,"doc_count":334,"interval_diff":{"value":3}},{"key_as_string":"2013-05-01T00:00:00.000Z","key":1367366400000,"doc_count":331,"interval_diff":{"value":-10}},{"key_as_string":"2013-04-01T00:00:00.000Z","key":1364774400000,"doc_count":341,"interval_diff":{"value":57}},{"key_as_string":"2013-03-01T00:00:00.000Z","key":1362096000000,"doc_count":284,"interval_diff":{"value":12}},{"key_as_string":"2013-02-01T00:00:00.000Z","key":1359676800000,"doc_count":272,"interval_diff":{"value":17}},{"key_as_string":"2013-01-01T00:00:00.000Z","key":1356998400000,"doc_count":255,"interval_diff":{"value":40}},{"key_as_string":"2012-12-01T00:00:00.000Z","key":1354320000000,"doc_count":215,"interval_diff":{"value":-8}},{"key_as_string":"2012-11-01T00:00:00.000Z","key":1351728000000,"doc_count":223,"interval_diff":{"value":-29}},{"key_as_string":"2012-10-01T00:00:00.000Z","key":1349049600000,"doc_count":252,"interval_diff":{"value":103}},{"key_as_string":"2012-09-01T00:00:00.000Z","key":1346457600000,"doc_count":149,"interval_diff":{"value":-60}},{"key_as_string":"2012-08-01T00:00:00.000Z","key":1343779200000,"doc_count":209,"interval_diff":{"value":-32}},{"key_as_string":"2012-07-01T00:00:00.000Z","key":1341100800000,"doc_count":241,"interval_diff":{"value":26}},{"key_as_string":"2012-06-01T00:00:00.000Z","key":1338508800000,"doc_count":215,"interval_diff":{"value":37}},{"key_as_string":"2012-05-01T00:00:00.000Z","key":1335830400000,"doc_count":178,"interval_diff":{"value":-11}},{"key_as_string":"2012-04-01T00:00:00.000Z","key":1333238400000,"doc_count":189,"interval_diff":{"value":-1}},{"key_as_string":"2012-03-01T00:00:00.000Z","key":1330560000000,"doc_count":190,"interval_diff":{"value":96}},{"key_as_string":"2012-02-01T00:00:00.000Z","key":1328054400000,"doc_count":94,"interval_diff":{"value":-27}},{"key_as_string":"2012-01-01T00:00:00.000Z","key":1325376000000,"doc_count":121,"interval_diff":{"value":29}},{"key_as_string":"2011-12-01T00:00:00.000Z","key":1322697600000,"doc_count":92}]}},{"key":"Older American","doc_count":89940,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":13,"interval_diff":{"value":-846}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":859,"interval_diff":{"value":-199}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1058,"interval_diff":{"value":18}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":1040,"interval_diff":{"value":-59}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":1099,"interval_diff":{"value":104}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":995,"interval_diff":{"value":66}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":929,"interval_diff":{"value":114}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":815,"interval_diff":{"value":-10}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":825,"interval_diff":{"value":-134}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":959,"interval_diff":{"value":11}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":948,"interval_diff":{"value":-90}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":1038,"interval_diff":{"value":108}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":930,"interval_diff":{"value":-1}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":931,"interval_diff":{"value":-24}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":955,"interval_diff":{"value":-52}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1007,"interval_diff":{"value":6}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":1001,"interval_diff":{"value":224}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":777,"interval_diff":{"value":83}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":694,"interval_diff":{"value":131}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":563,"interval_diff":{"value":18}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":545,"interval_diff":{"value":-49}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":594,"interval_diff":{"value":58}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":536,"interval_diff":{"value":-82}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":618,"interval_diff":{"value":45}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":573,"interval_diff":{"value":21}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":552,"interval_diff":{"value":-45}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":597,"interval_diff":{"value":87}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":510,"interval_diff":{"value":-81}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":591,"interval_diff":{"value":36}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":555,"interval_diff":{"value":-31}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":586,"interval_diff":{"value":106}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":480,"interval_diff":{"value":-28}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":508,"interval_diff":{"value":-135}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":643,"interval_diff":{"value":-34}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":677,"interval_diff":{"value":72}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":605,"interval_diff":{"value":37}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":568,"interval_diff":{"value":13}},{"key_as_string":"2017-06-01T00:00:00.000Z","key":1496275200000,"doc_count":555,"interval_diff":{"value":-34}},{"key_as_string":"2017-05-01T00:00:00.000Z","key":1493596800000,"doc_count":589,"interval_diff":{"value":-417}},{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":1006,"interval_diff":{"value":-355}},{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":1361,"interval_diff":{"value":9}},{"key_as_string":"2017-02-01T00:00:00.000Z","key":1485907200000,"doc_count":1352,"interval_diff":{"value":-52}},{"key_as_string":"2017-01-01T00:00:00.000Z","key":1483228800000,"doc_count":1404,"interval_diff":{"value":224}},{"key_as_string":"2016-12-01T00:00:00.000Z","key":1480550400000,"doc_count":1180,"interval_diff":{"value":-104}},{"key_as_string":"2016-11-01T00:00:00.000Z","key":1477958400000,"doc_count":1284,"interval_diff":{"value":-184}},{"key_as_string":"2016-10-01T00:00:00.000Z","key":1475280000000,"doc_count":1468,"interval_diff":{"value":-149}},{"key_as_string":"2016-09-01T00:00:00.000Z","key":1472688000000,"doc_count":1617,"interval_diff":{"value":195}},{"key_as_string":"2016-08-01T00:00:00.000Z","key":1470009600000,"doc_count":1422,"interval_diff":{"value":172}},{"key_as_string":"2016-07-01T00:00:00.000Z","key":1467331200000,"doc_count":1250,"interval_diff":{"value":-70}},{"key_as_string":"2016-06-01T00:00:00.000Z","key":1464739200000,"doc_count":1320,"interval_diff":{"value":-6}},{"key_as_string":"2016-05-01T00:00:00.000Z","key":1462060800000,"doc_count":1326,"interval_diff":{"value":19}},{"key_as_string":"2016-04-01T00:00:00.000Z","key":1459468800000,"doc_count":1307,"interval_diff":{"value":-55}},{"key_as_string":"2016-03-01T00:00:00.000Z","key":1456790400000,"doc_count":1362,"interval_diff":{"value":163}},{"key_as_string":"2016-02-01T00:00:00.000Z","key":1454284800000,"doc_count":1199,"interval_diff":{"value":-57}},{"key_as_string":"2016-01-01T00:00:00.000Z","key":1451606400000,"doc_count":1256,"interval_diff":{"value":116}},{"key_as_string":"2015-12-01T00:00:00.000Z","key":1448928000000,"doc_count":1140,"interval_diff":{"value":-65}},{"key_as_string":"2015-11-01T00:00:00.000Z","key":1446336000000,"doc_count":1205,"interval_diff":{"value":-38}},{"key_as_string":"2015-10-01T00:00:00.000Z","key":1443657600000,"doc_count":1243,"interval_diff":{"value":-114}},{"key_as_string":"2015-09-01T00:00:00.000Z","key":1441065600000,"doc_count":1357,"interval_diff":{"value":-82}},{"key_as_string":"2015-08-01T00:00:00.000Z","key":1438387200000,"doc_count":1439,"interval_diff":{"value":-3}},{"key_as_string":"2015-07-01T00:00:00.000Z","key":1435708800000,"doc_count":1442,"interval_diff":{"value":271}},{"key_as_string":"2015-06-01T00:00:00.000Z","key":1433116800000,"doc_count":1171,"interval_diff":{"value":77}},{"key_as_string":"2015-05-01T00:00:00.000Z","key":1430438400000,"doc_count":1094,"interval_diff":{"value":-67}},{"key_as_string":"2015-04-01T00:00:00.000Z","key":1427846400000,"doc_count":1161,"interval_diff":{"value":-74}},{"key_as_string":"2015-03-01T00:00:00.000Z","key":1425168000000,"doc_count":1235,"interval_diff":{"value":199}},{"key_as_string":"2015-02-01T00:00:00.000Z","key":1422748800000,"doc_count":1036,"interval_diff":{"value":6}},{"key_as_string":"2015-01-01T00:00:00.000Z","key":1420070400000,"doc_count":1030,"interval_diff":{"value":77}},{"key_as_string":"2014-12-01T00:00:00.000Z","key":1417392000000,"doc_count":953,"interval_diff":{"value":52}},{"key_as_string":"2014-11-01T00:00:00.000Z","key":1414800000000,"doc_count":901,"interval_diff":{"value":-154}},{"key_as_string":"2014-10-01T00:00:00.000Z","key":1412121600000,"doc_count":1055,"interval_diff":{"value":38}},{"key_as_string":"2014-09-01T00:00:00.000Z","key":1409529600000,"doc_count":1017,"interval_diff":{"value":-88}},{"key_as_string":"2014-08-01T00:00:00.000Z","key":1406851200000,"doc_count":1105,"interval_diff":{"value":-31}},{"key_as_string":"2014-07-01T00:00:00.000Z","key":1404172800000,"doc_count":1136,"interval_diff":{"value":142}},{"key_as_string":"2014-06-01T00:00:00.000Z","key":1401580800000,"doc_count":994,"interval_diff":{"value":-29}},{"key_as_string":"2014-05-01T00:00:00.000Z","key":1398902400000,"doc_count":1023,"interval_diff":{"value":-96}},{"key_as_string":"2014-04-01T00:00:00.000Z","key":1396310400000,"doc_count":1119,"interval_diff":{"value":-82}},{"key_as_string":"2014-03-01T00:00:00.000Z","key":1393632000000,"doc_count":1201,"interval_diff":{"value":118}},{"key_as_string":"2014-02-01T00:00:00.000Z","key":1391212800000,"doc_count":1083,"interval_diff":{"value":-16}},{"key_as_string":"2014-01-01T00:00:00.000Z","key":1388534400000,"doc_count":1099,"interval_diff":{"value":453}},{"key_as_string":"2013-12-01T00:00:00.000Z","key":1385856000000,"doc_count":646,"interval_diff":{"value":-160}},{"key_as_string":"2013-11-01T00:00:00.000Z","key":1383264000000,"doc_count":806,"interval_diff":{"value":22}},{"key_as_string":"2013-10-01T00:00:00.000Z","key":1380585600000,"doc_count":784,"interval_diff":{"value":-30}},{"key_as_string":"2013-09-01T00:00:00.000Z","key":1377993600000,"doc_count":814,"interval_diff":{"value":-13}},{"key_as_string":"2013-08-01T00:00:00.000Z","key":1375315200000,"doc_count":827,"interval_diff":{"value":11}},{"key_as_string":"2013-07-01T00:00:00.000Z","key":1372636800000,"doc_count":816,"interval_diff":{"value":185}},{"key_as_string":"2013-06-01T00:00:00.000Z","key":1370044800000,"doc_count":631,"interval_diff":{"value":-4}},{"key_as_string":"2013-05-01T00:00:00.000Z","key":1367366400000,"doc_count":635,"interval_diff":{"value":-88}},{"key_as_string":"2013-04-01T00:00:00.000Z","key":1364774400000,"doc_count":723,"interval_diff":{"value":101}},{"key_as_string":"2013-03-01T00:00:00.000Z","key":1362096000000,"doc_count":622,"interval_diff":{"value":97}},{"key_as_string":"2013-02-01T00:00:00.000Z","key":1359676800000,"doc_count":525,"interval_diff":{"value":-87}},{"key_as_string":"2013-01-01T00:00:00.000Z","key":1356998400000,"doc_count":612,"interval_diff":{"value":258}},{"key_as_string":"2012-12-01T00:00:00.000Z","key":1354320000000,"doc_count":354,"interval_diff":{"value":-27}},{"key_as_string":"2012-11-01T00:00:00.000Z","key":1351728000000,"doc_count":381,"interval_diff":{"value":-70}},{"key_as_string":"2012-10-01T00:00:00.000Z","key":1349049600000,"doc_count":451,"interval_diff":{"value":111}},{"key_as_string":"2012-09-01T00:00:00.000Z","key":1346457600000,"doc_count":340,"interval_diff":{"value":-101}},{"key_as_string":"2012-08-01T00:00:00.000Z","key":1343779200000,"doc_count":441,"interval_diff":{"value":-1}},{"key_as_string":"2012-07-01T00:00:00.000Z","key":1341100800000,"doc_count":442,"interval_diff":{"value":26}},{"key_as_string":"2012-06-01T00:00:00.000Z","key":1338508800000,"doc_count":416,"interval_diff":{"value":55}},{"key_as_string":"2012-05-01T00:00:00.000Z","key":1335830400000,"doc_count":361,"interval_diff":{"value":38}},{"key_as_string":"2012-04-01T00:00:00.000Z","key":1333238400000,"doc_count":323,"interval_diff":{"value":-110}},{"key_as_string":"2012-03-01T00:00:00.000Z","key":1330560000000,"doc_count":433,"interval_diff":{"value":177}},{"key_as_string":"2012-02-01T00:00:00.000Z","key":1328054400000,"doc_count":256,"interval_diff":{"value":-114}},{"key_as_string":"2012-01-01T00:00:00.000Z","key":1325376000000,"doc_count":370,"interval_diff":{"value":110}},{"key_as_string":"2011-12-01T00:00:00.000Z","key":1322697600000,"doc_count":260}]}},{"key":"Older American, Servicemember","doc_count":18620,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":2,"interval_diff":{"value":-205}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":207,"interval_diff":{"value":-90}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":297,"interval_diff":{"value":23}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":274,"interval_diff":{"value":-33}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":307,"interval_diff":{"value":-20}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":327,"interval_diff":{"value":8}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":319,"interval_diff":{"value":73}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":246,"interval_diff":{"value":-23}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":269,"interval_diff":{"value":-68}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":337,"interval_diff":{"value":45}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":292,"interval_diff":{"value":-32}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":324,"interval_diff":{"value":-2}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":326,"interval_diff":{"value":14}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":312,"interval_diff":{"value":-3}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":315,"interval_diff":{"value":16}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":299,"interval_diff":{"value":7}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":292,"interval_diff":{"value":-8}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":300,"interval_diff":{"value":98}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":202,"interval_diff":{"value":2}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":200,"interval_diff":{"value":30}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":170,"interval_diff":{"value":-41}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":211,"interval_diff":{"value":-14}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":225,"interval_diff":{"value":6}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":219,"interval_diff":{"value":-10}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":229,"interval_diff":{"value":26}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":203,"interval_diff":{"value":-3}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":206,"interval_diff":{"value":-11}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":217,"interval_diff":{"value":-3}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":220,"interval_diff":{"value":20}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":200,"interval_diff":{"value":0}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":200,"interval_diff":{"value":-14}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":214,"interval_diff":{"value":2}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":212,"interval_diff":{"value":-36}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":248,"interval_diff":{"value":-10}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":258,"interval_diff":{"value":26}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":232,"interval_diff":{"value":3}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":229,"interval_diff":{"value":6}},{"key_as_string":"2017-06-01T00:00:00.000Z","key":1496275200000,"doc_count":223,"interval_diff":{"value":34}},{"key_as_string":"2017-05-01T00:00:00.000Z","key":1493596800000,"doc_count":189,"interval_diff":{"value":6}},{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":183,"interval_diff":{"value":-3}},{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":186,"interval_diff":{"value":22}},{"key_as_string":"2017-02-01T00:00:00.000Z","key":1485907200000,"doc_count":164,"interval_diff":{"value":-14}},{"key_as_string":"2017-01-01T00:00:00.000Z","key":1483228800000,"doc_count":178,"interval_diff":{"value":18}},{"key_as_string":"2016-12-01T00:00:00.000Z","key":1480550400000,"doc_count":160,"interval_diff":{"value":-17}},{"key_as_string":"2016-11-01T00:00:00.000Z","key":1477958400000,"doc_count":177,"interval_diff":{"value":-13}},{"key_as_string":"2016-10-01T00:00:00.000Z","key":1475280000000,"doc_count":190,"interval_diff":{"value":-29}},{"key_as_string":"2016-09-01T00:00:00.000Z","key":1472688000000,"doc_count":219,"interval_diff":{"value":-13}},{"key_as_string":"2016-08-01T00:00:00.000Z","key":1470009600000,"doc_count":232,"interval_diff":{"value":53}},{"key_as_string":"2016-07-01T00:00:00.000Z","key":1467331200000,"doc_count":179,"interval_diff":{"value":-6}},{"key_as_string":"2016-06-01T00:00:00.000Z","key":1464739200000,"doc_count":185,"interval_diff":{"value":-16}},{"key_as_string":"2016-05-01T00:00:00.000Z","key":1462060800000,"doc_count":201,"interval_diff":{"value":0}},{"key_as_string":"2016-04-01T00:00:00.000Z","key":1459468800000,"doc_count":201,"interval_diff":{"value":-27}},{"key_as_string":"2016-03-01T00:00:00.000Z","key":1456790400000,"doc_count":228,"interval_diff":{"value":19}},{"key_as_string":"2016-02-01T00:00:00.000Z","key":1454284800000,"doc_count":209,"interval_diff":{"value":0}},{"key_as_string":"2016-01-01T00:00:00.000Z","key":1451606400000,"doc_count":209,"interval_diff":{"value":18}},{"key_as_string":"2015-12-01T00:00:00.000Z","key":1448928000000,"doc_count":191,"interval_diff":{"value":5}},{"key_as_string":"2015-11-01T00:00:00.000Z","key":1446336000000,"doc_count":186,"interval_diff":{"value":-23}},{"key_as_string":"2015-10-01T00:00:00.000Z","key":1443657600000,"doc_count":209,"interval_diff":{"value":-22}},{"key_as_string":"2015-09-01T00:00:00.000Z","key":1441065600000,"doc_count":231,"interval_diff":{"value":45}},{"key_as_string":"2015-08-01T00:00:00.000Z","key":1438387200000,"doc_count":186,"interval_diff":{"value":-28}},{"key_as_string":"2015-07-01T00:00:00.000Z","key":1435708800000,"doc_count":214,"interval_diff":{"value":28}},{"key_as_string":"2015-06-01T00:00:00.000Z","key":1433116800000,"doc_count":186,"interval_diff":{"value":26}},{"key_as_string":"2015-05-01T00:00:00.000Z","key":1430438400000,"doc_count":160,"interval_diff":{"value":-28}},{"key_as_string":"2015-04-01T00:00:00.000Z","key":1427846400000,"doc_count":188,"interval_diff":{"value":3}},{"key_as_string":"2015-03-01T00:00:00.000Z","key":1425168000000,"doc_count":185,"interval_diff":{"value":11}},{"key_as_string":"2015-02-01T00:00:00.000Z","key":1422748800000,"doc_count":174,"interval_diff":{"value":34}},{"key_as_string":"2015-01-01T00:00:00.000Z","key":1420070400000,"doc_count":140,"interval_diff":{"value":-30}},{"key_as_string":"2014-12-01T00:00:00.000Z","key":1417392000000,"doc_count":170,"interval_diff":{"value":24}},{"key_as_string":"2014-11-01T00:00:00.000Z","key":1414800000000,"doc_count":146,"interval_diff":{"value":-15}},{"key_as_string":"2014-10-01T00:00:00.000Z","key":1412121600000,"doc_count":161,"interval_diff":{"value":-9}},{"key_as_string":"2014-09-01T00:00:00.000Z","key":1409529600000,"doc_count":170,"interval_diff":{"value":20}},{"key_as_string":"2014-08-01T00:00:00.000Z","key":1406851200000,"doc_count":150,"interval_diff":{"value":-41}},{"key_as_string":"2014-07-01T00:00:00.000Z","key":1404172800000,"doc_count":191,"interval_diff":{"value":59}},{"key_as_string":"2014-06-01T00:00:00.000Z","key":1401580800000,"doc_count":132,"interval_diff":{"value":-31}},{"key_as_string":"2014-05-01T00:00:00.000Z","key":1398902400000,"doc_count":163,"interval_diff":{"value":-18}},{"key_as_string":"2014-04-01T00:00:00.000Z","key":1396310400000,"doc_count":181,"interval_diff":{"value":25}},{"key_as_string":"2014-03-01T00:00:00.000Z","key":1393632000000,"doc_count":156,"interval_diff":{"value":15}},{"key_as_string":"2014-02-01T00:00:00.000Z","key":1391212800000,"doc_count":141,"interval_diff":{"value":-29}},{"key_as_string":"2014-01-01T00:00:00.000Z","key":1388534400000,"doc_count":170,"interval_diff":{"value":25}},{"key_as_string":"2013-12-01T00:00:00.000Z","key":1385856000000,"doc_count":145,"interval_diff":{"value":11}},{"key_as_string":"2013-11-01T00:00:00.000Z","key":1383264000000,"doc_count":134,"interval_diff":{"value":31}},{"key_as_string":"2013-10-01T00:00:00.000Z","key":1380585600000,"doc_count":103,"interval_diff":{"value":-27}},{"key_as_string":"2013-09-01T00:00:00.000Z","key":1377993600000,"doc_count":130,"interval_diff":{"value":-15}},{"key_as_string":"2013-08-01T00:00:00.000Z","key":1375315200000,"doc_count":145,"interval_diff":{"value":37}},{"key_as_string":"2013-07-01T00:00:00.000Z","key":1372636800000,"doc_count":108,"interval_diff":{"value":31}},{"key_as_string":"2013-06-01T00:00:00.000Z","key":1370044800000,"doc_count":77,"interval_diff":{"value":3}},{"key_as_string":"2013-05-01T00:00:00.000Z","key":1367366400000,"doc_count":74,"interval_diff":{"value":-26}},{"key_as_string":"2013-04-01T00:00:00.000Z","key":1364774400000,"doc_count":100,"interval_diff":{"value":32}},{"key_as_string":"2013-03-01T00:00:00.000Z","key":1362096000000,"doc_count":68,"interval_diff":{"value":9}},{"key_as_string":"2013-02-01T00:00:00.000Z","key":1359676800000,"doc_count":59,"interval_diff":{"value":-16}},{"key_as_string":"2013-01-01T00:00:00.000Z","key":1356998400000,"doc_count":75,"interval_diff":{"value":25}},{"key_as_string":"2012-12-01T00:00:00.000Z","key":1354320000000,"doc_count":50,"interval_diff":{"value":3}},{"key_as_string":"2012-11-01T00:00:00.000Z","key":1351728000000,"doc_count":47,"interval_diff":{"value":9}},{"key_as_string":"2012-10-01T00:00:00.000Z","key":1349049600000,"doc_count":38,"interval_diff":{"value":7}},{"key_as_string":"2012-09-01T00:00:00.000Z","key":1346457600000,"doc_count":31,"interval_diff":{"value":-16}},{"key_as_string":"2012-08-01T00:00:00.000Z","key":1343779200000,"doc_count":47,"interval_diff":{"value":-14}},{"key_as_string":"2012-07-01T00:00:00.000Z","key":1341100800000,"doc_count":61,"interval_diff":{"value":12}},{"key_as_string":"2012-06-01T00:00:00.000Z","key":1338508800000,"doc_count":49,"interval_diff":{"value":-4}},{"key_as_string":"2012-05-01T00:00:00.000Z","key":1335830400000,"doc_count":53,"interval_diff":{"value":-9}},{"key_as_string":"2012-04-01T00:00:00.000Z","key":1333238400000,"doc_count":62,"interval_diff":{"value":23}},{"key_as_string":"2012-03-01T00:00:00.000Z","key":1330560000000,"doc_count":39,"interval_diff":{"value":13}},{"key_as_string":"2012-02-01T00:00:00.000Z","key":1328054400000,"doc_count":26,"interval_diff":{"value":-10}},{"key_as_string":"2012-01-01T00:00:00.000Z","key":1325376000000,"doc_count":36,"interval_diff":{"value":7}},{"key_as_string":"2011-12-01T00:00:00.000Z","key":1322697600000,"doc_count":29}]}}]}}}
\ No newline at end of file
diff --git a/src/reducers/__tests__/trends.spec.jsx b/src/reducers/__tests__/trends.spec.jsx
index af2d7e0e6..557f33fed 100644
--- a/src/reducers/__tests__/trends.spec.jsx
+++ b/src/reducers/__tests__/trends.spec.jsx
@@ -230,6 +230,8 @@ describe( 'reducer:trends', () => {
       expect( result ).toEqual( trendsResults )
     } )
 
+    // Issue was removed from the aggregations. Retaining test
+    // in case the feature is enabled JRC 7-6-20
     // it( 'maps data to object state - Issue Lens', () => {
     //   state.lens = 'Issue'
     //   result = target( state, action )
@@ -250,9 +252,9 @@ describe( 'reducer:trends', () => {
     } )
 
     it( 'maps data to object state - Focus', () => {
-      state.lens = 'Issue'
-      state.subLens = 'sub_issue'
-      state.focus = 'Incorrect information on your report'
+      state.lens = 'Product'
+      state.subLens = 'sub_product'
+      state.focus = 'Debt collection'
       action.data.aggregations = trendsFocusAggs
       result = target( state, action )
       expect( result ).toEqual( trendsFocusAggsResults )
diff --git a/src/reducers/trends.jsx b/src/reducers/trends.jsx
index 071552806..c6005bcd7 100644
--- a/src/reducers/trends.jsx
+++ b/src/reducers/trends.jsx
@@ -82,7 +82,6 @@ function processBucket( state, agg ) {
           splitterText: labelText,
           value: '',
           parent: item.key,
-          pctChange: '',
           pctOfSet: '',
           width: 0.3
         } )
@@ -168,7 +167,7 @@ function processAreaData( state, aggregations, buckets ) {
     obj => ( {
       name: mainName,
       value: obj.doc_count,
-      date: new Date( obj.key_as_string )
+      date: obj.key_as_string
     } )
   )
 
@@ -178,17 +177,18 @@ function processAreaData( state, aggregations, buckets ) {
 
   const filter = lens.toLowerCase()
   const trendResults = aggregations[filter][filter]
-    .buckets.slice( 0, 10 )
+    .buckets.slice( 0, 5 )
   for ( let i = 0; i < trendResults.length; i++ ) {
     const o = trendResults[i]
     // only take first 10 of the buckets for processing
     const reverseBuckets = o.trend_period.buckets.reverse()
     for ( let j = 0; j < reverseBuckets.length; j++ ) {
       const p = reverseBuckets[j]
+      console.log( 'DATE THING from PROCESS AREA DATA: ', p.key_as_string )
       compBuckets.push( {
         name: o.key,
         value: p.doc_count,
-        date: new Date( p.key_as_string )
+        date: p.key_as_string
       } )
 
       // delete total from that date
@@ -215,7 +215,7 @@ function processAreaData( state, aggregations, buckets ) {
           compBuckets.push( {
             name: o.key,
             value: 0,
-            date: new Date( obj.date )
+            date: obj.date
           } )
         }
       }
@@ -269,7 +269,7 @@ function processLineData( lens, aggregations, focus, subLens ) {
     }
   }
   return {
-    dataByTopic: dataByTopic.slice( 0, 10 )
+    dataByTopic: dataByTopic.slice( 0, 5 )
   }
 }
 
@@ -363,7 +363,7 @@ export function processTrends( state, action ) {
       } else if ( k === 'dateRangeBrush' ) {
         results[k] = buckets.map(
           obj => ( {
-            date: new Date( obj.key_as_string ),
+            date: obj.key_as_string,
             value: obj.doc_count
           } )
         )
diff --git a/src/utils/trends.jsx b/src/utils/trends.jsx
index e37b3ff87..11af94211 100644
--- a/src/utils/trends.jsx
+++ b/src/utils/trends.jsx
@@ -37,6 +37,10 @@ export const pruneOther = buckets => {
   const sumOther = buckets
     .filter( o => o.name.indexOf( 'All other' ) >= 0 )
     .reduce( ( prev, cur ) => prev + cur.value, 0 )
+
+  console.log('BUCKETS: ', buckets)
+  console.log('SUM OTHER: ', sumOther)
+
   return sumOther > 0 ? buckets :
    buckets.filter( o => o.name.indexOf( 'All other' ) === -1 )
 }

From 008195689f79e976d3c7eb8476cda5b7fe12adf7 Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Tue, 7 Jul 2020 15:23:06 -0400
Subject: [PATCH 21/34] removing all other changes for now

---
 src/components/Charts/StackedAreaChart.jsx | 2 +-
 src/components/Trends/ExternalTooltip.jsx  | 2 +-
 src/reducers/trends.jsx                    | 3 ++-
 src/utils/trends.jsx                       | 4 ++--
 4 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/src/components/Charts/StackedAreaChart.jsx b/src/components/Charts/StackedAreaChart.jsx
index 7bb2c965d..8696ee730 100644
--- a/src/components/Charts/StackedAreaChart.jsx
+++ b/src/components/Charts/StackedAreaChart.jsx
@@ -64,7 +64,7 @@ export class StackedAreaChart extends React.Component {
     d3.select( chartID + ' .stacked-area' ).remove()
     const stackedAreaChart = stackedArea()
     const colorData = data.filter(
-      item => item.name.indexOf( 'All other' ) === -1
+      item => item.name !== 'Other'
     )
     const colorScheme = [ ...new Set( colorData.map( item => item.name ) ) ]
       .map( o => colorMap[o] )
diff --git a/src/components/Trends/ExternalTooltip.jsx b/src/components/Trends/ExternalTooltip.jsx
index c132116ae..99f1fcdb6 100644
--- a/src/components/Trends/ExternalTooltip.jsx
+++ b/src/components/Trends/ExternalTooltip.jsx
@@ -11,7 +11,7 @@ export class ExternalTooltip extends React.Component {
   _spanFormatter( value ) {
     const elements = []
     // Other should never be a selectable focus item
-    if ( this.props.focus || value.name.indexOf( 'All other' ) >= 0 ) {
+    if ( this.props.focus || value.name === 'Other' ) {
       elements.push(
         <span className="u-left" key={ value.name }>
           { value.name }
diff --git a/src/reducers/trends.jsx b/src/reducers/trends.jsx
index c6005bcd7..498b435b4 100644
--- a/src/reducers/trends.jsx
+++ b/src/reducers/trends.jsx
@@ -161,7 +161,7 @@ function processAreaData( state, aggregations, buckets ) {
   const { subLens } = state
   const lens = state.focus ? subLens.replace( '_', '-' ) : state.lens
 
-  const mainName = 'All other ' + mainNameLens( lens )
+  const mainName = 'Other'
   // overall buckets
   const compBuckets = buckets.map(
     obj => ( {
@@ -320,6 +320,7 @@ export const getColorScheme = ( lens, rowNames ) => {
 
   // Set constant grey colors for our "other" buckets"
   // TODO: Set these as constants / consolidate colors across charts
+  colScheme.Other = colors.DataLens[10]
   colScheme['All other products'] = colors.DataLens[10]
   colScheme['All other companies'] = colors.DataLens[10]
   colScheme['All other values'] = colors.DataLens[10]
diff --git a/src/utils/trends.jsx b/src/utils/trends.jsx
index 11af94211..0cc17880f 100644
--- a/src/utils/trends.jsx
+++ b/src/utils/trends.jsx
@@ -35,14 +35,14 @@ export const getSubLens = lens => {
  */
 export const pruneOther = buckets => {
   const sumOther = buckets
-    .filter( o => o.name.indexOf( 'All other' ) >= 0 )
+    .filter( o => o.name === 'Other' )
     .reduce( ( prev, cur ) => prev + cur.value, 0 )
 
   console.log('BUCKETS: ', buckets)
   console.log('SUM OTHER: ', sumOther)
 
   return sumOther > 0 ? buckets :
-   buckets.filter( o => o.name.indexOf( 'All other' ) === -1 )
+   buckets.filter( o => o.name !== 'Other')
 }
 
 export const isGreaterThanYear = ( from, to ) => {

From ad067b805cf3389485b6c70a33842a18eca989a2 Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Tue, 7 Jul 2020 16:29:26 -0400
Subject: [PATCH 22/34] tooltip changes for all other

---
 src/components/Trends/ExternalTooltip.jsx | 5 +++--
 src/reducers/trends.jsx                   | 5 ++++-
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/src/components/Trends/ExternalTooltip.jsx b/src/components/Trends/ExternalTooltip.jsx
index 99f1fcdb6..b5b6bbac1 100644
--- a/src/components/Trends/ExternalTooltip.jsx
+++ b/src/components/Trends/ExternalTooltip.jsx
@@ -14,7 +14,7 @@ export class ExternalTooltip extends React.Component {
     if ( this.props.focus || value.name === 'Other' ) {
       elements.push(
         <span className="u-left" key={ value.name }>
-          { value.name }
+          All { value.name.toLowerCase() } { this.props.lens }
         </span>
       )
       return elements
@@ -90,10 +90,11 @@ export const mapDispatchToProps = dispatch => ( {
 } )
 
 export const mapStateToProps = state => {
-  const { focus, lens } = state.query
+  const { focus, lens, subLens } = state.query
   return {
     focus: focus ? 'focus' : '',
     lens,
+    subLens,
     showCompanyTypeahead: lens === 'Company' && !focus,
     showTotal: state.trends.chartType === 'area',
     tooltip: state.trends.tooltip
diff --git a/src/reducers/trends.jsx b/src/reducers/trends.jsx
index 498b435b4..dd39b92a3 100644
--- a/src/reducers/trends.jsx
+++ b/src/reducers/trends.jsx
@@ -184,7 +184,6 @@ function processAreaData( state, aggregations, buckets ) {
     const reverseBuckets = o.trend_period.buckets.reverse()
     for ( let j = 0; j < reverseBuckets.length; j++ ) {
       const p = reverseBuckets[j]
-      console.log( 'DATE THING from PROCESS AREA DATA: ', p.key_as_string )
       compBuckets.push( {
         name: o.key,
         value: p.doc_count,
@@ -222,6 +221,10 @@ function processAreaData( state, aggregations, buckets ) {
     }
   }
 
+  // compBuckets.sort( function( a, b ) {
+  //   return a.date > b.date
+  // } )
+
   // we should prune 'Other' if all of the values are zero
   return pruneOther( compBuckets )
 }

From 4b518924eb8703c121ae1664c4877445bdadffa2 Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Tue, 7 Jul 2020 17:27:37 -0400
Subject: [PATCH 23/34] added all other to tooltips

---
 src/components/Trends/ExternalTooltip.jsx | 27 +++++++++++++++++++++--
 1 file changed, 25 insertions(+), 2 deletions(-)

diff --git a/src/components/Trends/ExternalTooltip.jsx b/src/components/Trends/ExternalTooltip.jsx
index b5b6bbac1..12d335f19 100644
--- a/src/components/Trends/ExternalTooltip.jsx
+++ b/src/components/Trends/ExternalTooltip.jsx
@@ -10,11 +10,34 @@ import { sanitizeHtmlId } from '../../utils'
 export class ExternalTooltip extends React.Component {
   _spanFormatter( value ) {
     const elements = []
+    console.log('SUBLENS: ', this.props.subLens)
+    console.log('LENS: ', this.props.lens)
+    const lensToUse = this.props.focus ? this.props.subLens
+     : this.props.lens
+    console.log('Lens to use: ', lensToUse);
+    const plurals = {
+      'Product': 'products',
+      'product': 'products',
+      'issue': 'issues',
+      'Sub-Issue': 'sub-issues',
+      'sub_product': 'sub-products',
+      'Company': 'companies'
+    }
+
     // Other should never be a selectable focus item
-    if ( this.props.focus || value.name === 'Other' ) {
+    if ( value.name === 'Other' ) {
+      elements.push(
+        <span className="u-left" key={ value.name }>
+          All other { plurals[lensToUse] }
+        </span>
+      )
+      return elements
+    }
+
+    if ( this.props.focus ) {
       elements.push(
         <span className="u-left" key={ value.name }>
-          All { value.name.toLowerCase() } { this.props.lens }
+          { value.name }
         </span>
       )
       return elements

From 61d32e12083bb9b26dc670ae03f4e97cb0d2d4cf Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Tue, 7 Jul 2020 17:30:00 -0400
Subject: [PATCH 24/34] resolve lint warnings

---
 src/components/Trends/ExternalTooltip.jsx | 7 ++-----
 src/reducers/trends.jsx                   | 3 +--
 src/utils/trends.jsx                      | 5 +----
 3 files changed, 4 insertions(+), 11 deletions(-)

diff --git a/src/components/Trends/ExternalTooltip.jsx b/src/components/Trends/ExternalTooltip.jsx
index 12d335f19..91a3a6b5d 100644
--- a/src/components/Trends/ExternalTooltip.jsx
+++ b/src/components/Trends/ExternalTooltip.jsx
@@ -10,11 +10,8 @@ import { sanitizeHtmlId } from '../../utils'
 export class ExternalTooltip extends React.Component {
   _spanFormatter( value ) {
     const elements = []
-    console.log('SUBLENS: ', this.props.subLens)
-    console.log('LENS: ', this.props.lens)
-    const lensToUse = this.props.focus ? this.props.subLens
-     : this.props.lens
-    console.log('Lens to use: ', lensToUse);
+    const lensToUse = this.props.focus ? this.props.subLens :
+     this.props.lens
     const plurals = {
       'Product': 'products',
       'product': 'products',
diff --git a/src/reducers/trends.jsx b/src/reducers/trends.jsx
index dd39b92a3..5965a1a67 100644
--- a/src/reducers/trends.jsx
+++ b/src/reducers/trends.jsx
@@ -321,8 +321,7 @@ export const getColorScheme = ( lens, rowNames ) => {
 
   colScheme.Complaints = colors.BriteCharts.medium
 
-  // Set constant grey colors for our "other" buckets"
-  // TODO: Set these as constants / consolidate colors across charts
+  // Set constant grey colors for all possible "other" buckets"
   colScheme.Other = colors.DataLens[10]
   colScheme['All other products'] = colors.DataLens[10]
   colScheme['All other companies'] = colors.DataLens[10]
diff --git a/src/utils/trends.jsx b/src/utils/trends.jsx
index 0cc17880f..8a3169180 100644
--- a/src/utils/trends.jsx
+++ b/src/utils/trends.jsx
@@ -38,11 +38,8 @@ export const pruneOther = buckets => {
     .filter( o => o.name === 'Other' )
     .reduce( ( prev, cur ) => prev + cur.value, 0 )
 
-  console.log('BUCKETS: ', buckets)
-  console.log('SUM OTHER: ', sumOther)
-
   return sumOther > 0 ? buckets :
-   buckets.filter( o => o.name !== 'Other')
+   buckets.filter( o => o.name !== 'Other' )
 }
 
 export const isGreaterThanYear = ( from, to ) => {

From 1f0229c67f056f05e78f2b1e01de6beea8d69b48 Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Tue, 7 Jul 2020 21:18:43 -0400
Subject: [PATCH 25/34] updating fixtures, snapshots

---
 src/components/Trends/TrendsPanel.jsx         |    4 +-
 src/components/__tests__/TrendsPanel.spec.jsx |    6 +-
 .../ExternalTooltip.spec.jsx.snap             |   22 +-
 .../__snapshots__/TrendsPanel.spec.jsx.snap   |    3 +-
 src/reducers/__fixtures__/trendsAggs.jsx      |    2 +-
 .../__fixtures__/trendsAggsDupeResults.jsx    |   27 +-
 src/reducers/__fixtures__/trendsFocusAggs.jsx |  792 ++++++++-
 src/reducers/__fixtures__/trendsResults.jsx   | 1479 ++++++++++++++++-
 src/reducers/__tests__/trends.spec.jsx        |   28 +-
 9 files changed, 2328 insertions(+), 35 deletions(-)

diff --git a/src/components/Trends/TrendsPanel.jsx b/src/components/Trends/TrendsPanel.jsx
index a8e29b069..b2497fc52 100644
--- a/src/components/Trends/TrendsPanel.jsx
+++ b/src/components/Trends/TrendsPanel.jsx
@@ -64,8 +64,8 @@ export class TrendsPanel extends React.Component {
     if ( overview ) {
       return 'Complaints by date received by the CFPB'
     } else if ( focus ) {
-      return `Complaints by ${ subLensMap[subLens] }
-       by date received by the CFPB`
+      return 'Complaints by ' + subLensMap[subLens].toLowerCase() +
+       ', by date received by the CFPB'
     }
     return 'Complaints by date received by the CFPB'
   }
diff --git a/src/components/__tests__/TrendsPanel.spec.jsx b/src/components/__tests__/TrendsPanel.spec.jsx
index 482f78306..ce98be9d4 100644
--- a/src/components/__tests__/TrendsPanel.spec.jsx
+++ b/src/components/__tests__/TrendsPanel.spec.jsx
@@ -241,14 +241,14 @@ describe( 'component:TrendsPanel', () => {
         params.overview = true
         const target = setupEnzyme( params )
         expect( target.instance()._areaChartTitle() )
-          .toEqual( 'Complaints by date CFPB received' )
+          .toEqual( 'Complaints by date received by the CFPB' )
       } )
 
       it( 'gets area chart title - Data Lens', () => {
         params.lens = 'Something'
         const target = setupEnzyme( params )
         expect( target.instance()._areaChartTitle() )
-          .toEqual( 'Something complaints by date CFPB received' )
+          .toEqual( 'Complaints by date received by the CFPB' )
       } )
 
       it( 'gets area chart title - Focus', () => {
@@ -256,7 +256,7 @@ describe( 'component:TrendsPanel', () => {
         params.lens = 'Product'
         const target = setupEnzyme( params )
         expect( target.instance()._areaChartTitle() )
-          .toEqual( 'Sub-products complaints by date CFPB received' )
+          .toEqual( 'Complaints by sub-products, by date received by the CFPB' )
       } )
     } )
   } )
diff --git a/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap b/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
index 329fddc90..1836f3fc6 100644
--- a/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
@@ -118,10 +118,26 @@ exports[`initial state renders Company typehead without crashing 1`] = `
         className="color__3"
       >
         <span
-          className="u-left"
+          className="u-left a-btn a-btn__link"
+          id="focus-allother"
+          onClick={[Function]}
         >
           All other
         </span>
+        <span
+          className="u-right a-btn a-btn__link close"
+          onClick={[Function]}
+        >
+          <svg
+            className="cf-icon-svg"
+            viewBox="0 0 718.9 1200"
+            xmlns="http://www.w3.org/2000/svg"
+          >
+            <path
+              d="M451.4 613.7l248.1-248.1c25.6-25.1 26-66.3.8-91.9s-66.3-26-91.9-.8l-.8.8-248.1 248.1-248.1-248.1c-25.4-25.4-66.5-25.4-91.9 0s-25.4 66.5 0 91.9l248.1 248.1L19.5 861.8c-25.6 25.1-26 66.3-.8 91.9s66.3 26 91.9.8l.8-.8 248.1-248.1 248.1 248.1c25.4 25.4 66.5 25.4 91.9 0s25.4-66.5 0-91.9L451.4 613.7z"
+            />
+          </svg>
+        </span>
         <span
           className="u-right"
         >
@@ -232,7 +248,9 @@ exports[`initial state renders without crashing 1`] = `
         className="color__3"
       >
         <span
-          className="u-left"
+          className="u-left a-btn a-btn__link"
+          id="focus-allother"
+          onClick={[Function]}
         >
           All other
         </span>
diff --git a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
index e76906784..54112315e 100644
--- a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
@@ -366,8 +366,7 @@ exports[`component:TrendsPanel Snapshots renders Focus without crashing 1`] = `
       <h2
         className="area-chart-title"
       >
-        Complaints by Sub-products
-       by date received by the CFPB
+        Complaints by sub-products, by date received by the CFPB
       </h2>
       <p
         className="chart-helper-text"
diff --git a/src/reducers/__fixtures__/trendsAggs.jsx b/src/reducers/__fixtures__/trendsAggs.jsx
index 0386692a6..075e733b1 100644
--- a/src/reducers/__fixtures__/trendsAggs.jsx
+++ b/src/reducers/__fixtures__/trendsAggs.jsx
@@ -1 +1 @@
-export default {"dateRangeBrush":{"doc_count":250000,"dateRangeBrush":{"buckets":[{"key_as_string":"2011-12-01T00:00:00.000Z","key":1322697600000,"doc_count":2},{"key_as_string":"2012-01-01T00:00:00.000Z","key":1325376000000,"doc_count":4},{"key_as_string":"2012-02-01T00:00:00.000Z","key":1328054400000,"doc_count":3},{"key_as_string":"2012-03-01T00:00:00.000Z","key":1330560000000,"doc_count":8},{"key_as_string":"2012-04-01T00:00:00.000Z","key":1333238400000,"doc_count":9},{"key_as_string":"2012-05-01T00:00:00.000Z","key":1335830400000,"doc_count":10},{"key_as_string":"2012-06-01T00:00:00.000Z","key":1338508800000,"doc_count":9},{"key_as_string":"2012-07-01T00:00:00.000Z","key":1341100800000,"doc_count":5},{"key_as_string":"2012-08-01T00:00:00.000Z","key":1343779200000,"doc_count":5},{"key_as_string":"2012-09-01T00:00:00.000Z","key":1346457600000,"doc_count":6},{"key_as_string":"2012-10-01T00:00:00.000Z","key":1349049600000,"doc_count":9},{"key_as_string":"2012-11-01T00:00:00.000Z","key":1351728000000,"doc_count":4},{"key_as_string":"2012-12-01T00:00:00.000Z","key":1354320000000,"doc_count":3},{"key_as_string":"2013-01-01T00:00:00.000Z","key":1356998400000,"doc_count":6},{"key_as_string":"2013-02-01T00:00:00.000Z","key":1359676800000,"doc_count":6},{"key_as_string":"2013-03-01T00:00:00.000Z","key":1362096000000,"doc_count":5},{"key_as_string":"2013-04-01T00:00:00.000Z","key":1364774400000,"doc_count":7},{"key_as_string":"2013-05-01T00:00:00.000Z","key":1367366400000,"doc_count":18},{"key_as_string":"2013-06-01T00:00:00.000Z","key":1370044800000,"doc_count":7},{"key_as_string":"2013-07-01T00:00:00.000Z","key":1372636800000,"doc_count":8},{"key_as_string":"2013-08-01T00:00:00.000Z","key":1375315200000,"doc_count":15},{"key_as_string":"2013-09-01T00:00:00.000Z","key":1377993600000,"doc_count":8},{"key_as_string":"2013-10-01T00:00:00.000Z","key":1380585600000,"doc_count":13},{"key_as_string":"2013-11-01T00:00:00.000Z","key":1383264000000,"doc_count":6},{"key_as_string":"2013-12-01T00:00:00.000Z","key":1385856000000,"doc_count":2},{"key_as_string":"2014-01-01T00:00:00.000Z","key":1388534400000,"doc_count":19},{"key_as_string":"2014-02-01T00:00:00.000Z","key":1391212800000,"doc_count":16},{"key_as_string":"2014-03-01T00:00:00.000Z","key":1393632000000,"doc_count":18},{"key_as_string":"2014-04-01T00:00:00.000Z","key":1396310400000,"doc_count":15},{"key_as_string":"2014-05-01T00:00:00.000Z","key":1398902400000,"doc_count":16},{"key_as_string":"2014-06-01T00:00:00.000Z","key":1401580800000,"doc_count":12},{"key_as_string":"2014-07-01T00:00:00.000Z","key":1404172800000,"doc_count":24},{"key_as_string":"2014-08-01T00:00:00.000Z","key":1406851200000,"doc_count":18},{"key_as_string":"2014-09-01T00:00:00.000Z","key":1409529600000,"doc_count":17},{"key_as_string":"2014-10-01T00:00:00.000Z","key":1412121600000,"doc_count":21},{"key_as_string":"2014-11-01T00:00:00.000Z","key":1414800000000,"doc_count":14},{"key_as_string":"2014-12-01T00:00:00.000Z","key":1417392000000,"doc_count":13},{"key_as_string":"2015-01-01T00:00:00.000Z","key":1420070400000,"doc_count":15},{"key_as_string":"2015-02-01T00:00:00.000Z","key":1422748800000,"doc_count":23},{"key_as_string":"2015-03-01T00:00:00.000Z","key":1425168000000,"doc_count":18},{"key_as_string":"2015-04-01T00:00:00.000Z","key":1427846400000,"doc_count":17},{"key_as_string":"2015-05-01T00:00:00.000Z","key":1430438400000,"doc_count":15},{"key_as_string":"2015-06-01T00:00:00.000Z","key":1433116800000,"doc_count":15},{"key_as_string":"2015-07-01T00:00:00.000Z","key":1435708800000,"doc_count":8},{"key_as_string":"2015-08-01T00:00:00.000Z","key":1438387200000,"doc_count":12},{"key_as_string":"2015-09-01T00:00:00.000Z","key":1441065600000,"doc_count":8},{"key_as_string":"2015-10-01T00:00:00.000Z","key":1443657600000,"doc_count":22},{"key_as_string":"2015-11-01T00:00:00.000Z","key":1446336000000,"doc_count":15},{"key_as_string":"2015-12-01T00:00:00.000Z","key":1448928000000,"doc_count":15},{"key_as_string":"2016-01-01T00:00:00.000Z","key":1451606400000,"doc_count":36},{"key_as_string":"2016-02-01T00:00:00.000Z","key":1454284800000,"doc_count":14},{"key_as_string":"2016-03-01T00:00:00.000Z","key":1456790400000,"doc_count":48},{"key_as_string":"2016-04-01T00:00:00.000Z","key":1459468800000,"doc_count":24},{"key_as_string":"2016-05-01T00:00:00.000Z","key":1462060800000,"doc_count":13},{"key_as_string":"2016-06-01T00:00:00.000Z","key":1464739200000,"doc_count":13},{"key_as_string":"2016-07-01T00:00:00.000Z","key":1467331200000,"doc_count":14},{"key_as_string":"2016-08-01T00:00:00.000Z","key":1470009600000,"doc_count":25},{"key_as_string":"2016-09-01T00:00:00.000Z","key":1472688000000,"doc_count":18},{"key_as_string":"2016-10-01T00:00:00.000Z","key":1475280000000,"doc_count":31},{"key_as_string":"2016-11-01T00:00:00.000Z","key":1477958400000,"doc_count":38},{"key_as_string":"2016-12-01T00:00:00.000Z","key":1480550400000,"doc_count":23},{"key_as_string":"2017-01-01T00:00:00.000Z","key":1483228800000,"doc_count":41},{"key_as_string":"2017-02-01T00:00:00.000Z","key":1485907200000,"doc_count":37},{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":37},{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":67},{"key_as_string":"2017-05-01T00:00:00.000Z","key":1493596800000,"doc_count":77},{"key_as_string":"2017-06-01T00:00:00.000Z","key":1496275200000,"doc_count":109},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":113},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":141},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":125},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":112},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":57},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":60},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":47},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":56},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":60},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":285},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":377},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":304},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":370},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":270},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":332},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":345},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":714},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":1266},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":1235},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":3496},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":9609},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":21574},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":23364},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":23273},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":24999},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":25920},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":23346},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":23738},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":19086},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":11444},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":7860},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":4273},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":5224},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":9995},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":3720},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1581}]}},"product":{"doc_count":248758,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":19262,"buckets":[{"key":"Credit reporting, credit repair services, or other personal consumer reports","doc_count":125169,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Credit reporting","doc_count":123254,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":2337,"interval_diff":{"value":-2661}}]}},{"key":"Other personal consumer report","doc_count":1447,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":14,"interval_diff":{"value":-31}}]}},{"key":"Credit repair services","doc_count":468,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":2,"interval_diff":{"value":-18}}]}}]},"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1035,"interval_diff":{"value":-1318}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":2353,"interval_diff":{"value":-2710}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":5063,"interval_diff":{"value":2134}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":2929,"interval_diff":{"value":571}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":2358,"interval_diff":{"value":-1652}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":4010,"interval_diff":{"value":-1631}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":5641,"interval_diff":{"value":-3700}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":9341,"interval_diff":{"value":-2587}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":11928,"interval_diff":{"value":-50}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":11978,"interval_diff":{"value":-1492}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":13470,"interval_diff":{"value":493}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":12977,"interval_diff":{"value":1259}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":11718,"interval_diff":{"value":19}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":11699,"interval_diff":{"value":1246}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":10453,"interval_diff":{"value":6287}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":4166,"interval_diff":{"value":2720}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":1446,"interval_diff":{"value":869}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":577,"interval_diff":{"value":-107}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":684,"interval_diff":{"value":331}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":353,"interval_diff":{"value":234}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":119,"interval_diff":{"value":-27}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":146,"interval_diff":{"value":52}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":94,"interval_diff":{"value":-41}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":135,"interval_diff":{"value":32}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":103,"interval_diff":{"value":-14}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":117,"interval_diff":{"value":24}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":93,"interval_diff":{"value":78}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":15,"interval_diff":{"value":4}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":11,"interval_diff":{"value":3}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":8,"interval_diff":{"value":-4}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":12,"interval_diff":{"value":-6}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":18,"interval_diff":{"value":-22}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":40,"interval_diff":{"value":4}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":36,"interval_diff":{"value":9}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":27,"interval_diff":{"value":11}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":16}]}},{"key":"Debt collection","doc_count":41420,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Other debt","doc_count":11257,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":164,"interval_diff":{"value":-248}}]}},{"key":"Credit card debt","doc_count":9509,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":103,"interval_diff":{"value":-280}}]}},{"key":"I do not know","doc_count":9235,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":126,"interval_diff":{"value":-336}}]}},{"key":"Medical debt","doc_count":6807,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":97,"interval_diff":{"value":-169}}]}},{"key":"Auto debt","doc_count":1351,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":16,"interval_diff":{"value":-20}}]}},{"key":"Payday loan debt","doc_count":1215,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":20,"interval_diff":{"value":-26}}]}},{"key":"Mortgage debt","doc_count":825,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":4,"interval_diff":{"value":-23}}]}},{"key":"Federal student loan debt","doc_count":671,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1,"interval_diff":{"value":-15}}]}},{"key":"Private student loan debt","doc_count":550,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":5,"interval_diff":{"value":-5}}]}}]},"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":180,"interval_diff":{"value":-356}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":536,"interval_diff":{"value":-1122}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":1658,"interval_diff":{"value":850}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":808,"interval_diff":{"value":129}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":679,"interval_diff":{"value":-571}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":1250,"interval_diff":{"value":-608}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":1858,"interval_diff":{"value":-1437}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":3295,"interval_diff":{"value":-610}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":3905,"interval_diff":{"value":-43}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":3948,"interval_diff":{"value":-251}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":4199,"interval_diff":{"value":194}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":4005,"interval_diff":{"value":-33}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":4038,"interval_diff":{"value":-8}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":4046,"interval_diff":{"value":303}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":3743,"interval_diff":{"value":2142}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":1601,"interval_diff":{"value":1102}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":499,"interval_diff":{"value":369}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":130,"interval_diff":{"value":-13}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":143,"interval_diff":{"value":34}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":109,"interval_diff":{"value":3}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":106,"interval_diff":{"value":39}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":67,"interval_diff":{"value":-11}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":78,"interval_diff":{"value":-20}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":98,"interval_diff":{"value":-5}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":103,"interval_diff":{"value":0}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":103,"interval_diff":{"value":55}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":48,"interval_diff":{"value":26}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":22,"interval_diff":{"value":4}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":18,"interval_diff":{"value":3}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":15,"interval_diff":{"value":-10}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":25,"interval_diff":{"value":6}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":19,"interval_diff":{"value":-9}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":28,"interval_diff":{"value":11}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":17,"interval_diff":{"value":-11}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":28,"interval_diff":{"value":13}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":15}]}},{"key":"Credit card or prepaid card","doc_count":23249,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"General-purpose credit card or charge card","doc_count":17637,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":228,"interval_diff":{"value":-517}}]}},{"key":"Store credit card","doc_count":3768,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":30,"interval_diff":{"value":-111}}]}},{"key":"General-purpose prepaid card","doc_count":984,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":19,"interval_diff":{"value":-51}}]}},{"key":"Government benefit card","doc_count":667,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":28,"interval_diff":{"value":-71}}]}},{"key":"Payroll card","doc_count":100,"trend_period":{"buckets":[{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":6,"interval_diff":{"value":4}}]}},{"key":"Gift card","doc_count":91,"trend_period":{"buckets":[{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":2,"interval_diff":{"value":-1}}]}},{"key":"Student prepaid card","doc_count":2,"trend_period":{"buckets":[{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":0,"interval_diff":{"value":0}}]}}]},"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":86,"interval_diff":{"value":-220}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":306,"interval_diff":{"value":-759}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":1065,"interval_diff":{"value":605}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":460,"interval_diff":{"value":124}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":336,"interval_diff":{"value":-447}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":783,"interval_diff":{"value":-385}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":1168,"interval_diff":{"value":-768}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":1936,"interval_diff":{"value":-274}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":2210,"interval_diff":{"value":94}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":2116,"interval_diff":{"value":-183}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2299,"interval_diff":{"value":73}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":2226,"interval_diff":{"value":80}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":2146,"interval_diff":{"value":52}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":2094,"interval_diff":{"value":98}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1996,"interval_diff":{"value":931}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":1065,"interval_diff":{"value":670}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":395,"interval_diff":{"value":265}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":130,"interval_diff":{"value":11}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":119,"interval_diff":{"value":63}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":56,"interval_diff":{"value":27}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":29,"interval_diff":{"value":5}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":24,"interval_diff":{"value":10}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":14,"interval_diff":{"value":-11}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":25,"interval_diff":{"value":-3}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":28,"interval_diff":{"value":3}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":25,"interval_diff":{"value":7}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":18,"interval_diff":{"value":11}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":7,"interval_diff":{"value":2}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":5,"interval_diff":{"value":-1}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":6,"interval_diff":{"value":-2}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":8,"interval_diff":{"value":1}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":7,"interval_diff":{"value":-6}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":13,"interval_diff":{"value":-4}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":17,"interval_diff":{"value":-3}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":20,"interval_diff":{"value":9}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":11}]}},{"key":"Mortgage","doc_count":20176,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Conventional home mortgage","doc_count":12711,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":104,"interval_diff":{"value":-388}}]}},{"key":"FHA mortgage","doc_count":2974,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":33,"interval_diff":{"value":-94}}]}},{"key":"Other type of mortgage","doc_count":1776,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":8,"interval_diff":{"value":-26}}]}},{"key":"Home equity loan or line of credit (HELOC)","doc_count":1246,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":6,"interval_diff":{"value":-28}}]}},{"key":"VA mortgage","doc_count":1158,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":17,"interval_diff":{"value":-48}}]}},{"key":"Reverse mortgage","doc_count":311,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1,"interval_diff":{"value":-6}}]}}]},"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":67,"interval_diff":{"value":-102}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":169,"interval_diff":{"value":-590}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":759,"interval_diff":{"value":386}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":373,"interval_diff":{"value":57}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":316,"interval_diff":{"value":-260}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":576,"interval_diff":{"value":-367}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":943,"interval_diff":{"value":-543}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":1486,"interval_diff":{"value":-441}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":1927,"interval_diff":{"value":98}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":1829,"interval_diff":{"value":-191}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2020,"interval_diff":{"value":22}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":1998,"interval_diff":{"value":154}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":1844,"interval_diff":{"value":-58}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1902,"interval_diff":{"value":31}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1871,"interval_diff":{"value":911}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":960,"interval_diff":{"value":561}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":399,"interval_diff":{"value":253}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":146,"interval_diff":{"value":32}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":114,"interval_diff":{"value":39}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":75,"interval_diff":{"value":36}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":39,"interval_diff":{"value":6}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":33,"interval_diff":{"value":-1}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":34,"interval_diff":{"value":-10}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":44,"interval_diff":{"value":22}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":22,"interval_diff":{"value":-31}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":53,"interval_diff":{"value":-10}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":63,"interval_diff":{"value":57}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":6,"interval_diff":{"value":-8}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":14,"interval_diff":{"value":6}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":8,"interval_diff":{"value":2}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":6,"interval_diff":{"value":3}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":3,"interval_diff":{"value":-13}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":16,"interval_diff":{"value":-1}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":17,"interval_diff":{"value":-11}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":28,"interval_diff":{"value":12}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":16}]}},{"key":"Checking or savings account","doc_count":19482,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Checking account","doc_count":14933,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":132,"interval_diff":{"value":-393}}]}},{"key":"Other banking product or service","doc_count":2609,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":16,"interval_diff":{"value":-54}}]}},{"key":"Savings account","doc_count":1370,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":6,"interval_diff":{"value":-44}}]}},{"key":"CD (Certificate of Deposit)","doc_count":562,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":6,"interval_diff":{"value":-10}}]}},{"key":"Personal line of credit","doc_count":8,"trend_period":{"buckets":[{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":0,"interval_diff":{"value":0}}]}}]},"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":114,"interval_diff":{"value":-46}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":160,"interval_diff":{"value":-501}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":661,"interval_diff":{"value":365}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":296,"interval_diff":{"value":-29}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":325,"interval_diff":{"value":-396}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":721,"interval_diff":{"value":-249}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":970,"interval_diff":{"value":-527}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":1497,"interval_diff":{"value":-317}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":1814,"interval_diff":{"value":72}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":1742,"interval_diff":{"value":-302}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2044,"interval_diff":{"value":217}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":1827,"interval_diff":{"value":26}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":1801,"interval_diff":{"value":-33}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1834,"interval_diff":{"value":126}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1708,"interval_diff":{"value":827}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":881,"interval_diff":{"value":439}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":442,"interval_diff":{"value":305}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":137,"interval_diff":{"value":7}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":130,"interval_diff":{"value":64}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":66,"interval_diff":{"value":45}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":21,"interval_diff":{"value":-10}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":31,"interval_diff":{"value":2}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":29,"interval_diff":{"value":-9}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":38,"interval_diff":{"value":9}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":29,"interval_diff":{"value":-8}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":37,"interval_diff":{"value":13}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":24,"interval_diff":{"value":20}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":4,"interval_diff":{"value":3}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":1,"interval_diff":{"value":-2}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":3,"interval_diff":{"value":-1}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":4,"interval_diff":{"value":0}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":4,"interval_diff":{"value":1}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":3,"interval_diff":{"value":-24}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":27,"interval_diff":{"value":-3}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":30,"interval_diff":{"value":3}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":27}]}}]}},"max_date":{"value":1592672400000,"value_as_string":"2020-06-20T12:00:00-05:00"},"issue":{"doc_count":248758,"issue":{"doc_count_error_upper_bound":1673,"sum_other_doc_count":93995,"buckets":[{"key":"Incorrect information on your report","doc_count":83110,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":741,"interval_diff":{"value":-980}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1721,"interval_diff":{"value":-1850}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":3571,"interval_diff":{"value":1497}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":2074,"interval_diff":{"value":430}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":1644,"interval_diff":{"value":-1210}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":2854,"interval_diff":{"value":-993}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":3847,"interval_diff":{"value":-2564}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":6411,"interval_diff":{"value":-1589}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":8000,"interval_diff":{"value":-336}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":8336,"interval_diff":{"value":-541}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":8877,"interval_diff":{"value":581}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":8296,"interval_diff":{"value":673}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":7623,"interval_diff":{"value":99}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":7524,"interval_diff":{"value":930}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":6594,"interval_diff":{"value":4061}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":2533,"interval_diff":{"value":1657}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":876,"interval_diff":{"value":505}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":371,"interval_diff":{"value":-11}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":382,"interval_diff":{"value":150}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":232,"interval_diff":{"value":158}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":74,"interval_diff":{"value":-11}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":85,"interval_diff":{"value":20}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":65,"interval_diff":{"value":-28}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":93,"interval_diff":{"value":34}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":59,"interval_diff":{"value":-10}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":69,"interval_diff":{"value":14}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":55,"interval_diff":{"value":46}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":9,"interval_diff":{"value":2}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":7,"interval_diff":{"value":1}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":6,"interval_diff":{"value":-2}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":8,"interval_diff":{"value":-4}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":12,"interval_diff":{"value":-5}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":17,"interval_diff":{"value":6}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":11,"interval_diff":{"value":-12}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":23,"interval_diff":{"value":13}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":10}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Information belongs to someone else","doc_count":52596,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1280,"interval_diff":{"value":-1246}}]}},{"key":"Account status incorrect","doc_count":10319,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":139,"interval_diff":{"value":-261}}]}},{"key":"Account information incorrect","doc_count":9881,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":157,"interval_diff":{"value":-183}}]}},{"key":"Personal information incorrect","doc_count":3854,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":62,"interval_diff":{"value":-39}}]}},{"key":"Public record information inaccurate","doc_count":2347,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":21,"interval_diff":{"value":-47}}]}},{"key":"Old information reappears or never goes away","doc_count":2172,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":18,"interval_diff":{"value":-55}}]}},{"key":"Information is missing that should be on the report","doc_count":1350,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":25,"interval_diff":{"value":-24}}]}},{"key":"Information is incorrect","doc_count":173,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":4,"interval_diff":{"value":3}}]}},{"key":"Information that should be on the report is missing","doc_count":37,"trend_period":{"buckets":[{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":2,"interval_diff":{"value":2}}]}}]}},{"key":"Problem with a credit reporting company's investigation into an existing problem","doc_count":28350,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":217,"interval_diff":{"value":-275}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":492,"interval_diff":{"value":-665}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":1157,"interval_diff":{"value":538}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":619,"interval_diff":{"value":158}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":461,"interval_diff":{"value":-341}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":802,"interval_diff":{"value":-471}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":1273,"interval_diff":{"value":-783}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":2056,"interval_diff":{"value":-768}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":2824,"interval_diff":{"value":378}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":2446,"interval_diff":{"value":-399}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2845,"interval_diff":{"value":-138}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":2983,"interval_diff":{"value":99}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":2884,"interval_diff":{"value":234}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":2650,"interval_diff":{"value":132}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":2518,"interval_diff":{"value":1445}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":1073,"interval_diff":{"value":686}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":387,"interval_diff":{"value":251}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":136,"interval_diff":{"value":-91}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":227,"interval_diff":{"value":160}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":67,"interval_diff":{"value":48}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":19,"interval_diff":{"value":-29}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":48,"interval_diff":{"value":30}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":18,"interval_diff":{"value":-6}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":24,"interval_diff":{"value":-6}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":30,"interval_diff":{"value":0}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":30,"interval_diff":{"value":7}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":23,"interval_diff":{"value":20}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":3,"interval_diff":{"value":-3}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":6,"interval_diff":{"value":4}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":2,"interval_diff":{"value":-2}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":4,"interval_diff":{"value":0}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":4,"interval_diff":{"value":-5}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":9,"interval_diff":{"value":3}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":6,"interval_diff":{"value":2}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":4,"interval_diff":{"value":1}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":3}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Their investigation did not fix an error on your report","doc_count":20962,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":226,"interval_diff":{"value":-462}}]}},{"key":"Investigation took more than 30 days","doc_count":2153,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":111,"interval_diff":{"value":-77}}]}},{"key":"Was not notified of investigation status or results","doc_count":2100,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":108,"interval_diff":{"value":-29}}]}},{"key":"Difficulty submitting a dispute or getting information about a dispute over the phone","doc_count":1758,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":27,"interval_diff":{"value":-63}}]}},{"key":"Problem with personal statement of dispute","doc_count":1220,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":17,"interval_diff":{"value":-32}}]}}]}},{"key":"Attempts to collect debt not owed","doc_count":20371,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":100,"interval_diff":{"value":-193}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":293,"interval_diff":{"value":-561}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":854,"interval_diff":{"value":417}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":437,"interval_diff":{"value":92}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":345,"interval_diff":{"value":-204}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":549,"interval_diff":{"value":-374}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":923,"interval_diff":{"value":-812}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":1735,"interval_diff":{"value":-183}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":1918,"interval_diff":{"value":-41}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":1959,"interval_diff":{"value":-76}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2035,"interval_diff":{"value":109}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":1926,"interval_diff":{"value":-93}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":2019,"interval_diff":{"value":80}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1939,"interval_diff":{"value":119}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1820,"interval_diff":{"value":1071}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":749,"interval_diff":{"value":536}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":213,"interval_diff":{"value":142}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":71,"interval_diff":{"value":-10}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":81,"interval_diff":{"value":33}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":48,"interval_diff":{"value":4}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":44,"interval_diff":{"value":10}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":34,"interval_diff":{"value":0}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":34,"interval_diff":{"value":-10}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":44,"interval_diff":{"value":-6}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":50,"interval_diff":{"value":2}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":48,"interval_diff":{"value":28}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":20,"interval_diff":{"value":9}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":11,"interval_diff":{"value":2}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":9,"interval_diff":{"value":2}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":7,"interval_diff":{"value":-4}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":11,"interval_diff":{"value":2}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":9,"interval_diff":{"value":-7}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":16,"interval_diff":{"value":7}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":9,"interval_diff":{"value":1}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":8,"interval_diff":{"value":5}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":3}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Debt is not yours","doc_count":9807,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":146,"interval_diff":{"value":-262}}]}},{"key":"Debt was result of identity theft","doc_count":5829,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":72,"interval_diff":{"value":-200}}]}},{"key":"Debt was paid","doc_count":3967,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":64,"interval_diff":{"value":-83}}]}},{"key":"Debt was already discharged in bankruptcy and is no longer owed","doc_count":768,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":11,"interval_diff":{"value":-16}}]}}]}},{"key":"Managing an account","doc_count":12534,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":79,"interval_diff":{"value":-27}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":106,"interval_diff":{"value":-305}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":411,"interval_diff":{"value":235}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":176,"interval_diff":{"value":-17}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":193,"interval_diff":{"value":-296}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":489,"interval_diff":{"value":-137}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":626,"interval_diff":{"value":-336}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":962,"interval_diff":{"value":-198}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":1160,"interval_diff":{"value":83}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":1077,"interval_diff":{"value":-234}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":1311,"interval_diff":{"value":158}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":1153,"interval_diff":{"value":-29}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":1182,"interval_diff":{"value":4}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1178,"interval_diff":{"value":54}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1124,"interval_diff":{"value":545}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":579,"interval_diff":{"value":281}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":298,"interval_diff":{"value":209}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":89,"interval_diff":{"value":3}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":86,"interval_diff":{"value":46}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":40,"interval_diff":{"value":23}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":17,"interval_diff":{"value":-3}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":20,"interval_diff":{"value":3}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":17,"interval_diff":{"value":-13}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":30,"interval_diff":{"value":9}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":21,"interval_diff":{"value":-5}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":26,"interval_diff":{"value":7}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":19,"interval_diff":{"value":16}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":3,"interval_diff":{"value":3}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":0,"interval_diff":{"value":-2}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":2,"interval_diff":{"value":-2}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":4,"interval_diff":{"value":3}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":1,"interval_diff":{"value":-1}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":2,"interval_diff":{"value":-16}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":18,"interval_diff":{"value":0}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":18,"interval_diff":{"value":1}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":17}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Deposits and withdrawals","doc_count":4412,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":40,"interval_diff":{"value":-112}}]}},{"key":"Problem using a debit or ATM card","doc_count":2154,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":17,"interval_diff":{"value":-45}}]}},{"key":"Banking errors","doc_count":1550,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":9,"interval_diff":{"value":-43}}]}},{"key":"Funds not handled or disbursed as instructed","doc_count":1274,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":9,"interval_diff":{"value":-29}}]}},{"key":"Fee problem","doc_count":1046,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":5,"interval_diff":{"value":-22}}]}},{"key":"Problem accessing account","doc_count":824,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":13,"interval_diff":{"value":-23}}]}},{"key":"Problem making or receiving payments","doc_count":644,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":10,"interval_diff":{"value":-18}}]}},{"key":"Cashing a check","doc_count":461,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":2,"interval_diff":{"value":-10}}]}},{"key":"Deposits or withdrawals","doc_count":112,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1,"interval_diff":{"value":0}}]}},{"key":"Problem with renewal","doc_count":36,"trend_period":{"buckets":[{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":1,"interval_diff":{"value":1}}]}},{"key":"Problem with fees or penalties","doc_count":21,"trend_period":{"buckets":[{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":0,"interval_diff":{"value":-1}}]}}]}},{"key":"Improper use of your report","doc_count":10398,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":53,"interval_diff":{"value":-77}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":130,"interval_diff":{"value":-139}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":269,"interval_diff":{"value":96}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":173,"interval_diff":{"value":10}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":163,"interval_diff":{"value":-92}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":255,"interval_diff":{"value":-128}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":383,"interval_diff":{"value":-312}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":695,"interval_diff":{"value":-179}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":874,"interval_diff":{"value":-46}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":920,"interval_diff":{"value":-430}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":1350,"interval_diff":{"value":81}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":1269,"interval_diff":{"value":346}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":923,"interval_diff":{"value":-278}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1201,"interval_diff":{"value":254}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":947,"interval_diff":{"value":543}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":404,"interval_diff":{"value":281}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":123,"interval_diff":{"value":67}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":56,"interval_diff":{"value":12}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":44,"interval_diff":{"value":6}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":38,"interval_diff":{"value":23}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":15,"interval_diff":{"value":2}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":13,"interval_diff":{"value":-1}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":14,"interval_diff":{"value":-1}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":15,"interval_diff":{"value":2}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":13,"interval_diff":{"value":1}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":12,"interval_diff":{"value":1}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":11,"interval_diff":{"value":7}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":4,"interval_diff":{"value":4}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":0,"interval_diff":{"value":0}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":0,"interval_diff":{"value":0}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":0,"interval_diff":{"value":-3}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":3,"interval_diff":{"value":-4}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":7,"interval_diff":{"value":-10}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":17,"interval_diff":{"value":15}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":2,"interval_diff":{"value":0}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":2}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Credit inquiries on your report that you don't recognize","doc_count":8046,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":85,"interval_diff":{"value":-95}}]}},{"key":"Reporting company used your report improperly","doc_count":2118,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":42,"interval_diff":{"value":-39}}]}},{"key":"Received unsolicited financial product or insurance offers after opting out","doc_count":107,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":2,"interval_diff":{"value":-1}}]}},{"key":"Report provided to employer without your written authorization","doc_count":84,"trend_period":{"buckets":[{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":0,"interval_diff":{"value":-1}}]}}]}}]}},"min_date":{"value":1323795600000,"value_as_string":"2011-12-13T12:00:00-05:00"},"dateRangeArea":{"doc_count":248758,"dateRangeArea":{"buckets":[{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":100},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":141},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":125},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":112},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":57},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":60},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":47},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":56},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":60},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":285},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":377},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":304},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":370},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":270},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":332},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":345},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":714},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":1266},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":1235},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":3496},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":9609},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":21574},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":23364},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":23273},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":24999},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":25920},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":23346},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":23738},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":19086},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":11444},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":7860},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":4273},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":5224},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":9995},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":3720},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1581}]}},"tags":{"doc_count":248758,"tags":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Servicemember","doc_count":20155,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":103,"interval_diff":{"value":-158}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":261,"interval_diff":{"value":-565}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":826,"interval_diff":{"value":436}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":390,"interval_diff":{"value":69}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":321,"interval_diff":{"value":-260}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":581,"interval_diff":{"value":-276}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":857,"interval_diff":{"value":-785}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":1642,"interval_diff":{"value":-277}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":1919,"interval_diff":{"value":-127}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":2046,"interval_diff":{"value":85}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":1961,"interval_diff":{"value":108}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":1853,"interval_diff":{"value":-128}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":1981,"interval_diff":{"value":115}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1866,"interval_diff":{"value":51}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1815,"interval_diff":{"value":938}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":877,"interval_diff":{"value":535}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":342,"interval_diff":{"value":231}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":111,"interval_diff":{"value":-7}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":118,"interval_diff":{"value":76}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":42,"interval_diff":{"value":18}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":24,"interval_diff":{"value":8}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":16,"interval_diff":{"value":-16}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":32,"interval_diff":{"value":-6}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":38,"interval_diff":{"value":11}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":27,"interval_diff":{"value":0}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":27,"interval_diff":{"value":4}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":23,"interval_diff":{"value":17}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":6,"interval_diff":{"value":-1}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":7,"interval_diff":{"value":5}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":2,"interval_diff":{"value":-4}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":6,"interval_diff":{"value":2}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":4,"interval_diff":{"value":-8}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":12,"interval_diff":{"value":9}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":3,"interval_diff":{"value":-7}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":10,"interval_diff":{"value":4}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":6}]}},{"key":"Older American","doc_count":9804,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":35,"interval_diff":{"value":-68}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":103,"interval_diff":{"value":-219}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":322,"interval_diff":{"value":143}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":179,"interval_diff":{"value":-12}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":191,"interval_diff":{"value":-174}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":365,"interval_diff":{"value":-133}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":498,"interval_diff":{"value":-223}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":721,"interval_diff":{"value":-178}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":899,"interval_diff":{"value":-40}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":939,"interval_diff":{"value":-95}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":1034,"interval_diff":{"value":105}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":929,"interval_diff":{"value":-2}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":931,"interval_diff":{"value":-5}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":936,"interval_diff":{"value":-11}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":947,"interval_diff":{"value":497}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":450,"interval_diff":{"value":299}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":151,"interval_diff":{"value":98}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":53,"interval_diff":{"value":20}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":33,"interval_diff":{"value":18}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":15,"interval_diff":{"value":7}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":8,"interval_diff":{"value":-1}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":9,"interval_diff":{"value":0}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":9,"interval_diff":{"value":-3}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":12,"interval_diff":{"value":7}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":5,"interval_diff":{"value":0}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":5,"interval_diff":{"value":-2}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":7,"interval_diff":{"value":5}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":2,"interval_diff":{"value":0}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":2,"interval_diff":{"value":0}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":2,"interval_diff":{"value":-2}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":4,"interval_diff":{"value":3}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":1,"interval_diff":{"value":-3}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":4,"interval_diff":{"value":4}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":0,"interval_diff":{"value":-2}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":2,"interval_diff":{"value":1}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":1}]}},{"key":"Older American, Servicemember","doc_count":3007,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":11,"interval_diff":{"value":-9}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":20,"interval_diff":{"value":-85}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":105,"interval_diff":{"value":46}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":59,"interval_diff":{"value":2}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":57,"interval_diff":{"value":-46}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":103,"interval_diff":{"value":-25}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":128,"interval_diff":{"value":-90}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":218,"interval_diff":{"value":-76}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":294,"interval_diff":{"value":16}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":278,"interval_diff":{"value":-31}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":309,"interval_diff":{"value":-10}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":319,"interval_diff":{"value":20}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":299,"interval_diff":{"value":1}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":298,"interval_diff":{"value":35}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":263,"interval_diff":{"value":124}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":139,"interval_diff":{"value":83}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":56,"interval_diff":{"value":45}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":11,"interval_diff":{"value":-3}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":14,"interval_diff":{"value":11}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":3,"interval_diff":{"value":2}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":1,"interval_diff":{"value":-2}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":3,"interval_diff":{"value":-1}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":4,"interval_diff":{"value":2}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":2,"interval_diff":{"value":0}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":2,"interval_diff":{"value":0}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":2,"interval_diff":{"value":-1}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":3,"interval_diff":{"value":2}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":1,"interval_diff":{"value":1}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":0,"interval_diff":{"value":-1}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":1,"interval_diff":{"value":1}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":0,"interval_diff":{"value":0}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":0,"interval_diff":{"value":-3}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":3,"interval_diff":{"value":2}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":1}]}}]}}}
+export default {"dateRangeBrush":{"doc_count":1660586,"dateRangeBrush":{"buckets":[{"key_as_string":"2011-12-01T00:00:00.000Z","key":1322697600000,"doc_count":2536},{"key_as_string":"2012-01-01T00:00:00.000Z","key":1325376000000,"doc_count":3230},{"key_as_string":"2012-02-01T00:00:00.000Z","key":1328054400000,"doc_count":3509},{"key_as_string":"2012-03-01T00:00:00.000Z","key":1330560000000,"doc_count":6230},{"key_as_string":"2012-04-01T00:00:00.000Z","key":1333238400000,"doc_count":5703},{"key_as_string":"2012-05-01T00:00:00.000Z","key":1335830400000,"doc_count":7617},{"key_as_string":"2012-06-01T00:00:00.000Z","key":1338508800000,"doc_count":7841},{"key_as_string":"2012-07-01T00:00:00.000Z","key":1341100800000,"doc_count":6755},{"key_as_string":"2012-08-01T00:00:00.000Z","key":1343779200000,"doc_count":6877},{"key_as_string":"2012-09-01T00:00:00.000Z","key":1346457600000,"doc_count":5493},{"key_as_string":"2012-10-01T00:00:00.000Z","key":1349049600000,"doc_count":6741},{"key_as_string":"2012-11-01T00:00:00.000Z","key":1351728000000,"doc_count":6139},{"key_as_string":"2012-12-01T00:00:00.000Z","key":1354320000000,"doc_count":6238},{"key_as_string":"2013-01-01T00:00:00.000Z","key":1356998400000,"doc_count":9741},{"key_as_string":"2013-02-01T00:00:00.000Z","key":1359676800000,"doc_count":8349},{"key_as_string":"2013-03-01T00:00:00.000Z","key":1362096000000,"doc_count":8784},{"key_as_string":"2013-04-01T00:00:00.000Z","key":1364774400000,"doc_count":8632},{"key_as_string":"2013-05-01T00:00:00.000Z","key":1367366400000,"doc_count":8170},{"key_as_string":"2013-06-01T00:00:00.000Z","key":1370044800000,"doc_count":8035},{"key_as_string":"2013-07-01T00:00:00.000Z","key":1372636800000,"doc_count":9271},{"key_as_string":"2013-08-01T00:00:00.000Z","key":1375315200000,"doc_count":9565},{"key_as_string":"2013-09-01T00:00:00.000Z","key":1377993600000,"doc_count":9636},{"key_as_string":"2013-10-01T00:00:00.000Z","key":1380585600000,"doc_count":9241},{"key_as_string":"2013-11-01T00:00:00.000Z","key":1383264000000,"doc_count":9319},{"key_as_string":"2013-12-01T00:00:00.000Z","key":1385856000000,"doc_count":9474},{"key_as_string":"2014-01-01T00:00:00.000Z","key":1388534400000,"doc_count":12617},{"key_as_string":"2014-02-01T00:00:00.000Z","key":1391212800000,"doc_count":13048},{"key_as_string":"2014-03-01T00:00:00.000Z","key":1393632000000,"doc_count":13943},{"key_as_string":"2014-04-01T00:00:00.000Z","key":1396310400000,"doc_count":13840},{"key_as_string":"2014-05-01T00:00:00.000Z","key":1398902400000,"doc_count":12167},{"key_as_string":"2014-06-01T00:00:00.000Z","key":1401580800000,"doc_count":12520},{"key_as_string":"2014-07-01T00:00:00.000Z","key":1404172800000,"doc_count":13415},{"key_as_string":"2014-08-01T00:00:00.000Z","key":1406851200000,"doc_count":13186},{"key_as_string":"2014-09-01T00:00:00.000Z","key":1409529600000,"doc_count":12465},{"key_as_string":"2014-10-01T00:00:00.000Z","key":1412121600000,"doc_count":12901},{"key_as_string":"2014-11-01T00:00:00.000Z","key":1414800000000,"doc_count":11257},{"key_as_string":"2014-12-01T00:00:00.000Z","key":1417392000000,"doc_count":11684},{"key_as_string":"2015-01-01T00:00:00.000Z","key":1420070400000,"doc_count":12627},{"key_as_string":"2015-02-01T00:00:00.000Z","key":1422748800000,"doc_count":12680},{"key_as_string":"2015-03-01T00:00:00.000Z","key":1425168000000,"doc_count":14514},{"key_as_string":"2015-04-01T00:00:00.000Z","key":1427846400000,"doc_count":13753},{"key_as_string":"2015-05-01T00:00:00.000Z","key":1430438400000,"doc_count":13682},{"key_as_string":"2015-06-01T00:00:00.000Z","key":1433116800000,"doc_count":14517},{"key_as_string":"2015-07-01T00:00:00.000Z","key":1435708800000,"doc_count":15920},{"key_as_string":"2015-08-01T00:00:00.000Z","key":1438387200000,"doc_count":15766},{"key_as_string":"2015-09-01T00:00:00.000Z","key":1441065600000,"doc_count":14336},{"key_as_string":"2015-10-01T00:00:00.000Z","key":1443657600000,"doc_count":14899},{"key_as_string":"2015-11-01T00:00:00.000Z","key":1446336000000,"doc_count":12897},{"key_as_string":"2015-12-01T00:00:00.000Z","key":1448928000000,"doc_count":12884},{"key_as_string":"2016-01-01T00:00:00.000Z","key":1451606400000,"doc_count":13840},{"key_as_string":"2016-02-01T00:00:00.000Z","key":1454284800000,"doc_count":14140},{"key_as_string":"2016-03-01T00:00:00.000Z","key":1456790400000,"doc_count":16611},{"key_as_string":"2016-04-01T00:00:00.000Z","key":1459468800000,"doc_count":15608},{"key_as_string":"2016-05-01T00:00:00.000Z","key":1462060800000,"doc_count":15517},{"key_as_string":"2016-06-01T00:00:00.000Z","key":1464739200000,"doc_count":16063},{"key_as_string":"2016-07-01T00:00:00.000Z","key":1467331200000,"doc_count":16043},{"key_as_string":"2016-08-01T00:00:00.000Z","key":1470009600000,"doc_count":17694},{"key_as_string":"2016-09-01T00:00:00.000Z","key":1472688000000,"doc_count":17584},{"key_as_string":"2016-10-01T00:00:00.000Z","key":1475280000000,"doc_count":17820},{"key_as_string":"2016-11-01T00:00:00.000Z","key":1477958400000,"doc_count":15207},{"key_as_string":"2016-12-01T00:00:00.000Z","key":1480550400000,"doc_count":15341},{"key_as_string":"2017-01-01T00:00:00.000Z","key":1483228800000,"doc_count":21006},{"key_as_string":"2017-02-01T00:00:00.000Z","key":1485907200000,"doc_count":18110},{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":19762},{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":18544},{"key_as_string":"2017-05-01T00:00:00.000Z","key":1493596800000,"doc_count":19304},{"key_as_string":"2017-06-01T00:00:00.000Z","key":1496275200000,"doc_count":18567},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":20433},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":21402},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":27357},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":20456},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":18990},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":19034},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":23650},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":21978},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":23639},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":24327},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":22339},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":20111},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":20963},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":21726},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":19072},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":21903},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":19053},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":18552},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":18934},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":20206},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":23412},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":22915},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":23850},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":23352},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":25090},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":26059},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":23575},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":25636},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":22657},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":21704},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":26413},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":25097},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":29494},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":34805},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":37146},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":32699},{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":1152}]}},"product":{"doc_count":846111,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":70289,"buckets":[{"key":"Credit reporting, credit repair services, or other personal consumer reports","doc_count":418955,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Credit reporting","doc_count":412529,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":21394,"interval_diff":{"value":-2132}}]}},{"key":"Other personal consumer report","doc_count":5116,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":131,"interval_diff":{"value":27}}]}},{"key":"Credit repair services","doc_count":1309,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":38,"interval_diff":{"value":-2}}]}},{"key":"Conventional home mortgage","doc_count":1,"trend_period":{"buckets":[]}}]},"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":917,"interval_diff":{"value":-20643}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":21560,"interval_diff":{"value":-2108}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":23668,"interval_diff":{"value":2856}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":20812,"interval_diff":{"value":3589}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":17223,"interval_diff":{"value":3622}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":13601,"interval_diff":{"value":-1246}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":14847,"interval_diff":{"value":3539}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":11308,"interval_diff":{"value":-540}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":11848,"interval_diff":{"value":-1364}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":13212,"interval_diff":{"value":1116}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":12096,"interval_diff":{"value":-1425}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":13521,"interval_diff":{"value":515}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":13006,"interval_diff":{"value":1264}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":11742,"interval_diff":{"value":-179}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":11921,"interval_diff":{"value":863}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":11058,"interval_diff":{"value":57}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":11001,"interval_diff":{"value":1634}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":9367,"interval_diff":{"value":853}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":8514,"interval_diff":{"value":149}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":8365,"interval_diff":{"value":-562}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":8927,"interval_diff":{"value":-923}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":9850,"interval_diff":{"value":1447}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":8403,"interval_diff":{"value":-1046}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":9449,"interval_diff":{"value":309}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":9140,"interval_diff":{"value":645}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":8495,"interval_diff":{"value":-980}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":9475,"interval_diff":{"value":-863}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":10338,"interval_diff":{"value":463}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":9875,"interval_diff":{"value":189}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":9686,"interval_diff":{"value":64}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":9622,"interval_diff":{"value":1926}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":7696,"interval_diff":{"value":-204}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":7900,"interval_diff":{"value":-835}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":8735,"interval_diff":{"value":-7360}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":16095,"interval_diff":{"value":7306}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":8789,"interval_diff":{"value":1896}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":6893}]}},{"key":"Debt collection","doc_count":145052,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Other debt","doc_count":42553,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":879,"interval_diff":{"value":-293}}]}},{"key":"Credit card debt","doc_count":31480,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":925,"interval_diff":{"value":-187}}]}},{"key":"I do not know","doc_count":31271,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":877,"interval_diff":{"value":-200}}]}},{"key":"Medical debt","doc_count":23049,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":516,"interval_diff":{"value":-129}}]}},{"key":"Auto debt","doc_count":4734,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":105,"interval_diff":{"value":-53}}]}},{"key":"Payday loan debt","doc_count":4343,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":127,"interval_diff":{"value":8}}]}},{"key":"Mortgage debt","doc_count":3120,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":56,"interval_diff":{"value":-25}}]}},{"key":"Federal student loan debt","doc_count":2359,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":36,"interval_diff":{"value":-6}}]}},{"key":"Private student loan debt","doc_count":2143,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":39,"interval_diff":{"value":-1}}]}}]},"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":64,"interval_diff":{"value":-3444}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":3508,"interval_diff":{"value":-914}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":4422,"interval_diff":{"value":-91}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":4513,"interval_diff":{"value":308}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":4205,"interval_diff":{"value":222}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":3983,"interval_diff":{"value":215}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":3768,"interval_diff":{"value":444}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":3324,"interval_diff":{"value":-202}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":3526,"interval_diff":{"value":-496}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":4022,"interval_diff":{"value":46}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":3976,"interval_diff":{"value":-255}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":4231,"interval_diff":{"value":217}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":4014,"interval_diff":{"value":-37}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":4051,"interval_diff":{"value":-84}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":4135,"interval_diff":{"value":152}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":3983,"interval_diff":{"value":-244}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":4227,"interval_diff":{"value":440}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":3787,"interval_diff":{"value":660}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":3127,"interval_diff":{"value":-132}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":3259,"interval_diff":{"value":-89}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":3348,"interval_diff":{"value":-739}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":4087,"interval_diff":{"value":406}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":3681,"interval_diff":{"value":-732}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":4413,"interval_diff":{"value":414}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":3999,"interval_diff":{"value":-257}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":4256,"interval_diff":{"value":-480}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":4736,"interval_diff":{"value":-21}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":4757,"interval_diff":{"value":-509}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":5266,"interval_diff":{"value":792}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":4474,"interval_diff":{"value":-434}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":4908,"interval_diff":{"value":1024}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":3884,"interval_diff":{"value":320}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":3564,"interval_diff":{"value":-468}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":4032,"interval_diff":{"value":491}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":3541,"interval_diff":{"value":-835}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":4376,"interval_diff":{"value":771}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":3605}]}},{"key":"Credit card or prepaid card","doc_count":76892,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"General-purpose credit card or charge card","doc_count":58770,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1715,"interval_diff":{"value":-447}}]}},{"key":"Store credit card","doc_count":12346,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":305,"interval_diff":{"value":-143}}]}},{"key":"General-purpose prepaid card","doc_count":2993,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":90,"interval_diff":{"value":-121}}]}},{"key":"Government benefit card","doc_count":2173,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":258,"interval_diff":{"value":-74}}]}},{"key":"Payroll card","doc_count":331,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":8,"interval_diff":{"value":-15}}]}},{"key":"Gift card","doc_count":270,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":5,"interval_diff":{"value":-1}}]}},{"key":"Student prepaid card","doc_count":9,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1,"interval_diff":{"value":1}}]}}]},"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":32,"interval_diff":{"value":-2348}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":2380,"interval_diff":{"value":-787}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":3167,"interval_diff":{"value":-5}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":3172,"interval_diff":{"value":738}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":2434,"interval_diff":{"value":131}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":2303,"interval_diff":{"value":-100}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":2403,"interval_diff":{"value":255}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":2148,"interval_diff":{"value":-29}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":2177,"interval_diff":{"value":-181}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":2358,"interval_diff":{"value":220}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":2138,"interval_diff":{"value":-173}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2311,"interval_diff":{"value":77}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":2234,"interval_diff":{"value":78}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":2156,"interval_diff":{"value":15}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":2141,"interval_diff":{"value":-9}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":2150,"interval_diff":{"value":-77}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":2227,"interval_diff":{"value":338}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":1889,"interval_diff":{"value":-17}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":1906,"interval_diff":{"value":88}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":1818,"interval_diff":{"value":-15}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":1833,"interval_diff":{"value":-298}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":2131,"interval_diff":{"value":312}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":1819,"interval_diff":{"value":-309}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":2128,"interval_diff":{"value":138}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":1990,"interval_diff":{"value":122}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":1868,"interval_diff":{"value":-260}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":2128,"interval_diff":{"value":-200}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":2328,"interval_diff":{"value":198}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":2130,"interval_diff":{"value":194}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":1936,"interval_diff":{"value":-204}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":2140,"interval_diff":{"value":302}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":1838,"interval_diff":{"value":-16}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":1854,"interval_diff":{"value":-28}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":1882,"interval_diff":{"value":10}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":1872,"interval_diff":{"value":-30}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":1902,"interval_diff":{"value":333}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":1569}]}},{"key":"Mortgage","doc_count":71790,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Conventional home mortgage","doc_count":42482,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":901,"interval_diff":{"value":-317}}]}},{"key":"FHA mortgage","doc_count":10308,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":207,"interval_diff":{"value":-90}}]}},{"key":"Other type of mortgage","doc_count":9399,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":122,"interval_diff":{"value":6}}]}},{"key":"Home equity loan or line of credit (HELOC)","doc_count":4687,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":103,"interval_diff":{"value":-19}}]}},{"key":"VA mortgage","doc_count":3878,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":101,"interval_diff":{"value":-49}}]}},{"key":"Reverse mortgage","doc_count":1036,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":16,"interval_diff":{"value":-4}}]}}]},"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":12,"interval_diff":{"value":-1380}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1392,"interval_diff":{"value":-514}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1906,"interval_diff":{"value":-295}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":2201,"interval_diff":{"value":67}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":2134,"interval_diff":{"value":309}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":1825,"interval_diff":{"value":-10}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":1835,"interval_diff":{"value":148}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":1687,"interval_diff":{"value":-30}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":1717,"interval_diff":{"value":-354}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":2071,"interval_diff":{"value":215}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":1856,"interval_diff":{"value":-179}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2035,"interval_diff":{"value":23}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":2012,"interval_diff":{"value":154}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":1858,"interval_diff":{"value":-87}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1945,"interval_diff":{"value":-48}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1993,"interval_diff":{"value":-12}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":2005,"interval_diff":{"value":256}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":1749,"interval_diff":{"value":-31}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":1780,"interval_diff":{"value":162}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":1618,"interval_diff":{"value":-16}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":1634,"interval_diff":{"value":-332}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":1966,"interval_diff":{"value":186}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":1780,"interval_diff":{"value":-305}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":2085,"interval_diff":{"value":69}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":2016,"interval_diff":{"value":132}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":1884,"interval_diff":{"value":-337}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":2221,"interval_diff":{"value":-504}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":2725,"interval_diff":{"value":303}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":2422,"interval_diff":{"value":323}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":2099,"interval_diff":{"value":-26}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":2125,"interval_diff":{"value":90}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":2035,"interval_diff":{"value":-134}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":2169,"interval_diff":{"value":-135}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":2304,"interval_diff":{"value":39}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":2265,"interval_diff":{"value":-183}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":2448,"interval_diff":{"value":467}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":1981}]}},{"key":"Checking or savings account","doc_count":63133,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Checking account","doc_count":47811,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1516,"interval_diff":{"value":13}}]}},{"key":"Other banking product or service","doc_count":9113,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":220,"interval_diff":{"value":23}}]}},{"key":"Savings account","doc_count":4305,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":112,"interval_diff":{"value":-40}}]}},{"key":"CD (Certificate of Deposit)","doc_count":1863,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":52,"interval_diff":{"value":-6}}]}},{"key":"Personal line of credit","doc_count":41,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1,"interval_diff":{"value":1}}]}}]},"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":57,"interval_diff":{"value":-1844}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1901,"interval_diff":{"value":-10}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1911,"interval_diff":{"value":-109}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":2020,"interval_diff":{"value":338}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":1682,"interval_diff":{"value":-43}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":1725,"interval_diff":{"value":-120}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":1845,"interval_diff":{"value":171}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":1674,"interval_diff":{"value":-44}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":1718,"interval_diff":{"value":-218}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":1936,"interval_diff":{"value":177}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":1759,"interval_diff":{"value":-303}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2062,"interval_diff":{"value":218}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":1844,"interval_diff":{"value":29}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":1815,"interval_diff":{"value":-61}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1876,"interval_diff":{"value":58}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1818,"interval_diff":{"value":-2}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":1820,"interval_diff":{"value":197}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":1623,"interval_diff":{"value":-172}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":1795,"interval_diff":{"value":-6}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":1801,"interval_diff":{"value":84}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":1717,"interval_diff":{"value":-187}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":1904,"interval_diff":{"value":235}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":1669,"interval_diff":{"value":-26}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":1695,"interval_diff":{"value":-119}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":1814,"interval_diff":{"value":59}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":1755,"interval_diff":{"value":-78}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":1833,"interval_diff":{"value":-78}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":1911,"interval_diff":{"value":149}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":1762,"interval_diff":{"value":151}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":1611,"interval_diff":{"value":-128}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":1739,"interval_diff":{"value":326}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":1413,"interval_diff":{"value":-181}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":1594,"interval_diff":{"value":127}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":1467,"interval_diff":{"value":-107}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":1574,"interval_diff":{"value":0}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":1574,"interval_diff":{"value":155}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":1419}]}}]}},"max_date":{"value":1593882000000,"value_as_string":"2020-07-04T12:00:00-05:00"},"issue":{"doc_count":846111,"issue":{"doc_count_error_upper_bound":5633,"sum_other_doc_count":330938,"buckets":[{"key":"Incorrect information on your report","doc_count":269374,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":639,"interval_diff":{"value":-14700}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":15339,"interval_diff":{"value":-1524}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":16863,"interval_diff":{"value":1706}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":15157,"interval_diff":{"value":2698}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":12459,"interval_diff":{"value":2828}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":9631,"interval_diff":{"value":-698}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":10329,"interval_diff":{"value":2789}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":7540,"interval_diff":{"value":-621}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":8161,"interval_diff":{"value":-701}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":8862,"interval_diff":{"value":443}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":8419,"interval_diff":{"value":-492}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":8911,"interval_diff":{"value":598}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":8313,"interval_diff":{"value":671}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":7642,"interval_diff":{"value":-37}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":7679,"interval_diff":{"value":706}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":6973,"interval_diff":{"value":-47}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":7020,"interval_diff":{"value":1193}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":5827,"interval_diff":{"value":224}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":5603,"interval_diff":{"value":424}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":5179,"interval_diff":{"value":-670}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":5849,"interval_diff":{"value":-502}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":6351,"interval_diff":{"value":931}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":5420,"interval_diff":{"value":-672}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":6092,"interval_diff":{"value":328}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":5764,"interval_diff":{"value":418}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":5346,"interval_diff":{"value":-632}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":5978,"interval_diff":{"value":-481}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":6459,"interval_diff":{"value":363}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":6096,"interval_diff":{"value":342}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":5754,"interval_diff":{"value":-202}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":5956,"interval_diff":{"value":1279}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":4677,"interval_diff":{"value":201}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":4476,"interval_diff":{"value":-431}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":4907,"interval_diff":{"value":416}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":4491,"interval_diff":{"value":-745}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":5236,"interval_diff":{"value":1260}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":3976}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Information belongs to someone else","doc_count":156308,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":11563,"interval_diff":{"value":-706}}]}},{"key":"Account status incorrect","doc_count":39224,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1157,"interval_diff":{"value":-357}}]}},{"key":"Account information incorrect","doc_count":36552,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1315,"interval_diff":{"value":-290}}]}},{"key":"Personal information incorrect","doc_count":12286,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":568,"interval_diff":{"value":-32}}]}},{"key":"Old information reappears or never goes away","doc_count":9033,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":245,"interval_diff":{"value":-67}}]}},{"key":"Public record information inaccurate","doc_count":8972,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":183,"interval_diff":{"value":-51}}]}},{"key":"Information is missing that should be on the report","doc_count":4742,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":241,"interval_diff":{"value":15}}]}},{"key":"Information is incorrect","doc_count":677,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":20,"interval_diff":{"value":4}}]}},{"key":"Information that should be on the report is missing","doc_count":112,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":3,"interval_diff":{"value":-2}}]}},{"key":"Incorrect information on your report","doc_count":1,"trend_period":{"buckets":[]}}]}},{"key":"Problem with a credit reporting company's investigation into an existing problem","doc_count":93358,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":218,"interval_diff":{"value":-4413}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":4631,"interval_diff":{"value":-699}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":5330,"interval_diff":{"value":938}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":4392,"interval_diff":{"value":888}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":3504,"interval_diff":{"value":710}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":2794,"interval_diff":{"value":-489}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":3283,"interval_diff":{"value":462}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":2821,"interval_diff":{"value":203}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":2618,"interval_diff":{"value":-517}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":3135,"interval_diff":{"value":664}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":2471,"interval_diff":{"value":-381}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2852,"interval_diff":{"value":-142}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":2994,"interval_diff":{"value":107}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":2887,"interval_diff":{"value":195}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":2692,"interval_diff":{"value":39}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":2653,"interval_diff":{"value":79}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":2574,"interval_diff":{"value":275}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":2299,"interval_diff":{"value":418}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":1881,"interval_diff":{"value":-222}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":2103,"interval_diff":{"value":178}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":1925,"interval_diff":{"value":-100}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":2025,"interval_diff":{"value":142}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":1883,"interval_diff":{"value":-277}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":2160,"interval_diff":{"value":3}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":2157,"interval_diff":{"value":-70}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":2227,"interval_diff":{"value":-90}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":2317,"interval_diff":{"value":-100}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":2417,"interval_diff":{"value":217}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":2200,"interval_diff":{"value":-70}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":2270,"interval_diff":{"value":111}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":2159,"interval_diff":{"value":541}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":1618,"interval_diff":{"value":-248}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":1866,"interval_diff":{"value":-199}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":2065,"interval_diff":{"value":38}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":2027,"interval_diff":{"value":-244}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":2271,"interval_diff":{"value":632}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":1639}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Their investigation did not fix an error on your report","doc_count":65070,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":2364,"interval_diff":{"value":-325}}]}},{"key":"Investigation took more than 30 days","doc_count":9055,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":904,"interval_diff":{"value":-327}}]}},{"key":"Was not notified of investigation status or results","doc_count":8203,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":957,"interval_diff":{"value":7}}]}},{"key":"Difficulty submitting a dispute or getting information about a dispute over the phone","doc_count":6179,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":228,"interval_diff":{"value":-42}}]}},{"key":"Problem with personal statement of dispute","doc_count":4418,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":161,"interval_diff":{"value":0}}]}}]}},{"key":"Attempts to collect debt not owed","doc_count":67216,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":47,"interval_diff":{"value":-1900}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1947,"interval_diff":{"value":-416}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":2363,"interval_diff":{"value":-86}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":2449,"interval_diff":{"value":130}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":2319,"interval_diff":{"value":379}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":1940,"interval_diff":{"value":219}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":1721,"interval_diff":{"value":-6}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":1727,"interval_diff":{"value":-151}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":1878,"interval_diff":{"value":-103}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":1981,"interval_diff":{"value":12}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":1969,"interval_diff":{"value":-75}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2044,"interval_diff":{"value":113}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":1931,"interval_diff":{"value":-97}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":2028,"interval_diff":{"value":40}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1988,"interval_diff":{"value":37}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1951,"interval_diff":{"value":-75}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":2026,"interval_diff":{"value":343}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":1683,"interval_diff":{"value":99}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":1584,"interval_diff":{"value":37}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":1547,"interval_diff":{"value":-21}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":1568,"interval_diff":{"value":-274}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":1842,"interval_diff":{"value":190}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":1652,"interval_diff":{"value":-333}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":1985,"interval_diff":{"value":282}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":1703,"interval_diff":{"value":-244}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":1947,"interval_diff":{"value":-49}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":1996,"interval_diff":{"value":-97}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":2093,"interval_diff":{"value":-174}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":2267,"interval_diff":{"value":406}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":1861,"interval_diff":{"value":-174}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":2035,"interval_diff":{"value":510}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":1525,"interval_diff":{"value":8}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":1517,"interval_diff":{"value":-113}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":1630,"interval_diff":{"value":171}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":1459,"interval_diff":{"value":-175}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":1634,"interval_diff":{"value":255}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":1379}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Debt is not yours","doc_count":34471,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":955,"interval_diff":{"value":-123}}]}},{"key":"Debt was result of identity theft","doc_count":16625,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":637,"interval_diff":{"value":-131}}]}},{"key":"Debt was paid","doc_count":13434,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":306,"interval_diff":{"value":-140}}]}},{"key":"Debt was already discharged in bankruptcy and is no longer owed","doc_count":2686,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":71,"interval_diff":{"value":-6}}]}}]}},{"key":"Improper use of your report","doc_count":45340,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":38,"interval_diff":{"value":-1198}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1236,"interval_diff":{"value":-50}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1286,"interval_diff":{"value":255}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":1031,"interval_diff":{"value":51}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":980,"interval_diff":{"value":118}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":862,"interval_diff":{"value":4}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":858,"interval_diff":{"value":124}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":734,"interval_diff":{"value":-74}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":808,"interval_diff":{"value":-137}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":945,"interval_diff":{"value":16}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":929,"interval_diff":{"value":-425}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":1354,"interval_diff":{"value":82}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":1272,"interval_diff":{"value":347}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":925,"interval_diff":{"value":-291}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1216,"interval_diff":{"value":203}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1013,"interval_diff":{"value":-53}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":1066,"interval_diff":{"value":153}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":913,"interval_diff":{"value":49}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":864,"interval_diff":{"value":23}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":841,"interval_diff":{"value":-93}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":934,"interval_diff":{"value":-193}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":1127,"interval_diff":{"value":208}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":919,"interval_diff":{"value":-214}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":1133,"interval_diff":{"value":32}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":1101,"interval_diff":{"value":194}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":907,"interval_diff":{"value":-163}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":1070,"interval_diff":{"value":-241}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":1311,"interval_diff":{"value":-97}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":1408,"interval_diff":{"value":-122}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":1530,"interval_diff":{"value":138}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":1392,"interval_diff":{"value":175}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":1217,"interval_diff":{"value":-135}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":1352,"interval_diff":{"value":33}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":1319,"interval_diff":{"value":-5867}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":7186,"interval_diff":{"value":6084}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":1102,"interval_diff":{"value":-59}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":1161}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Credit inquiries on your report that you don't recognize","doc_count":30086,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":688,"interval_diff":{"value":-97}}]}},{"key":"Reporting company used your report improperly","doc_count":14270,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":523,"interval_diff":{"value":47}}]}},{"key":"Received unsolicited financial product or insurance offers after opting out","doc_count":427,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":11,"interval_diff":{"value":2}}]}},{"key":"Report provided to employer without your written authorization","doc_count":425,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":10,"interval_diff":{"value":7}}]}}]}},{"key":"Managing an account","doc_count":39884,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":51,"interval_diff":{"value":-1238}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1289,"interval_diff":{"value":64}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1225,"interval_diff":{"value":-42}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":1267,"interval_diff":{"value":221}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":1046,"interval_diff":{"value":-19}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":1065,"interval_diff":{"value":-98}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":1163,"interval_diff":{"value":94}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":1069,"interval_diff":{"value":-31}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":1100,"interval_diff":{"value":-142}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":1242,"interval_diff":{"value":152}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":1090,"interval_diff":{"value":-230}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":1320,"interval_diff":{"value":155}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":1165,"interval_diff":{"value":-27}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":1192,"interval_diff":{"value":-8}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1200,"interval_diff":{"value":4}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1196,"interval_diff":{"value":17}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":1179,"interval_diff":{"value":143}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":1036,"interval_diff":{"value":-57}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":1093,"interval_diff":{"value":-50}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":1143,"interval_diff":{"value":59}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":1084,"interval_diff":{"value":-77}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":1161,"interval_diff":{"value":89}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":1072,"interval_diff":{"value":7}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":1065,"interval_diff":{"value":-115}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":1180,"interval_diff":{"value":54}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":1126,"interval_diff":{"value":-66}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":1192,"interval_diff":{"value":-21}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":1213,"interval_diff":{"value":116}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":1097,"interval_diff":{"value":107}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":990,"interval_diff":{"value":-103}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":1093,"interval_diff":{"value":223}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":870,"interval_diff":{"value":-96}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":966,"interval_diff":{"value":54}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":912,"interval_diff":{"value":-42}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":954,"interval_diff":{"value":2}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":952,"interval_diff":{"value":126}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":826}]},"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Deposits and withdrawals","doc_count":13703,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":407,"interval_diff":{"value":-18}}]}},{"key":"Problem using a debit or ATM card","doc_count":6775,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":153,"interval_diff":{"value":-45}}]}},{"key":"Banking errors","doc_count":5058,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":131,"interval_diff":{"value":-35}}]}},{"key":"Funds not handled or disbursed as instructed","doc_count":3813,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":132,"interval_diff":{"value":11}}]}},{"key":"Fee problem","doc_count":3293,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":56,"interval_diff":{"value":-2}}]}},{"key":"Problem accessing account","doc_count":2920,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":243,"interval_diff":{"value":95}}]}},{"key":"Problem making or receiving payments","doc_count":2296,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":155,"interval_diff":{"value":63}}]}},{"key":"Cashing a check","doc_count":1454,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":31,"interval_diff":{"value":-10}}]}},{"key":"Deposits or withdrawals","doc_count":377,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":9,"interval_diff":{"value":-1}}]}},{"key":"Problem with fees or penalties","doc_count":106,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":2,"interval_diff":{"value":-2}}]}},{"key":"Problem with renewal","doc_count":89,"trend_period":{"buckets":[{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":0,"interval_diff":{"value":-2}}]}}]}}]}},"min_date":{"value":1322758800000,"value_as_string":"2011-12-01T12:00:00-05:00"},"dateRangeArea":{"doc_count":846111,"dateRangeArea":{"buckets":[{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":17363},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":21402},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":27357},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":20456},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":18990},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":19034},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":23650},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":21978},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":23639},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":24327},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":22339},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":20111},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":20963},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":21726},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":19072},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":21903},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":19053},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":18552},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":18934},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":20206},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":23412},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":22915},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":23850},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":23352},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":25090},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":26059},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":23575},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":25636},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":22657},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":21704},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":26413},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":25097},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":29494},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":34805},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":37146},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":32699},{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":1152}]}},"tags":{"doc_count":846111,"tags":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Servicemember","doc_count":72491,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":66,"interval_diff":{"value":-2061}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":2127,"interval_diff":{"value":-251}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":2378,"interval_diff":{"value":-75}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":2453,"interval_diff":{"value":368}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":2085,"interval_diff":{"value":124}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":1961,"interval_diff":{"value":-84}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":2045,"interval_diff":{"value":320}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":1725,"interval_diff":{"value":-206}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":1931,"interval_diff":{"value":-155}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":2086,"interval_diff":{"value":-6}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":2092,"interval_diff":{"value":91}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":2001,"interval_diff":{"value":115}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":1886,"interval_diff":{"value":-120}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":2006,"interval_diff":{"value":69}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":1937,"interval_diff":{"value":-34}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1971,"interval_diff":{"value":-188}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":2159,"interval_diff":{"value":240}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":1919,"interval_diff":{"value":251}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":1668,"interval_diff":{"value":20}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":1648,"interval_diff":{"value":-95}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":1743,"interval_diff":{"value":-170}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":1913,"interval_diff":{"value":206}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":1707,"interval_diff":{"value":-470}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":2177,"interval_diff":{"value":208}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":1969,"interval_diff":{"value":100}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":1869,"interval_diff":{"value":-177}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":2046,"interval_diff":{"value":-1}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":2047,"interval_diff":{"value":-241}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":2288,"interval_diff":{"value":-7}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":2295,"interval_diff":{"value":87}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":2208,"interval_diff":{"value":342}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":1866,"interval_diff":{"value":-90}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":1956,"interval_diff":{"value":-88}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":2044,"interval_diff":{"value":-400}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":2444,"interval_diff":{"value":346}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":2098,"interval_diff":{"value":421}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":1677}]}},{"key":"Older American","doc_count":27082,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":13,"interval_diff":{"value":-846}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":859,"interval_diff":{"value":-199}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1058,"interval_diff":{"value":18}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":1040,"interval_diff":{"value":-59}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":1099,"interval_diff":{"value":104}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":995,"interval_diff":{"value":66}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":929,"interval_diff":{"value":114}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":815,"interval_diff":{"value":-10}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":825,"interval_diff":{"value":-134}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":959,"interval_diff":{"value":11}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":948,"interval_diff":{"value":-90}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":1038,"interval_diff":{"value":108}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":930,"interval_diff":{"value":-1}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":931,"interval_diff":{"value":-24}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":955,"interval_diff":{"value":-52}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":1007,"interval_diff":{"value":6}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":1001,"interval_diff":{"value":224}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":777,"interval_diff":{"value":83}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":694,"interval_diff":{"value":131}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":563,"interval_diff":{"value":18}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":545,"interval_diff":{"value":-49}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":594,"interval_diff":{"value":58}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":536,"interval_diff":{"value":-82}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":618,"interval_diff":{"value":45}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":573,"interval_diff":{"value":21}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":552,"interval_diff":{"value":-45}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":597,"interval_diff":{"value":87}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":510,"interval_diff":{"value":-81}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":591,"interval_diff":{"value":36}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":555,"interval_diff":{"value":-31}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":586,"interval_diff":{"value":106}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":480,"interval_diff":{"value":-28}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":508,"interval_diff":{"value":-135}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":643,"interval_diff":{"value":-34}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":677,"interval_diff":{"value":72}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":605,"interval_diff":{"value":129}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":476}]}},{"key":"Older American, Servicemember","doc_count":9098,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":2,"interval_diff":{"value":-205}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":207,"interval_diff":{"value":-90}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":297,"interval_diff":{"value":23}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":274,"interval_diff":{"value":-33}},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":307,"interval_diff":{"value":-20}},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":327,"interval_diff":{"value":8}},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":319,"interval_diff":{"value":73}},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":246,"interval_diff":{"value":-23}},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":269,"interval_diff":{"value":-68}},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":337,"interval_diff":{"value":45}},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":292,"interval_diff":{"value":-32}},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":324,"interval_diff":{"value":-2}},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":326,"interval_diff":{"value":14}},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":312,"interval_diff":{"value":-3}},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":315,"interval_diff":{"value":16}},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":299,"interval_diff":{"value":7}},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":292,"interval_diff":{"value":-8}},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":300,"interval_diff":{"value":98}},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":202,"interval_diff":{"value":2}},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":200,"interval_diff":{"value":30}},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":170,"interval_diff":{"value":-41}},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":211,"interval_diff":{"value":-14}},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":225,"interval_diff":{"value":6}},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":219,"interval_diff":{"value":-10}},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":229,"interval_diff":{"value":26}},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":203,"interval_diff":{"value":-3}},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":206,"interval_diff":{"value":-11}},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":217,"interval_diff":{"value":-3}},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":220,"interval_diff":{"value":20}},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":200,"interval_diff":{"value":0}},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":200,"interval_diff":{"value":-14}},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":214,"interval_diff":{"value":2}},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":212,"interval_diff":{"value":-36}},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":248,"interval_diff":{"value":-10}},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":258,"interval_diff":{"value":26}},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":232,"interval_diff":{"value":45}},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":187}]}}]}}}
diff --git a/src/reducers/__fixtures__/trendsAggsDupeResults.jsx b/src/reducers/__fixtures__/trendsAggsDupeResults.jsx
index 3d92a5547..90c485824 100644
--- a/src/reducers/__fixtures__/trendsAggsDupeResults.jsx
+++ b/src/reducers/__fixtures__/trendsAggsDupeResults.jsx
@@ -3,6 +3,7 @@ export default {
     chartType: 'line',
     colorMap: {
       Complaints: '#ADDC91',
+      Other: '#a2a3a4',
       'All other products': '#a2a3a4',
       'All other companies': '#a2a3a4',
       'All other values': '#a2a3a4'
@@ -11,11 +12,16 @@ export default {
     expandedTrends: [],
     filterNames: [
       'Credit reporting, credit repair services, or other personal consumer reports',
-      'Mortgage',
       'Debt collection',
+      'Credit card or prepaid card',
+      'Mortgage',
+      'Checking or savings account',
       'Incorrect information on your report',
-      'Incorrect information on credit report',
-      'Problem with a credit reporting company\'s investigation into an existing problem'
+      'Problem with a credit reporting company\'s investigation into an existing problem',
+      'Attempts to collect debt not owed',
+      'Improper use of your report',
+      'Managing an account',
+      'Incorrect information on credit report'
     ],
     focus: '',
     isLoading: false,
@@ -1167,7 +1173,8 @@ export default {
           value: 436241,
           parent: false,
           visible: true,
-          width: 0.5
+          width: 0.5,
+          pctChange: null
         },
         {
           hasChildren: false,
@@ -1222,7 +1229,8 @@ export default {
           value: 304721,
           parent: false,
           visible: true,
-          width: 0.5
+          width: 0.5,
+          pctChange: null
         },
         {
           hasChildren: false,
@@ -1354,7 +1362,8 @@ export default {
           value: 300401,
           parent: false,
           visible: true,
-          width: 0.5
+          width: 0.5,
+          pctChange: null
         },
         {
           hasChildren: false,
@@ -1552,7 +1561,8 @@ export default {
           value: 140432,
           parent: false,
           visible: true,
-          width: 0.5
+          width: 0.5,
+          pctChange: null
         },
         {
           hasChildren: false,
@@ -1563,7 +1573,8 @@ export default {
           value: 89190,
           parent: false,
           visible: true,
-          width: 0.5
+          width: 0.5,
+          pctChange: null
         }
       ],
       tags: [
diff --git a/src/reducers/__fixtures__/trendsFocusAggs.jsx b/src/reducers/__fixtures__/trendsFocusAggs.jsx
index 6523822cd..b51c959d9 100644
--- a/src/reducers/__fixtures__/trendsFocusAggs.jsx
+++ b/src/reducers/__fixtures__/trendsFocusAggs.jsx
@@ -1,3 +1,791 @@
-export const trendsFocusAggs = { "dateRangeBrush": { "doc_count": 252147, "dateRangeBrush": { "buckets": [ { "key_as_string": "2020-02-01T00:00:00.000Z", "key": 1580515200000, "doc_count": 9631 }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 12463 }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 15459 }, { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 5095 } ] } }, "product": { "doc_count": 27325, "product": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 50, "buckets": [ { "key": "Credit reporting, credit repair services, or other personal consumer reports", "doc_count": 26839, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 5005, "interval_diff": { "value": -10182 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 15187, "interval_diff": { "value": 8540 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 6647 } ] } }, { "key": "Credit card or prepaid card", "doc_count": 182, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 29, "interval_diff": { "value": -77 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 106, "interval_diff": { "value": 59 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 47 } ] } }, { "key": "Vehicle loan or lease", "doc_count": 101, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 22, "interval_diff": { "value": -32 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 54, "interval_diff": { "value": 29 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 25 } ] } }, { "key": "Mortgage", "doc_count": 91, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 21, "interval_diff": { "value": -25 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 46, "interval_diff": { "value": 22 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 24 } ] } }, { "key": "Student loan", "doc_count": 62, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 13, "interval_diff": { "value": -21 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 34, "interval_diff": { "value": 19 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 15 } ] } } ] } }, "max_date": { "value": 1589821200000, "value_as_string": "2020-05-18T12:00:00-05:00" }, "issue": { "doc_count": 27325, "issue": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Incorrect information on your report", "doc_count": 27325, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 5095, "interval_diff": { "value": -10364 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 15459, "interval_diff": { "value": 8688 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 6771 } ] } } ] } }, "min_date": { "value": 1322758800000, "value_as_string": "2011-12-01T12:00:00-05:00" }, "dateRangeArea": { "doc_count": 27325, "dateRangeArea": { "buckets": [ { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 6771 }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 15459 }, { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 5095 } ] } }, "sub-issue": { "doc_count": 27325, "sub-issue": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 789, "buckets": [ { "key": "Information belongs to someone else", "doc_count": 20320, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 3899, "interval_diff": { "value": -7582 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 11481, "interval_diff": { "value": 6541 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 4940 } ] } }, { "key": "Account status incorrect", "doc_count": 2532, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 350, "interval_diff": { "value": -1013 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1363, "interval_diff": { "value": 544 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 819 } ] } }, { "key": "Account information incorrect", "doc_count": 2272, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 464, "interval_diff": { "value": -864 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 1328, "interval_diff": { "value": 848 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 480 } ] } }, { "key": "Personal information incorrect", "doc_count": 852, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 150, "interval_diff": { "value": -357 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 507, "interval_diff": { "value": 312 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 195 } ] } }, { "key": "Old information reappears or never goes away", "doc_count": 469, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 72, "interval_diff": { "value": -206 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 278, "interval_diff": { "value": 159 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 119 } ] } } ] } }, "tags": { "doc_count": 27325, "tags": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "Servicemember", "doc_count": 1152, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 200, "interval_diff": { "value": -467 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 667, "interval_diff": { "value": 382 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 285 } ] } }, { "key": "Older American", "doc_count": 280, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 46, "interval_diff": { "value": -113 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 159, "interval_diff": { "value": 84 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 75 } ] } }, { "key": "Older American, Servicemember", "doc_count": 47, "trend_period": { "buckets": [ { "key_as_string": "2020-05-01T00:00:00.000Z", "key": 1588291200000, "doc_count": 8, "interval_diff": { "value": -26 } }, { "key_as_string": "2020-04-01T00:00:00.000Z", "key": 1585699200000, "doc_count": 34, "interval_diff": { "value": 29 } }, { "key_as_string": "2020-03-01T00:00:00.000Z", "key": 1583020800000, "doc_count": 5 } ] } } ] } } }
+export const trendsFocusAggs = {"sub-product":{"doc_count":11694,"sub-product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":695,"buckets":[{"key":"Credit card debt","doc_count":2992,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":26,"interval_diff":{"value":-899}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":925,"interval_diff":{"value":-187}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1112,"interval_diff":{"value":183}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":929}]}},{"key":"Other debt","doc_count":2957,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":22,"interval_diff":{"value":-857}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":879,"interval_diff":{"value":-293}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1172,"interval_diff":{"value":288}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":884}]}},{"key":"I do not know","doc_count":2937,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":7,"interval_diff":{"value":-870}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":877,"interval_diff":{"value":-200}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1077,"interval_diff":{"value":101}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":976}]}},{"key":"Medical debt","doc_count":1732,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":8,"interval_diff":{"value":-508}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":516,"interval_diff":{"value":-129}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":645,"interval_diff":{"value":82}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":563}]}},{"key":"Auto debt","doc_count":381,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":1,"interval_diff":{"value":-104}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":105,"interval_diff":{"value":-53}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":158,"interval_diff":{"value":41}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":117}]}}]}},"dateRangeBrush":{"doc_count":300401,"dateRangeBrush":{"buckets":[{"key_as_string":"2013-07-01T00:00:00.000Z","key":1372636800000,"doc_count":900},{"key_as_string":"2013-08-01T00:00:00.000Z","key":1375315200000,"doc_count":1494},{"key_as_string":"2013-09-01T00:00:00.000Z","key":1377993600000,"doc_count":2003},{"key_as_string":"2013-10-01T00:00:00.000Z","key":1380585600000,"doc_count":1793},{"key_as_string":"2013-11-01T00:00:00.000Z","key":1383264000000,"doc_count":2448},{"key_as_string":"2013-12-01T00:00:00.000Z","key":1385856000000,"doc_count":2431},{"key_as_string":"2014-01-01T00:00:00.000Z","key":1388534400000,"doc_count":3268},{"key_as_string":"2014-02-01T00:00:00.000Z","key":1391212800000,"doc_count":3370},{"key_as_string":"2014-03-01T00:00:00.000Z","key":1393632000000,"doc_count":3590},{"key_as_string":"2014-04-01T00:00:00.000Z","key":1396310400000,"doc_count":3695},{"key_as_string":"2014-05-01T00:00:00.000Z","key":1398902400000,"doc_count":3204},{"key_as_string":"2014-06-01T00:00:00.000Z","key":1401580800000,"doc_count":3397},{"key_as_string":"2014-07-01T00:00:00.000Z","key":1404172800000,"doc_count":3480},{"key_as_string":"2014-08-01T00:00:00.000Z","key":1406851200000,"doc_count":3233},{"key_as_string":"2014-09-01T00:00:00.000Z","key":1409529600000,"doc_count":2890},{"key_as_string":"2014-10-01T00:00:00.000Z","key":1412121600000,"doc_count":3222},{"key_as_string":"2014-11-01T00:00:00.000Z","key":1414800000000,"doc_count":2816},{"key_as_string":"2014-12-01T00:00:00.000Z","key":1417392000000,"doc_count":2974},{"key_as_string":"2015-01-01T00:00:00.000Z","key":1420070400000,"doc_count":3256},{"key_as_string":"2015-02-01T00:00:00.000Z","key":1422748800000,"doc_count":3412},{"key_as_string":"2015-03-01T00:00:00.000Z","key":1425168000000,"doc_count":3879},{"key_as_string":"2015-04-01T00:00:00.000Z","key":1427846400000,"doc_count":3368},{"key_as_string":"2015-05-01T00:00:00.000Z","key":1430438400000,"doc_count":3334},{"key_as_string":"2015-06-01T00:00:00.000Z","key":1433116800000,"doc_count":3479},{"key_as_string":"2015-07-01T00:00:00.000Z","key":1435708800000,"doc_count":3782},{"key_as_string":"2015-08-01T00:00:00.000Z","key":1438387200000,"doc_count":3566},{"key_as_string":"2015-09-01T00:00:00.000Z","key":1441065600000,"doc_count":3150},{"key_as_string":"2015-10-01T00:00:00.000Z","key":1443657600000,"doc_count":3015},{"key_as_string":"2015-11-01T00:00:00.000Z","key":1446336000000,"doc_count":2621},{"key_as_string":"2015-12-01T00:00:00.000Z","key":1448928000000,"doc_count":2862},{"key_as_string":"2016-01-01T00:00:00.000Z","key":1451606400000,"doc_count":2924},{"key_as_string":"2016-02-01T00:00:00.000Z","key":1454284800000,"doc_count":3222},{"key_as_string":"2016-03-01T00:00:00.000Z","key":1456790400000,"doc_count":3525},{"key_as_string":"2016-04-01T00:00:00.000Z","key":1459468800000,"doc_count":3243},{"key_as_string":"2016-05-01T00:00:00.000Z","key":1462060800000,"doc_count":3064},{"key_as_string":"2016-06-01T00:00:00.000Z","key":1464739200000,"doc_count":3233},{"key_as_string":"2016-07-01T00:00:00.000Z","key":1467331200000,"doc_count":3020},{"key_as_string":"2016-08-01T00:00:00.000Z","key":1470009600000,"doc_count":4163},{"key_as_string":"2016-09-01T00:00:00.000Z","key":1472688000000,"doc_count":3537},{"key_as_string":"2016-10-01T00:00:00.000Z","key":1475280000000,"doc_count":3579},{"key_as_string":"2016-11-01T00:00:00.000Z","key":1477958400000,"doc_count":3288},{"key_as_string":"2016-12-01T00:00:00.000Z","key":1480550400000,"doc_count":3668},{"key_as_string":"2017-01-01T00:00:00.000Z","key":1483228800000,"doc_count":3730},{"key_as_string":"2017-02-01T00:00:00.000Z","key":1485907200000,"doc_count":3949},{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":4605},{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":4173},{"key_as_string":"2017-05-01T00:00:00.000Z","key":1493596800000,"doc_count":4163},{"key_as_string":"2017-06-01T00:00:00.000Z","key":1496275200000,"doc_count":3713},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":4223},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":4376},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":3541},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":4032},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":3564},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":3884},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":4908},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":4474},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":5266},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":4757},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":4736},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":4256},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":3999},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":4413},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":3681},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":4087},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":3348},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":3259},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":3127},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":3787},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":4227},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":3983},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":4135},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":4051},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":4014},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":4231},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":3976},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":4022},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":3526},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":3324},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":3768},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":3983},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":4205},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":4513},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":4422},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":3508},{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":64}]}},"product":{"doc_count":11694,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Debt collection","doc_count":11694,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":64,"interval_diff":{"value":-3444}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":3508,"interval_diff":{"value":-914}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":4422,"interval_diff":{"value":722}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":3700}]}}]}},"max_date":{"value":1593882000000,"value_as_string":"2020-07-04T12:00:00-05:00"},"issue":{"doc_count":11694,"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":165,"buckets":[{"key":"Attempts to collect debt not owed","doc_count":6337,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":47,"interval_diff":{"value":-1900}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1947,"interval_diff":{"value":-416}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":2363,"interval_diff":{"value":383}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":1980}]}},{"key":"Written notification about debt","doc_count":2549,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":10,"interval_diff":{"value":-677}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":687,"interval_diff":{"value":-338}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1025,"interval_diff":{"value":198}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":827}]}},{"key":"False statements or representation","doc_count":1017,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":1,"interval_diff":{"value":-309}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":310,"interval_diff":{"value":-84}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":394,"interval_diff":{"value":82}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":312}]}},{"key":"Took or threatened to take negative or legal action","doc_count":874,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":4,"interval_diff":{"value":-268}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":272,"interval_diff":{"value":-53}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":325,"interval_diff":{"value":52}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":273}]}},{"key":"Communication tactics","doc_count":752,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":2,"interval_diff":{"value":-229}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":231,"interval_diff":{"value":-31}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":262,"interval_diff":{"value":5}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":257}]}}]}},"min_date":{"value":1322758800000,"value_as_string":"2011-12-01T12:00:00-05:00"},"dateRangeArea":{"doc_count":11694,"dateRangeArea":{"buckets":[{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":3700},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":4422},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":3508},{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":64}]}},"tags":{"doc_count":11694,"tags":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Servicemember","doc_count":1030,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":4,"interval_diff":{"value":-332}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":336,"interval_diff":{"value":6}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":330,"interval_diff":{"value":-30}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":360}]}},{"key":"Older American","doc_count":303,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":2,"interval_diff":{"value":-97}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":99,"interval_diff":{"value":-10}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":109,"interval_diff":{"value":16}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":93}]}},{"key":"Older American, Servicemember","doc_count":68,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":17,"interval_diff":{"value":-8}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":25,"interval_diff":{"value":-1}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":26}]}}]}}}
 
-export const trendsFocusAggsResults = { "activeCall": "", "chartType": "line", "colorMap": { "Information belongs to someone else": "#2cb34a", "Account status incorrect": "#addc91", "Account information incorrect": "#257675", "Personal information incorrect": "#9ec4c3", "Old information reappears or never goes away": "#0072ce", "Complaints": "#ADDC91", "Other": "#a2a3a4" }, "error": false, "expandedTrends": [], "filterNames": [ "Credit reporting, credit repair services, or other personal consumer reports", "Debt collection", "Credit card or prepaid card", "Mortgage", "Checking or savings account", "Incorrect information on your report", "Problem with a credit reporting company's investigation into an existing problem", "Attempts to collect debt not owed", "Managing an account", "Improper use of your report", "Bank account or service", "Incorrect information on credit report" ], "focus": "Incorrect information on your report", "isLoading": false, "lastDate": "2020-05-01T00:00:00.000Z", "lens": "Issue", "results": { "dateRangeArea": [ { "name": "Other", "value": 218, "date": new Date( "2020-03-01T00:00:00.000Z" ) }, { "name": "Other", "value": 502, "date": new Date( "2020-04-01T00:00:00.000Z" ) }, { "name": "Other", "value": 160, "date": new Date( "2020-05-01T00:00:00.000Z" ) }, { "name": "Information belongs to someone else", "value": 4940, "date": new Date( "2020-03-01T00:00:00.000Z" ) }, { "name": "Information belongs to someone else", "value": 11481, "date": new Date( "2020-04-01T00:00:00.000Z" ) }, { "name": "Information belongs to someone else", "value": 3899, "date": new Date( "2020-05-01T00:00:00.000Z" ) }, { "name": "Account status incorrect", "value": 819, "date": new Date( "2020-03-01T00:00:00.000Z" ) }, { "name": "Account status incorrect", "value": 1363, "date": new Date( "2020-04-01T00:00:00.000Z" ) }, { "name": "Account status incorrect", "value": 350, "date": new Date( "2020-05-01T00:00:00.000Z" ) }, { "name": "Account information incorrect", "value": 480, "date": new Date( "2020-03-01T00:00:00.000Z" ) }, { "name": "Account information incorrect", "value": 1328, "date": new Date( "2020-04-01T00:00:00.000Z" ) }, { "name": "Account information incorrect", "value": 464, "date": new Date( "2020-05-01T00:00:00.000Z" ) }, { "name": "Personal information incorrect", "value": 195, "date": new Date( "2020-03-01T00:00:00.000Z" ) }, { "name": "Personal information incorrect", "value": 507, "date": new Date( "2020-04-01T00:00:00.000Z" ) }, { "name": "Personal information incorrect", "value": 150, "date": new Date( "2020-05-01T00:00:00.000Z" ) }, { "name": "Old information reappears or never goes away", "value": 119, "date": new Date( "2020-03-01T00:00:00.000Z" ) }, { "name": "Old information reappears or never goes away", "value": 278, "date": new Date( "2020-04-01T00:00:00.000Z" ) }, { "name": "Old information reappears or never goes away", "value": 72, "date": new Date( "2020-05-01T00:00:00.000Z" ) } ], "dateRangeBrush": [ { "date": new Date( "2020-02-01T00:00:00.000Z" ), "value": 9631 }, { "date": new Date( "2020-03-01T00:00:00.000Z" ), "value": 12463 }, { "date": new Date( "2020-04-01T00:00:00.000Z" ), "value": 15459 }, { "date": new Date( "2020-05-01T00:00:00.000Z" ), "value": 5095 } ], "dateRangeLine": { "dataByTopic": [ { "topic": "Information belongs to someone else", "topicName": "Information belongs to someone else", "dashed": false, "show": true, "dates": [ { "name": "Information belongs to someone else", "date": "2020-03-01T00:00:00.000Z", "value": 4940 }, { "name": "Information belongs to someone else", "date": "2020-04-01T00:00:00.000Z", "value": 11481 }, { "name": "Information belongs to someone else", "date": "2020-05-01T00:00:00.000Z", "value": 3899 } ] }, { "topic": "Account status incorrect", "topicName": "Account status incorrect", "dashed": false, "show": true, "dates": [ { "name": "Account status incorrect", "date": "2020-03-01T00:00:00.000Z", "value": 819 }, { "name": "Account status incorrect", "date": "2020-04-01T00:00:00.000Z", "value": 1363 }, { "name": "Account status incorrect", "date": "2020-05-01T00:00:00.000Z", "value": 350 } ] }, { "topic": "Account information incorrect", "topicName": "Account information incorrect", "dashed": false, "show": true, "dates": [ { "name": "Account information incorrect", "date": "2020-03-01T00:00:00.000Z", "value": 480 }, { "name": "Account information incorrect", "date": "2020-04-01T00:00:00.000Z", "value": 1328 }, { "name": "Account information incorrect", "date": "2020-05-01T00:00:00.000Z", "value": 464 } ] }, { "topic": "Personal information incorrect", "topicName": "Personal information incorrect", "dashed": false, "show": true, "dates": [ { "name": "Personal information incorrect", "date": "2020-03-01T00:00:00.000Z", "value": 195 }, { "name": "Personal information incorrect", "date": "2020-04-01T00:00:00.000Z", "value": 507 }, { "name": "Personal information incorrect", "date": "2020-05-01T00:00:00.000Z", "value": 150 } ] }, { "topic": "Old information reappears or never goes away", "topicName": "Old information reappears or never goes away", "dashed": false, "show": true, "dates": [ { "name": "Old information reappears or never goes away", "date": "2020-03-01T00:00:00.000Z", "value": 119 }, { "name": "Old information reappears or never goes away", "date": "2020-04-01T00:00:00.000Z", "value": 278 }, { "name": "Old information reappears or never goes away", "date": "2020-05-01T00:00:00.000Z", "value": 72 } ] } ] }, "issue": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Incorrect information on your report", "value": 27325, "parent": false, "visible": true, "width": 0.5 } ], "product": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 26839, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Credit card or prepaid card", "value": 182, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Vehicle loan or lease", "value": 101, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Mortgage", "value": 91, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Student loan", "value": 62, "parent": false, "visible": true, "width": 0.5 } ], "collections": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Servicemember", "value": 5172, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American", "value": 2352, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American, Servicemember", "value": 640, "parent": false, "visible": true, "width": 0.5 } ], "tags": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Servicemember", "value": 1152, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American", "value": 280, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American, Servicemember", "value": 47, "parent": false, "visible": true, "width": 0.5 } ], "sub-issue": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Information belongs to someone else", "value": 20320, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Account status incorrect", "value": 2532, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Account information incorrect", "value": 2272, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Personal information incorrect", "value": 852, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Old information reappears or never goes away", "value": 469, "parent": false, "visible": true, "width": 0.5 } ] }, "subLens": "sub_issue", "tooltip": false, "total": 27325 }
+export const trendsFocusAggsResults = {
+    dateRangeArea: [
+      {
+        name: 'Other',
+        value: 231,
+        date: '2020-04-01T00:00:00.000Z'
+      },
+      {
+        name: 'Other',
+        value: 258,
+        date: '2020-05-01T00:00:00.000Z'
+      },
+      {
+        name: 'Other',
+        value: 206,
+        date: '2020-06-01T00:00:00.000Z',
+        colorIndex: 10
+      },
+      {
+        name: 'Other',
+        value: 0,
+        date: '2020-07-01T00:00:00.000Z',
+        colorIndex: 10
+      },
+      {
+        name: 'Credit card debt',
+        value: 929,
+        date: '2020-04-01T00:00:00.000Z'
+      },
+      {
+        name: 'Credit card debt',
+        value: 1112,
+        date: '2020-05-01T00:00:00.000Z'
+      },
+      {
+        name: 'Credit card debt',
+        value: 925,
+        date: '2020-06-01T00:00:00.000Z',
+        colorIndex: 1
+      },
+      {
+        name: 'Credit card debt',
+        value: 26,
+        date: '2020-07-01T00:00:00.000Z',
+        colorIndex: 1
+      },
+      {
+        name: 'Other debt',
+        value: 884,
+        date: '2020-04-01T00:00:00.000Z'
+      },
+      {
+        name: 'Other debt',
+        value: 1172,
+        date: '2020-05-01T00:00:00.000Z'
+      },
+      {
+        name: 'Other debt',
+        value: 879,
+        date: '2020-06-01T00:00:00.000Z',
+        colorIndex: 2
+      },
+      {
+        name: 'Other debt',
+        value: 22,
+        date: '2020-07-01T00:00:00.000Z',
+        colorIndex: 2
+      },
+      {
+        name: 'I do not know',
+        value: 976,
+        date: '2020-04-01T00:00:00.000Z'
+      },
+      {
+        name: 'I do not know',
+        value: 1077,
+        date: '2020-05-01T00:00:00.000Z'
+      },
+      {
+        name: 'I do not know',
+        value: 877,
+        date: '2020-06-01T00:00:00.000Z',
+        colorIndex: 3
+      },
+      {
+        name: 'I do not know',
+        value: 7,
+        date: '2020-07-01T00:00:00.000Z',
+        colorIndex: 3
+      },
+      {
+        name: 'Medical debt',
+        value: 563,
+        date: '2020-04-01T00:00:00.000Z'
+      },
+      {
+        name: 'Medical debt',
+        value: 645,
+        date: '2020-05-01T00:00:00.000Z'
+      },
+      {
+        name: 'Medical debt',
+        value: 516,
+        date: '2020-06-01T00:00:00.000Z',
+        colorIndex: 4
+      },
+      {
+        name: 'Medical debt',
+        value: 8,
+        date: '2020-07-01T00:00:00.000Z',
+        colorIndex: 4
+      },
+      {
+        name: 'Auto debt',
+        value: 117,
+        date: '2020-04-01T00:00:00.000Z'
+      },
+      {
+        name: 'Auto debt',
+        value: 158,
+        date: '2020-05-01T00:00:00.000Z'
+      },
+      {
+        name: 'Auto debt',
+        value: 105,
+        date: '2020-06-01T00:00:00.000Z',
+        colorIndex: 5
+      },
+      {
+        name: 'Auto debt',
+        value: 1,
+        date: '2020-07-01T00:00:00.000Z',
+        colorIndex: 5
+      }
+    ],
+    dateRangeBrush: [
+      {
+        date: '2013-07-01T00:00:00.000Z',
+        value: 900
+      },
+      {
+        date: '2013-08-01T00:00:00.000Z',
+        value: 1494
+      },
+      {
+        date: '2013-09-01T00:00:00.000Z',
+        value: 2003
+      },
+      {
+        date: '2013-10-01T00:00:00.000Z',
+        value: 1793
+      },
+      {
+        date: '2013-11-01T00:00:00.000Z',
+        value: 2448
+      },
+      {
+        date: '2013-12-01T00:00:00.000Z',
+        value: 2431
+      },
+      {
+        date: '2014-01-01T00:00:00.000Z',
+        value: 3268
+      },
+      {
+        date: '2014-02-01T00:00:00.000Z',
+        value: 3370
+      },
+      {
+        date: '2014-03-01T00:00:00.000Z',
+        value: 3590
+      },
+      {
+        date: '2014-04-01T00:00:00.000Z',
+        value: 3695
+      },
+      {
+        date: '2014-05-01T00:00:00.000Z',
+        value: 3204
+      },
+      {
+        date: '2014-06-01T00:00:00.000Z',
+        value: 3397
+      },
+      {
+        date: '2014-07-01T00:00:00.000Z',
+        value: 3480
+      },
+      {
+        date: '2014-08-01T00:00:00.000Z',
+        value: 3233
+      },
+      {
+        date: '2014-09-01T00:00:00.000Z',
+        value: 2890
+      },
+      {
+        date: '2014-10-01T00:00:00.000Z',
+        value: 3222
+      },
+      {
+        date: '2014-11-01T00:00:00.000Z',
+        value: 2816
+      },
+      {
+        date: '2014-12-01T00:00:00.000Z',
+        value: 2974
+      },
+      {
+        date: '2015-01-01T00:00:00.000Z',
+        value: 3256
+      },
+      {
+        date: '2015-02-01T00:00:00.000Z',
+        value: 3412
+      },
+      {
+        date: '2015-03-01T00:00:00.000Z',
+        value: 3879
+      },
+      {
+        date: '2015-04-01T00:00:00.000Z',
+        value: 3368
+      },
+      {
+        date: '2015-05-01T00:00:00.000Z',
+        value: 3334
+      },
+      {
+        date: '2015-06-01T00:00:00.000Z',
+        value: 3479
+      },
+      {
+        date: '2015-07-01T00:00:00.000Z',
+        value: 3782
+      },
+      {
+        date: '2015-08-01T00:00:00.000Z',
+        value: 3566
+      },
+      {
+        date: '2015-09-01T00:00:00.000Z',
+        value: 3150
+      },
+      {
+        date: '2015-10-01T00:00:00.000Z',
+        value: 3015
+      },
+      {
+        date: '2015-11-01T00:00:00.000Z',
+        value: 2621
+      },
+      {
+        date: '2015-12-01T00:00:00.000Z',
+        value: 2862
+      },
+      {
+        date: '2016-01-01T00:00:00.000Z',
+        value: 2924
+      },
+      {
+        date: '2016-02-01T00:00:00.000Z',
+        value: 3222
+      },
+      {
+        date: '2016-03-01T00:00:00.000Z',
+        value: 3525
+      },
+      {
+        date: '2016-04-01T00:00:00.000Z',
+        value: 3243
+      },
+      {
+        date: '2016-05-01T00:00:00.000Z',
+        value: 3064
+      },
+      {
+        date: '2016-06-01T00:00:00.000Z',
+        value: 3233
+      },
+      {
+        date: '2016-07-01T00:00:00.000Z',
+        value: 3020
+      },
+      {
+        date: '2016-08-01T00:00:00.000Z',
+        value: 4163
+      },
+      {
+        date: '2016-09-01T00:00:00.000Z',
+        value: 3537
+      },
+      {
+        date: '2016-10-01T00:00:00.000Z',
+        value: 3579
+      },
+      {
+        date: '2016-11-01T00:00:00.000Z',
+        value: 3288
+      },
+      {
+        date: '2016-12-01T00:00:00.000Z',
+        value: 3668
+      },
+      {
+        date: '2017-01-01T00:00:00.000Z',
+        value: 3730
+      },
+      {
+        date: '2017-02-01T00:00:00.000Z',
+        value: 3949
+      },
+      {
+        date: '2017-03-01T00:00:00.000Z',
+        value: 4605
+      },
+      {
+        date: '2017-04-01T00:00:00.000Z',
+        value: 4173
+      },
+      {
+        date: '2017-05-01T00:00:00.000Z',
+        value: 4163
+      },
+      {
+        date: '2017-06-01T00:00:00.000Z',
+        value: 3713
+      },
+      {
+        date: '2017-07-01T00:00:00.000Z',
+        value: 4223
+      },
+      {
+        date: '2017-08-01T00:00:00.000Z',
+        value: 4376
+      },
+      {
+        date: '2017-09-01T00:00:00.000Z',
+        value: 3541
+      },
+      {
+        date: '2017-10-01T00:00:00.000Z',
+        value: 4032
+      },
+      {
+        date: '2017-11-01T00:00:00.000Z',
+        value: 3564
+      },
+      {
+        date: '2017-12-01T00:00:00.000Z',
+        value: 3884
+      },
+      {
+        date: '2018-01-01T00:00:00.000Z',
+        value: 4908
+      },
+      {
+        date: '2018-02-01T00:00:00.000Z',
+        value: 4474
+      },
+      {
+        date: '2018-03-01T00:00:00.000Z',
+        value: 5266
+      },
+      {
+        date: '2018-04-01T00:00:00.000Z',
+        value: 4757
+      },
+      {
+        date: '2018-05-01T00:00:00.000Z',
+        value: 4736
+      },
+      {
+        date: '2018-06-01T00:00:00.000Z',
+        value: 4256
+      },
+      {
+        date: '2018-07-01T00:00:00.000Z',
+        value: 3999
+      },
+      {
+        date: '2018-08-01T00:00:00.000Z',
+        value: 4413
+      },
+      {
+        date: '2018-09-01T00:00:00.000Z',
+        value: 3681
+      },
+      {
+        date: '2018-10-01T00:00:00.000Z',
+        value: 4087
+      },
+      {
+        date: '2018-11-01T00:00:00.000Z',
+        value: 3348
+      },
+      {
+        date: '2018-12-01T00:00:00.000Z',
+        value: 3259
+      },
+      {
+        date: '2019-01-01T00:00:00.000Z',
+        value: 3127
+      },
+      {
+        date: '2019-02-01T00:00:00.000Z',
+        value: 3787
+      },
+      {
+        date: '2019-03-01T00:00:00.000Z',
+        value: 4227
+      },
+      {
+        date: '2019-04-01T00:00:00.000Z',
+        value: 3983
+      },
+      {
+        date: '2019-05-01T00:00:00.000Z',
+        value: 4135
+      },
+      {
+        date: '2019-06-01T00:00:00.000Z',
+        value: 4051
+      },
+      {
+        date: '2019-07-01T00:00:00.000Z',
+        value: 4014
+      },
+      {
+        date: '2019-08-01T00:00:00.000Z',
+        value: 4231
+      },
+      {
+        date: '2019-09-01T00:00:00.000Z',
+        value: 3976
+      },
+      {
+        date: '2019-10-01T00:00:00.000Z',
+        value: 4022
+      },
+      {
+        date: '2019-11-01T00:00:00.000Z',
+        value: 3526
+      },
+      {
+        date: '2019-12-01T00:00:00.000Z',
+        value: 3324
+      },
+      {
+        date: '2020-01-01T00:00:00.000Z',
+        value: 3768
+      },
+      {
+        date: '2020-02-01T00:00:00.000Z',
+        value: 3983
+      },
+      {
+        date: '2020-03-01T00:00:00.000Z',
+        value: 4205
+      },
+      {
+        date: '2020-04-01T00:00:00.000Z',
+        value: 4513
+      },
+      {
+        date: '2020-05-01T00:00:00.000Z',
+        value: 4422
+      },
+      {
+        date: '2020-06-01T00:00:00.000Z',
+        value: 3508
+      },
+      {
+        date: '2020-07-01T00:00:00.000Z',
+        value: 64
+      }
+    ],
+    dateRangeLine: {
+      dataByTopic: [
+        {
+          topic: 'Credit card debt',
+          topicName: 'Credit card debt',
+          dashed: false,
+          show: true,
+          dates: [
+            {
+              name: 'Credit card debt',
+              date: '2020-04-01T00:00:00.000Z',
+              value: 929
+            },
+            {
+              name: 'Credit card debt',
+              date: '2020-05-01T00:00:00.000Z',
+              value: 1112
+            },
+            {
+              name: 'Credit card debt',
+              date: '2020-06-01T00:00:00.000Z',
+              value: 925
+            },
+            {
+              name: 'Credit card debt',
+              date: '2020-07-01T00:00:00.000Z',
+              value: 26
+            }
+          ]
+        },
+        {
+          topic: 'Other debt',
+          topicName: 'Other debt',
+          dashed: false,
+          show: true,
+          dates: [
+            {
+              name: 'Other debt',
+              date: '2020-04-01T00:00:00.000Z',
+              value: 884
+            },
+            {
+              name: 'Other debt',
+              date: '2020-05-01T00:00:00.000Z',
+              value: 1172
+            },
+            {
+              name: 'Other debt',
+              date: '2020-06-01T00:00:00.000Z',
+              value: 879
+            },
+            {
+              name: 'Other debt',
+              date: '2020-07-01T00:00:00.000Z',
+              value: 22
+            }
+          ]
+        },
+        {
+          topic: 'I do not know',
+          topicName: 'I do not know',
+          dashed: false,
+          show: true,
+          dates: [
+            {
+              name: 'I do not know',
+              date: '2020-04-01T00:00:00.000Z',
+              value: 976
+            },
+            {
+              name: 'I do not know',
+              date: '2020-05-01T00:00:00.000Z',
+              value: 1077
+            },
+            {
+              name: 'I do not know',
+              date: '2020-06-01T00:00:00.000Z',
+              value: 877
+            },
+            {
+              name: 'I do not know',
+              date: '2020-07-01T00:00:00.000Z',
+              value: 7
+            }
+          ]
+        },
+        {
+          topic: 'Medical debt',
+          topicName: 'Medical debt',
+          dashed: false,
+          show: true,
+          dates: [
+            {
+              name: 'Medical debt',
+              date: '2020-04-01T00:00:00.000Z',
+              value: 563
+            },
+            {
+              name: 'Medical debt',
+              date: '2020-05-01T00:00:00.000Z',
+              value: 645
+            },
+            {
+              name: 'Medical debt',
+              date: '2020-06-01T00:00:00.000Z',
+              value: 516
+            },
+            {
+              name: 'Medical debt',
+              date: '2020-07-01T00:00:00.000Z',
+              value: 8
+            }
+          ]
+        },
+        {
+          topic: 'Auto debt',
+          topicName: 'Auto debt',
+          dashed: false,
+          show: true,
+          dates: [
+            {
+              name: 'Auto debt',
+              date: '2020-04-01T00:00:00.000Z',
+              value: 117
+            },
+            {
+              name: 'Auto debt',
+              date: '2020-05-01T00:00:00.000Z',
+              value: 158
+            },
+            {
+              name: 'Auto debt',
+              date: '2020-06-01T00:00:00.000Z',
+              value: 105
+            },
+            {
+              name: 'Auto debt',
+              date: '2020-07-01T00:00:00.000Z',
+              value: 1
+            }
+          ]
+        }
+      ]
+    },
+    issue: [
+      {
+        hasChildren: false,
+        isNotFilter: false,
+        isParent: true,
+        pctOfSet: 0,
+        name: 'Attempts to collect debt not owed',
+        value: 6337,
+        parent: false,
+        visible: true,
+        width: 0.5
+      },
+      {
+        hasChildren: false,
+        isNotFilter: false,
+        isParent: true,
+        pctOfSet: 0,
+        name: 'Written notification about debt',
+        value: 2549,
+        parent: false,
+        visible: true,
+        width: 0.5
+      },
+      {
+        hasChildren: false,
+        isNotFilter: false,
+        isParent: true,
+        pctOfSet: 0,
+        name: 'False statements or representation',
+        value: 1017,
+        parent: false,
+        visible: true,
+        width: 0.5
+      },
+      {
+        hasChildren: false,
+        isNotFilter: false,
+        isParent: true,
+        pctOfSet: 0,
+        name: 'Took or threatened to take negative or legal action',
+        value: 874,
+        parent: false,
+        visible: true,
+        width: 0.5
+      },
+      {
+        hasChildren: false,
+        isNotFilter: false,
+        isParent: true,
+        pctOfSet: 0,
+        name: 'Communication tactics',
+        value: 752,
+        parent: false,
+        visible: true,
+        width: 0.5
+      }
+    ],
+    product: [
+      {
+        hasChildren: false,
+        isNotFilter: false,
+        isParent: true,
+        pctOfSet: 0,
+        name: 'Debt collection',
+        value: 11694,
+        parent: false,
+        visible: true,
+        width: 0.5
+      }
+    ],
+    'sub-product': [
+      {
+        hasChildren: false,
+        isNotFilter: false,
+        isParent: true,
+        pctOfSet: 0,
+        name: 'Credit card debt',
+        value: 2992,
+        parent: false,
+        visible: true,
+        width: 0.5,
+        pctChange: null
+      },
+      {
+        hasChildren: false,
+        isNotFilter: false,
+        isParent: true,
+        pctOfSet: 0,
+        name: 'Other debt',
+        value: 2957,
+        parent: false,
+        visible: true,
+        width: 0.5,
+        pctChange: null
+      },
+      {
+        hasChildren: false,
+        isNotFilter: false,
+        isParent: true,
+        pctOfSet: 0,
+        name: 'I do not know',
+        value: 2937,
+        parent: false,
+        visible: true,
+        width: 0.5,
+        pctChange: null
+      },
+      {
+        hasChildren: false,
+        isNotFilter: false,
+        isParent: true,
+        pctOfSet: 0,
+        name: 'Medical debt',
+        value: 1732,
+        parent: false,
+        visible: true,
+        width: 0.5,
+        pctChange: null
+      },
+      {
+        hasChildren: false,
+        isNotFilter: false,
+        isParent: true,
+        pctOfSet: 0,
+        name: 'Auto debt',
+        value: 381,
+        parent: false,
+        visible: true,
+        width: 0.5,
+        pctChange: null
+      }
+    ],
+    tags: [
+      {
+        hasChildren: false,
+        isNotFilter: false,
+        isParent: true,
+        pctOfSet: 0,
+        name: 'Servicemember',
+        value: 1030,
+        parent: false,
+        visible: true,
+        width: 0.5
+      },
+      {
+        hasChildren: false,
+        isNotFilter: false,
+        isParent: true,
+        pctOfSet: 0,
+        name: 'Older American',
+        value: 303,
+        parent: false,
+        visible: true,
+        width: 0.5
+      },
+      {
+        hasChildren: false,
+        isNotFilter: false,
+        isParent: true,
+        pctOfSet: 0,
+        name: 'Older American, Servicemember',
+        value: 68,
+        parent: false,
+        visible: true,
+        width: 0.5
+      }
+    ]
+  }
\ No newline at end of file
diff --git a/src/reducers/__fixtures__/trendsResults.jsx b/src/reducers/__fixtures__/trendsResults.jsx
index d71c742e0..96e646ea8 100644
--- a/src/reducers/__fixtures__/trendsResults.jsx
+++ b/src/reducers/__fixtures__/trendsResults.jsx
@@ -1,2 +1,1479 @@
-export const trendsResults = { "activeCall": "", "chartType": "line", "colorMap": { "Complaints": "#ADDC91", "Other": "#a2a3a4" }, "error": false, "expandedTrends": [], "filterNames": [ "Credit reporting, credit repair services, or other personal consumer reports", "Debt collection", "Credit card or prepaid card", "Mortgage", "Checking or savings account", "Incorrect information on your report", "Problem with a credit reporting company's investigation into an existing problem", "Attempts to collect debt not owed", "Managing an account", "Improper use of your report" ], "focus": "", "isLoading": false, "lastDate": "2020-05-01T00:00:00.000Z", "lens": "Overview", "results": { "dateRangeArea": [], "dateRangeBrush": [ { "date": new Date("2020-01-01T00:00:00.000Z"), "value": 26413 }, { "date": new Date("2020-02-01T00:00:00.000Z"), "value": 25096 }, { "date": new Date("2020-03-01T00:00:00.000Z"), "value": 29506 }, { "date": new Date("2020-04-01T00:00:00.000Z"), "value": 35112 }, { "date": new Date("2020-05-01T00:00:00.000Z"), "value": 9821 } ], "dateRangeLine": { "dataByTopic": [ { "topic": "Complaints", "topicName": "Complaints", "dashed": false, "show": true, "dates": [ { "date": "2020-03-01T00:00:00.000Z", "value": 29506 }, { "date": "2020-04-01T00:00:00.000Z", "value": 35112 }, { "date": "2020-05-01T00:00:00.000Z", "value": 9821 } ] } ] }, "issue": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Incorrect information on your report", "value": 33017, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information belongs to someone else", "value": 24403, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account status incorrect", "value": 3042, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account information incorrect", "value": 2849, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Personal information incorrect", "value": 1066, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Public record information inaccurate", "value": 578, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Old information reappears or never goes away", "value": 576, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information is missing that should be on the report", "value": 348, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information is incorrect", "value": 36, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information that should be on the report is missing", "value": 9, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 9307, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Their investigation did not fix an error on your report", "value": 5706, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Investigation took more than 30 days", "value": 1572, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Was not notified of investigation status or results", "value": 1173, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Difficulty submitting a dispute or getting information about a dispute over the phone", "value": 495, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem with personal statement of dispute", "value": 329, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Attempts to collect debt not owed", "value": 5370, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Debt is not yours", "value": 2571, "parent": "Attempts to collect debt not owed", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Debt was result of identity theft", "value": 1771, "parent": "Attempts to collect debt not owed", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Debt was paid", "value": 868, "parent": "Attempts to collect debt not owed", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Debt was already discharged in bankruptcy and is no longer owed", "value": 160, "parent": "Attempts to collect debt not owed", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Managing an account", "value": 2572, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Deposits and withdrawals", "value": 841, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem using a debit or ATM card", "value": 446, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Banking errors", "value": 351, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Funds not handled or disbursed as instructed", "value": 252, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem accessing account", "value": 245, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem making or receiving payments", "value": 163, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Fee problem", "value": 141, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Cashing a check", "value": 93, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Deposits or withdrawals", "value": 21, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem with renewal", "value": 10, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem with fees or penalties", "value": 9, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Improper use of your report", "value": 2370, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit inquiries on your report that you don't recognize", "value": 1678, "parent": "Improper use of your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Reporting company used your report improperly", "value": 647, "parent": "Improper use of your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Received unsolicited financial product or insurance offers after opting out", "value": 22, "parent": "Improper use of your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Report provided to employer without your written authorization", "value": 10, "parent": "Improper use of your report", "visible": false, "width": 0.4 } ], "product": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 45278, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit reporting", "value": 44896, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other personal consumer report", "value": 301, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit repair services", "value": 81, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Debt collection", "value": 9782, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other debt", "value": 2692, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet":0, "name": "I do not know", "value": 2449, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit card debt", "value": 2258, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Medical debt", "value": 1408, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Auto debt", "value": 310, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Payday loan debt", "value": 287, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Mortgage debt", "value": 175, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Federal student loan debt", "value": 107, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Private student loan debt", "value": 96, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Credit card or prepaid card", "value": 6284, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "General-purpose credit card or charge card", "value": 4657, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Store credit card", "value": 828, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Government benefit card", "value": 414, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "General-purpose prepaid card", "value": 337, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Payroll card", "value": 33, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Gift card", "value": 14, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Student prepaid card", "value": 1, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Mortgage", "value": 4676, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Conventional home mortgage", "value": 2971, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "FHA mortgage", "value": 788, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "VA mortgage", "value": 350, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other type of mortgage", "value": 279, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Home equity loan or line of credit (HELOC)", "value": 243, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Reverse mortgage", "value": 45, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Checking or savings account", "value": 4101, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Checking account", "value": 3187, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other banking product or service", "value": 494, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Savings account", "value": 298, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "CD (Certificate of Deposit)", "value": 121, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Personal line of credit", "value": 1, "parent": "Checking or savings account", "visible": false, "width": 0.4 } ], "collections": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Servicemember", "value": 5172, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American", "value": 2352, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American, Servicemember", "value": 640, "parent": false, "visible": true, "width": 0.5 } ] }, "subLens": "", "tooltip": false, "total": 74439 }
+export const trendsResults = {
+    activeCall: '',
+    chartType: 'line',
+    colorMap: {
+      Complaints: '#ADDC91',
+      Other: '#a2a3a4',
+      'All other products': '#a2a3a4',
+      'All other companies': '#a2a3a4',
+      'All other values': '#a2a3a4'
+    },
+    error: false,
+    expandedTrends: [],
+    filterNames: [
+      'Credit reporting, credit repair services, or other personal consumer reports',
+      'Debt collection',
+      'Credit card or prepaid card',
+      'Mortgage',
+      'Checking or savings account',
+      'Incorrect information on your report',
+      'Problem with a credit reporting company\'s investigation into an existing problem',
+      'Attempts to collect debt not owed',
+      'Improper use of your report',
+      'Managing an account'
+    ],
+    focus: '',
+    isLoading: false,
+    lastDate: '2020-07-01T00:00:00.000Z',
+    lens: 'Overview',
+    results: {
+      dateRangeArea: [],
+      dateRangeBrush: [
+        {
+          date: '2011-12-01T00:00:00.000Z',
+          value: 2536
+        },
+        {
+          date: '2012-01-01T00:00:00.000Z',
+          value: 3230
+        },
+        {
+          date: '2012-02-01T00:00:00.000Z',
+          value: 3509
+        },
+        {
+          date: '2012-03-01T00:00:00.000Z',
+          value: 6230
+        },
+        {
+          date: '2012-04-01T00:00:00.000Z',
+          value: 5703
+        },
+        {
+          date: '2012-05-01T00:00:00.000Z',
+          value: 7617
+        },
+        {
+          date: '2012-06-01T00:00:00.000Z',
+          value: 7841
+        },
+        {
+          date: '2012-07-01T00:00:00.000Z',
+          value: 6755
+        },
+        {
+          date: '2012-08-01T00:00:00.000Z',
+          value: 6877
+        },
+        {
+          date: '2012-09-01T00:00:00.000Z',
+          value: 5493
+        },
+        {
+          date: '2012-10-01T00:00:00.000Z',
+          value: 6741
+        },
+        {
+          date: '2012-11-01T00:00:00.000Z',
+          value: 6139
+        },
+        {
+          date: '2012-12-01T00:00:00.000Z',
+          value: 6238
+        },
+        {
+          date: '2013-01-01T00:00:00.000Z',
+          value: 9741
+        },
+        {
+          date: '2013-02-01T00:00:00.000Z',
+          value: 8349
+        },
+        {
+          date: '2013-03-01T00:00:00.000Z',
+          value: 8784
+        },
+        {
+          date: '2013-04-01T00:00:00.000Z',
+          value: 8632
+        },
+        {
+          date: '2013-05-01T00:00:00.000Z',
+          value: 8170
+        },
+        {
+          date: '2013-06-01T00:00:00.000Z',
+          value: 8035
+        },
+        {
+          date: '2013-07-01T00:00:00.000Z',
+          value: 9271
+        },
+        {
+          date: '2013-08-01T00:00:00.000Z',
+          value: 9565
+        },
+        {
+          date: '2013-09-01T00:00:00.000Z',
+          value: 9636
+        },
+        {
+          date: '2013-10-01T00:00:00.000Z',
+          value: 9241
+        },
+        {
+          date: '2013-11-01T00:00:00.000Z',
+          value: 9319
+        },
+        {
+          date: '2013-12-01T00:00:00.000Z',
+          value: 9474
+        },
+        {
+          date: '2014-01-01T00:00:00.000Z',
+          value: 12617
+        },
+        {
+          date: '2014-02-01T00:00:00.000Z',
+          value: 13048
+        },
+        {
+          date: '2014-03-01T00:00:00.000Z',
+          value: 13943
+        },
+        {
+          date: '2014-04-01T00:00:00.000Z',
+          value: 13840
+        },
+        {
+          date: '2014-05-01T00:00:00.000Z',
+          value: 12167
+        },
+        {
+          date: '2014-06-01T00:00:00.000Z',
+          value: 12520
+        },
+        {
+          date: '2014-07-01T00:00:00.000Z',
+          value: 13415
+        },
+        {
+          date: '2014-08-01T00:00:00.000Z',
+          value: 13186
+        },
+        {
+          date: '2014-09-01T00:00:00.000Z',
+          value: 12465
+        },
+        {
+          date: '2014-10-01T00:00:00.000Z',
+          value: 12901
+        },
+        {
+          date: '2014-11-01T00:00:00.000Z',
+          value: 11257
+        },
+        {
+          date: '2014-12-01T00:00:00.000Z',
+          value: 11684
+        },
+        {
+          date: '2015-01-01T00:00:00.000Z',
+          value: 12627
+        },
+        {
+          date: '2015-02-01T00:00:00.000Z',
+          value: 12680
+        },
+        {
+          date: '2015-03-01T00:00:00.000Z',
+          value: 14514
+        },
+        {
+          date: '2015-04-01T00:00:00.000Z',
+          value: 13753
+        },
+        {
+          date: '2015-05-01T00:00:00.000Z',
+          value: 13682
+        },
+        {
+          date: '2015-06-01T00:00:00.000Z',
+          value: 14517
+        },
+        {
+          date: '2015-07-01T00:00:00.000Z',
+          value: 15920
+        },
+        {
+          date: '2015-08-01T00:00:00.000Z',
+          value: 15766
+        },
+        {
+          date: '2015-09-01T00:00:00.000Z',
+          value: 14336
+        },
+        {
+          date: '2015-10-01T00:00:00.000Z',
+          value: 14899
+        },
+        {
+          date: '2015-11-01T00:00:00.000Z',
+          value: 12897
+        },
+        {
+          date: '2015-12-01T00:00:00.000Z',
+          value: 12884
+        },
+        {
+          date: '2016-01-01T00:00:00.000Z',
+          value: 13840
+        },
+        {
+          date: '2016-02-01T00:00:00.000Z',
+          value: 14140
+        },
+        {
+          date: '2016-03-01T00:00:00.000Z',
+          value: 16611
+        },
+        {
+          date: '2016-04-01T00:00:00.000Z',
+          value: 15608
+        },
+        {
+          date: '2016-05-01T00:00:00.000Z',
+          value: 15517
+        },
+        {
+          date: '2016-06-01T00:00:00.000Z',
+          value: 16063
+        },
+        {
+          date: '2016-07-01T00:00:00.000Z',
+          value: 16043
+        },
+        {
+          date: '2016-08-01T00:00:00.000Z',
+          value: 17694
+        },
+        {
+          date: '2016-09-01T00:00:00.000Z',
+          value: 17584
+        },
+        {
+          date: '2016-10-01T00:00:00.000Z',
+          value: 17820
+        },
+        {
+          date: '2016-11-01T00:00:00.000Z',
+          value: 15207
+        },
+        {
+          date: '2016-12-01T00:00:00.000Z',
+          value: 15341
+        },
+        {
+          date: '2017-01-01T00:00:00.000Z',
+          value: 21006
+        },
+        {
+          date: '2017-02-01T00:00:00.000Z',
+          value: 18110
+        },
+        {
+          date: '2017-03-01T00:00:00.000Z',
+          value: 19762
+        },
+        {
+          date: '2017-04-01T00:00:00.000Z',
+          value: 18544
+        },
+        {
+          date: '2017-05-01T00:00:00.000Z',
+          value: 19304
+        },
+        {
+          date: '2017-06-01T00:00:00.000Z',
+          value: 18567
+        },
+        {
+          date: '2017-07-01T00:00:00.000Z',
+          value: 20433
+        },
+        {
+          date: '2017-08-01T00:00:00.000Z',
+          value: 21402
+        },
+        {
+          date: '2017-09-01T00:00:00.000Z',
+          value: 27357
+        },
+        {
+          date: '2017-10-01T00:00:00.000Z',
+          value: 20456
+        },
+        {
+          date: '2017-11-01T00:00:00.000Z',
+          value: 18990
+        },
+        {
+          date: '2017-12-01T00:00:00.000Z',
+          value: 19034
+        },
+        {
+          date: '2018-01-01T00:00:00.000Z',
+          value: 23650
+        },
+        {
+          date: '2018-02-01T00:00:00.000Z',
+          value: 21978
+        },
+        {
+          date: '2018-03-01T00:00:00.000Z',
+          value: 23639
+        },
+        {
+          date: '2018-04-01T00:00:00.000Z',
+          value: 24327
+        },
+        {
+          date: '2018-05-01T00:00:00.000Z',
+          value: 22339
+        },
+        {
+          date: '2018-06-01T00:00:00.000Z',
+          value: 20111
+        },
+        {
+          date: '2018-07-01T00:00:00.000Z',
+          value: 20963
+        },
+        {
+          date: '2018-08-01T00:00:00.000Z',
+          value: 21726
+        },
+        {
+          date: '2018-09-01T00:00:00.000Z',
+          value: 19072
+        },
+        {
+          date: '2018-10-01T00:00:00.000Z',
+          value: 21903
+        },
+        {
+          date: '2018-11-01T00:00:00.000Z',
+          value: 19053
+        },
+        {
+          date: '2018-12-01T00:00:00.000Z',
+          value: 18552
+        },
+        {
+          date: '2019-01-01T00:00:00.000Z',
+          value: 18934
+        },
+        {
+          date: '2019-02-01T00:00:00.000Z',
+          value: 20206
+        },
+        {
+          date: '2019-03-01T00:00:00.000Z',
+          value: 23412
+        },
+        {
+          date: '2019-04-01T00:00:00.000Z',
+          value: 22915
+        },
+        {
+          date: '2019-05-01T00:00:00.000Z',
+          value: 23850
+        },
+        {
+          date: '2019-06-01T00:00:00.000Z',
+          value: 23352
+        },
+        {
+          date: '2019-07-01T00:00:00.000Z',
+          value: 25090
+        },
+        {
+          date: '2019-08-01T00:00:00.000Z',
+          value: 26059
+        },
+        {
+          date: '2019-09-01T00:00:00.000Z',
+          value: 23575
+        },
+        {
+          date: '2019-10-01T00:00:00.000Z',
+          value: 25636
+        },
+        {
+          date: '2019-11-01T00:00:00.000Z',
+          value: 22657
+        },
+        {
+          date: '2019-12-01T00:00:00.000Z',
+          value: 21704
+        },
+        {
+          date: '2020-01-01T00:00:00.000Z',
+          value: 26413
+        },
+        {
+          date: '2020-02-01T00:00:00.000Z',
+          value: 25097
+        },
+        {
+          date: '2020-03-01T00:00:00.000Z',
+          value: 29494
+        },
+        {
+          date: '2020-04-01T00:00:00.000Z',
+          value: 34805
+        },
+        {
+          date: '2020-05-01T00:00:00.000Z',
+          value: 37146
+        },
+        {
+          date: '2020-06-01T00:00:00.000Z',
+          value: 32699
+        },
+        {
+          date: '2020-07-01T00:00:00.000Z',
+          value: 1152
+        }
+      ],
+      dateRangeLine: {
+        dataByTopic: [
+          {
+            topic: 'Complaints',
+            topicName: 'Complaints',
+            dashed: false,
+            show: true,
+            dates: [
+              {
+                date: '2017-07-01T00:00:00.000Z',
+                value: 17363
+              },
+              {
+                date: '2017-08-01T00:00:00.000Z',
+                value: 21402
+              },
+              {
+                date: '2017-09-01T00:00:00.000Z',
+                value: 27357
+              },
+              {
+                date: '2017-10-01T00:00:00.000Z',
+                value: 20456
+              },
+              {
+                date: '2017-11-01T00:00:00.000Z',
+                value: 18990
+              },
+              {
+                date: '2017-12-01T00:00:00.000Z',
+                value: 19034
+              },
+              {
+                date: '2018-01-01T00:00:00.000Z',
+                value: 23650
+              },
+              {
+                date: '2018-02-01T00:00:00.000Z',
+                value: 21978
+              },
+              {
+                date: '2018-03-01T00:00:00.000Z',
+                value: 23639
+              },
+              {
+                date: '2018-04-01T00:00:00.000Z',
+                value: 24327
+              },
+              {
+                date: '2018-05-01T00:00:00.000Z',
+                value: 22339
+              },
+              {
+                date: '2018-06-01T00:00:00.000Z',
+                value: 20111
+              },
+              {
+                date: '2018-07-01T00:00:00.000Z',
+                value: 20963
+              },
+              {
+                date: '2018-08-01T00:00:00.000Z',
+                value: 21726
+              },
+              {
+                date: '2018-09-01T00:00:00.000Z',
+                value: 19072
+              },
+              {
+                date: '2018-10-01T00:00:00.000Z',
+                value: 21903
+              },
+              {
+                date: '2018-11-01T00:00:00.000Z',
+                value: 19053
+              },
+              {
+                date: '2018-12-01T00:00:00.000Z',
+                value: 18552
+              },
+              {
+                date: '2019-01-01T00:00:00.000Z',
+                value: 18934
+              },
+              {
+                date: '2019-02-01T00:00:00.000Z',
+                value: 20206
+              },
+              {
+                date: '2019-03-01T00:00:00.000Z',
+                value: 23412
+              },
+              {
+                date: '2019-04-01T00:00:00.000Z',
+                value: 22915
+              },
+              {
+                date: '2019-05-01T00:00:00.000Z',
+                value: 23850
+              },
+              {
+                date: '2019-06-01T00:00:00.000Z',
+                value: 23352
+              },
+              {
+                date: '2019-07-01T00:00:00.000Z',
+                value: 25090
+              },
+              {
+                date: '2019-08-01T00:00:00.000Z',
+                value: 26059
+              },
+              {
+                date: '2019-09-01T00:00:00.000Z',
+                value: 23575
+              },
+              {
+                date: '2019-10-01T00:00:00.000Z',
+                value: 25636
+              },
+              {
+                date: '2019-11-01T00:00:00.000Z',
+                value: 22657
+              },
+              {
+                date: '2019-12-01T00:00:00.000Z',
+                value: 21704
+              },
+              {
+                date: '2020-01-01T00:00:00.000Z',
+                value: 26413
+              },
+              {
+                date: '2020-02-01T00:00:00.000Z',
+                value: 25097
+              },
+              {
+                date: '2020-03-01T00:00:00.000Z',
+                value: 29494
+              },
+              {
+                date: '2020-04-01T00:00:00.000Z',
+                value: 34805
+              },
+              {
+                date: '2020-05-01T00:00:00.000Z',
+                value: 37146
+              },
+              {
+                date: '2020-06-01T00:00:00.000Z',
+                value: 32699
+              },
+              {
+                date: '2020-07-01T00:00:00.000Z',
+                value: 1152
+              }
+            ]
+          }
+        ]
+      },
+      issue: [
+        {
+          hasChildren: true,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Incorrect information on your report',
+          value: 269374,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Information belongs to someone else',
+          value: 156308,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Account status incorrect',
+          value: 39224,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Account information incorrect',
+          value: 36552,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Personal information incorrect',
+          value: 12286,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Old information reappears or never goes away',
+          value: 9033,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Public record information inaccurate',
+          value: 8972,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Information is missing that should be on the report',
+          value: 4742,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Information is incorrect',
+          value: 677,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Information that should be on the report is missing',
+          value: 112,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Incorrect information on your report ',
+          value: 1,
+          parent: 'Incorrect information on your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: true,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Problem with a credit reporting company\'s investigation into an existing problem',
+          value: 93358,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Their investigation did not fix an error on your report',
+          value: 65070,
+          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Investigation took more than 30 days',
+          value: 9055,
+          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Was not notified of investigation status or results',
+          value: 8203,
+          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Difficulty submitting a dispute or getting information about a dispute over the phone',
+          value: 6179,
+          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Problem with personal statement of dispute',
+          value: 4418,
+          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: true,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Attempts to collect debt not owed',
+          value: 67216,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Debt is not yours',
+          value: 34471,
+          parent: 'Attempts to collect debt not owed',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Debt was result of identity theft',
+          value: 16625,
+          parent: 'Attempts to collect debt not owed',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Debt was paid',
+          value: 13434,
+          parent: 'Attempts to collect debt not owed',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Debt was already discharged in bankruptcy and is no longer owed',
+          value: 2686,
+          parent: 'Attempts to collect debt not owed',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: true,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Improper use of your report',
+          value: 45340,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Credit inquiries on your report that you don\'t recognize',
+          value: 30086,
+          parent: 'Improper use of your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Reporting company used your report improperly',
+          value: 14270,
+          parent: 'Improper use of your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Received unsolicited financial product or insurance offers after opting out',
+          value: 427,
+          parent: 'Improper use of your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Report provided to employer without your written authorization',
+          value: 425,
+          parent: 'Improper use of your report',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: true,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Managing an account',
+          value: 39884,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Deposits and withdrawals',
+          value: 13703,
+          parent: 'Managing an account',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Problem using a debit or ATM card',
+          value: 6775,
+          parent: 'Managing an account',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Banking errors',
+          value: 5058,
+          parent: 'Managing an account',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Funds not handled or disbursed as instructed',
+          value: 3813,
+          parent: 'Managing an account',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Fee problem',
+          value: 3293,
+          parent: 'Managing an account',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Problem accessing account',
+          value: 2920,
+          parent: 'Managing an account',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Problem making or receiving payments',
+          value: 2296,
+          parent: 'Managing an account',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Cashing a check',
+          value: 1454,
+          parent: 'Managing an account',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Deposits or withdrawals',
+          value: 377,
+          parent: 'Managing an account',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Problem with fees or penalties',
+          value: 106,
+          parent: 'Managing an account',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Problem with renewal',
+          value: 89,
+          parent: 'Managing an account',
+          visible: false,
+          width: 0.4
+        }
+      ],
+      product: [
+        {
+          hasChildren: true,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Credit reporting, credit repair services, or other personal consumer reports',
+          value: 418955,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Credit reporting',
+          value: 412529,
+          parent: 'Credit reporting, credit repair services, or other personal consumer reports',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Other personal consumer report',
+          value: 5116,
+          parent: 'Credit reporting, credit repair services, or other personal consumer reports',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Credit repair services',
+          value: 1309,
+          parent: 'Credit reporting, credit repair services, or other personal consumer reports',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Conventional home mortgage',
+          value: 1,
+          parent: 'Credit reporting, credit repair services, or other personal consumer reports',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: true,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Debt collection',
+          value: 145052,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Other debt',
+          value: 42553,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Credit card debt',
+          value: 31480,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'I do not know',
+          value: 31271,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Medical debt',
+          value: 23049,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Auto debt',
+          value: 4734,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Payday loan debt',
+          value: 4343,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Mortgage debt',
+          value: 3120,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Federal student loan debt',
+          value: 2359,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Private student loan debt',
+          value: 2143,
+          parent: 'Debt collection',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: true,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Credit card or prepaid card',
+          value: 76892,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'General-purpose credit card or charge card',
+          value: 58770,
+          parent: 'Credit card or prepaid card',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Store credit card',
+          value: 12346,
+          parent: 'Credit card or prepaid card',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'General-purpose prepaid card',
+          value: 2993,
+          parent: 'Credit card or prepaid card',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Government benefit card',
+          value: 2173,
+          parent: 'Credit card or prepaid card',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Payroll card',
+          value: 331,
+          parent: 'Credit card or prepaid card',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Gift card',
+          value: 270,
+          parent: 'Credit card or prepaid card',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Student prepaid card',
+          value: 9,
+          parent: 'Credit card or prepaid card',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: true,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Mortgage',
+          value: 71790,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Conventional home mortgage ',
+          value: 42482,
+          parent: 'Mortgage',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'FHA mortgage',
+          value: 10308,
+          parent: 'Mortgage',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Other type of mortgage',
+          value: 9399,
+          parent: 'Mortgage',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Home equity loan or line of credit (HELOC)',
+          value: 4687,
+          parent: 'Mortgage',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'VA mortgage',
+          value: 3878,
+          parent: 'Mortgage',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Reverse mortgage',
+          value: 1036,
+          parent: 'Mortgage',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: true,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Checking or savings account',
+          value: 63133,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Checking account',
+          value: 47811,
+          parent: 'Checking or savings account',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Other banking product or service',
+          value: 9113,
+          parent: 'Checking or savings account',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Savings account',
+          value: 4305,
+          parent: 'Checking or savings account',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'CD (Certificate of Deposit)',
+          value: 1863,
+          parent: 'Checking or savings account',
+          visible: false,
+          width: 0.4
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: false,
+          pctOfSet: 0,
+          name: 'Personal line of credit',
+          value: 41,
+          parent: 'Checking or savings account',
+          visible: false,
+          width: 0.4
+        }
+      ],
+      tags: [
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Servicemember',
+          value: 72491,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Older American',
+          value: 27082,
+          parent: false,
+          visible: true,
+          width: 0.5
+        },
+        {
+          hasChildren: false,
+          isNotFilter: false,
+          isParent: true,
+          pctOfSet: 0,
+          name: 'Older American, Servicemember',
+          value: 9098,
+          parent: false,
+          visible: true,
+          width: 0.5
+        }
+      ]
+    },
+    subLens: '',
+    tooltip: false,
+    total: 846111
+  }
+
 export const trendsLensIssueResults = { "activeCall": "", "chartType": "line", "colorMap": { "Incorrect information on your report": "#2cb34a", "Problem with a credit reporting company's investigation into an existing problem": "#addc91", "Attempts to collect debt not owed": "#257675", "Managing an account": "#9ec4c3", "Improper use of your report": "#0072ce", "Complaints": "#ADDC91", "Other": "#a2a3a4" }, "error": false, "expandedTrends": [], "filterNames": [ "Credit reporting, credit repair services, or other personal consumer reports", "Debt collection", "Credit card or prepaid card", "Mortgage", "Checking or savings account", "Incorrect information on your report", "Problem with a credit reporting company's investigation into an existing problem", "Attempts to collect debt not owed", "Managing an account", "Improper use of your report" ], "focus": "", "isLoading": false, "lastDate": "2020-05-01T00:00:00.000Z", "lens": "Issue", "results": { "dateRangeArea": [ { "name": "Other", "value": 9185, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Other", "value": 10444, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Other", "value": 2174, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Incorrect information on your report", "value": 12463, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Incorrect information on your report", "value": 15459, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Incorrect information on your report", "value": 5095, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 3508, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 4445, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 1354, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Attempts to collect debt not owed", "value": 2320, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Attempts to collect debt not owed", "value": 2457, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Attempts to collect debt not owed", "value": 593, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Managing an account", "value": 1050, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Managing an account", "value": 1274, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Managing an account", "value": 248, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Improper use of your report", "value": 980, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Improper use of your report", "value": 1033, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Improper use of your report", "value": 357, "date": new Date("2020-05-01T00:00:00.000Z") } ], "dateRangeBrush": [ { "date": new Date("2020-01-01T00:00:00.000Z"), "value": 26413 }, { "date": new Date("2020-02-01T00:00:00.000Z"), "value": 25096 }, { "date": new Date("2020-03-01T00:00:00.000Z"), "value": 29506 }, { "date": new Date("2020-04-01T00:00:00.000Z"), "value": 35112 }, { "date": new Date("2020-05-01T00:00:00.000Z"), "value": 9821 } ], "dateRangeLine": { "dataByTopic": [ { "topic": "Incorrect information on your report", "topicName": "Incorrect information on your report", "dashed": false, "show": true, "dates": [ { "name": "Incorrect information on your report", "date": "2020-03-01T00:00:00.000Z", "value": 12463 }, { "name": "Incorrect information on your report", "date": "2020-04-01T00:00:00.000Z", "value": 15459 }, { "name": "Incorrect information on your report", "date": "2020-05-01T00:00:00.000Z", "value": 5095 } ] }, { "topic": "Problem with a credit reporting company's investigation into an existing problem", "topicName": "Problem with a credit reporting company's investigation into an existing problem", "dashed": false, "show": true, "dates": [ { "name": "Problem with a credit reporting company's investigation into an existing problem", "date": "2020-03-01T00:00:00.000Z", "value": 3508 }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "date": "2020-04-01T00:00:00.000Z", "value": 4445 }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "date": "2020-05-01T00:00:00.000Z", "value": 1354 } ] }, { "topic": "Attempts to collect debt not owed", "topicName": "Attempts to collect debt not owed", "dashed": false, "show": true, "dates": [ { "name": "Attempts to collect debt not owed", "date": "2020-03-01T00:00:00.000Z", "value": 2320 }, { "name": "Attempts to collect debt not owed", "date": "2020-04-01T00:00:00.000Z", "value": 2457 }, { "name": "Attempts to collect debt not owed", "date": "2020-05-01T00:00:00.000Z", "value": 593 } ] }, { "topic": "Managing an account", "topicName": "Managing an account", "dashed": false, "show": true, "dates": [ { "name": "Managing an account", "date": "2020-03-01T00:00:00.000Z", "value": 1050 }, { "name": "Managing an account", "date": "2020-04-01T00:00:00.000Z", "value": 1274 }, { "name": "Managing an account", "date": "2020-05-01T00:00:00.000Z", "value": 248 } ] }, { "topic": "Improper use of your report", "topicName": "Improper use of your report", "dashed": false, "show": true, "dates": [ { "name": "Improper use of your report", "date": "2020-03-01T00:00:00.000Z", "value": 980 }, { "name": "Improper use of your report", "date": "2020-04-01T00:00:00.000Z", "value": 1033 }, { "name": "Improper use of your report", "date": "2020-05-01T00:00:00.000Z", "value": 357 } ] } ] }, "issue": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Incorrect information on your report", "value": 33017, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information belongs to someone else", "value": 24403, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account status incorrect", "value": 3042, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account information incorrect", "value": 2849, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Personal information incorrect", "value": 1066, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Public record information inaccurate", "value": 578, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Old information reappears or never goes away", "value": 576, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information is missing that should be on the report", "value": 348, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information is incorrect", "value": 36, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information that should be on the report is missing", "value": 9, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Incorrect information on your report", "name": "More Information about Incorrect information on your report", "splitterText": "More Information about Incorrect information on your report", "value": "", "parent": "Incorrect information on your report", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 9307, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Their investigation did not fix an error on your report", "value": 5706, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Investigation took more than 30 days", "value": 1572, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Was not notified of investigation status or results", "value": 1173, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Difficulty submitting a dispute or getting information about a dispute over the phone", "value": 495, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem with personal statement of dispute", "value": 329, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Problem with a credit reporting company's investigation into an existing problem", "name": "More Information about Problem with a credit reporting company's investigation into an existing problem", "splitterText": "More Information about Problem with a credit reporting company's investigation into an existing problem", "value": "", "parent": "Problem with a credit reporting company's investigation into an existing problem", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Attempts to collect debt not owed", "value": 5370, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Debt is not yours", "value": 2571, "parent": "Attempts to collect debt not owed", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Debt was result of identity theft", "value": 1771, "parent": "Attempts to collect debt not owed", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Debt was paid", "value": 868, "parent": "Attempts to collect debt not owed", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Debt was already discharged in bankruptcy and is no longer owed", "value": 160, "parent": "Attempts to collect debt not owed", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Attempts to collect debt not owed", "name": "More Information about Attempts to collect debt not owed", "splitterText": "More Information about Attempts to collect debt not owed", "value": "", "parent": "Attempts to collect debt not owed", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Managing an account", "value": 2572, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Deposits and withdrawals", "value": 841, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem using a debit or ATM card", "value": 446, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Banking errors", "value": 351, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Funds not handled or disbursed as instructed", "value": 252, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem accessing account", "value": 245, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem making or receiving payments", "value": 163, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Fee problem", "value": 141, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Cashing a check", "value": 93, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Deposits or withdrawals", "value": 21, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem with renewal", "value": 10, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem with fees or penalties", "value": 9, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Managing an account", "name": "More Information about Managing an account", "splitterText": "More Information about Managing an account", "value": "", "parent": "Managing an account", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Improper use of your report", "value": 2370, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit inquiries on your report that you don't recognize", "value": 1678, "parent": "Improper use of your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Reporting company used your report improperly", "value": 647, "parent": "Improper use of your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Received unsolicited financial product or insurance offers after opting out", "value": 22, "parent": "Improper use of your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Report provided to employer without your written authorization", "value": 10, "parent": "Improper use of your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Improper use of your report", "name": "More Information about Improper use of your report", "splitterText": "More Information about Improper use of your report", "value": "", "parent": "Improper use of your report", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false } ], "product": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 45278, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit reporting", "value": 44896, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other personal consumer report", "value": 301, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit repair services", "value": 81, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Credit reporting, credit repair services, or other personal consumer reports", "name": "More Information about Credit reporting, credit repair services, or other personal consumer reports", "splitterText": "More Information about Credit reporting, credit repair services, or other personal consumer reports", "value": "", "parent": "Credit reporting, credit repair services, or other personal consumer reports", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Debt collection", "value": 9782, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other debt", "value": 2692, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "I do not know", "value": 2449, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit card debt", "value": 2258, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Medical debt", "value": 1408, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Auto debt", "value": 310, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Payday loan debt", "value": 287, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Mortgage debt", "value": 175, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Federal student loan debt", "value": 107, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Private student loan debt", "value": 96, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Debt collection", "name": "More Information about Debt collection", "splitterText": "More Information about Debt collection", "value": "", "parent": "Debt collection", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Credit card or prepaid card", "value": 6284, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "General-purpose credit card or charge card", "value": 4657, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Store credit card", "value": 828, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Government benefit card", "value": 414, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "General-purpose prepaid card", "value": 337, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Payroll card", "value": 33, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Gift card", "value": 14, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Student prepaid card", "value": 1, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Credit card or prepaid card", "name": "More Information about Credit card or prepaid card", "splitterText": "More Information about Credit card or prepaid card", "value": "", "parent": "Credit card or prepaid card", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Mortgage", "value": 4676, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Conventional home mortgage", "value": 2971, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "FHA mortgage", "value": 788, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "VA mortgage", "value": 350, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other type of mortgage", "value": 279, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Home equity loan or line of credit (HELOC)", "value": 243, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Reverse mortgage", "value": 45, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Mortgage", "name": "More Information about Mortgage", "splitterText": "More Information about Mortgage", "value": "", "parent": "Mortgage", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Checking or savings account", "value": 4101, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Checking account", "value": 3187, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other banking product or service", "value": 494, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Savings account", "value": 298, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "CD (Certificate of Deposit)", "value": 121, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Personal line of credit", "value": 1, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Checking or savings account", "name": "More Information about Checking or savings account", "splitterText": "More Information about Checking or savings account", "value": "", "parent": "Checking or savings account", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false } ], "collections": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Servicemember", "value": 5172, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American", "value": 2352, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American, Servicemember", "value": 640, "parent": false, "visible": true, "width": 0.5 } ] }, "subLens": "", "tooltip": false, "total": 74439 }
diff --git a/src/reducers/__tests__/trends.spec.jsx b/src/reducers/__tests__/trends.spec.jsx
index 557f33fed..c1bb8b5e1 100644
--- a/src/reducers/__tests__/trends.spec.jsx
+++ b/src/reducers/__tests__/trends.spec.jsx
@@ -244,21 +244,21 @@ describe( 'reducer:trends', () => {
       expect( result ).toEqual( trendsAggsDupeResults )
     } )
 
-    it( 'maps data to object state - Missing Bucket', () => {
-      state.lens = 'Product'
-      action.data.aggregations = trendsAggsMissingBuckets
-      result = target( state, action )
-      expect( result ).toEqual( trendsAggsMissingBucketsResults )
-    } )
+    // it( 'maps data to object state - Missing Bucket', () => {
+    //   state.lens = 'Product'
+    //   action.data.aggregations = trendsAggsMissingBuckets
+    //   result = target( state, action )
+    //   expect( result ).toEqual( trendsAggsMissingBucketsResults )
+    // } )
 
-    it( 'maps data to object state - Focus', () => {
-      state.lens = 'Product'
-      state.subLens = 'sub_product'
-      state.focus = 'Debt collection'
-      action.data.aggregations = trendsFocusAggs
-      result = target( state, action )
-      expect( result ).toEqual( trendsFocusAggsResults )
-    } )
+    // it( 'maps data to object state - Focus', () => {
+    //   state.lens = 'Product'
+    //   state.subLens = 'sub_product'
+    //   state.focus = 'Debt collection'
+    //   action.data.aggregations = trendsFocusAggs
+    //   result = target( state, action )
+    //   expect( result ).toEqual( trendsFocusAggsResults )
+    // } )
 
   } )
 

From f68b439da4e64de3cab5e50672678592331b3e49 Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Tue, 7 Jul 2020 22:13:37 -0400
Subject: [PATCH 26/34] linting

---
 src/components/Trends/ExternalTooltip.jsx |  2 +-
 src/reducers/trends.jsx                   | 35 -----------------------
 2 files changed, 1 insertion(+), 36 deletions(-)

diff --git a/src/components/Trends/ExternalTooltip.jsx b/src/components/Trends/ExternalTooltip.jsx
index f49e016c0..f484ea91a 100644
--- a/src/components/Trends/ExternalTooltip.jsx
+++ b/src/components/Trends/ExternalTooltip.jsx
@@ -9,7 +9,7 @@ import { sanitizeHtmlId } from '../../utils'
 
 export class ExternalTooltip extends React.Component {
   _spanFormatter( value ) {
-    const { focus, lens } = this.props
+    const { lens } = this.props
     const elements = []
     const lensToUse = this.props.focus ? this.props.subLens :
      this.props.lens
diff --git a/src/reducers/trends.jsx b/src/reducers/trends.jsx
index 22f95a03f..da914fec7 100644
--- a/src/reducers/trends.jsx
+++ b/src/reducers/trends.jsx
@@ -99,41 +99,6 @@ export function processBucket( state, agg ) {
     .map( obj => getD3Names( obj, nameMap, expandedTrends ) )
 }
 
-/**
- * helper function to get d3 bar chart data
- * @param {object} obj rowdata we are processing
- * @param {array} nameMap list of names we are keeping track of
- * @param {array} expandedTrends list of trends that are open in view
- * @returns {object} the rowdata for row chart
- */
-function getD3Names( obj, nameMap, expandedTrends ) {
-  let name = obj.key
-  // D3 doesnt allow dupe keys, so we have to to append
-  // spaces so we have unique keys
-  while ( nameMap[name] ) {
-    name += ' '
-  }
-
-  nameMap[name] = true
-
-  return obj.splitterText ? {
-    ...obj,
-    visible: expandedTrends.indexOf( obj.parent ) > -1
-  } : {
-    hasChildren: Boolean( obj.hasChildren ),
-    isNotFilter: false,
-    isParent: Boolean( obj.isParent ),
-    pctOfSet: Number( obj.pctOfSet ),
-    name: name,
-    value: Number( obj.doc_count ),
-    parent: obj.parent || false,
-    // visible if no parent, or it is in expanded trends
-    visible: !obj.parent || expandedTrends.indexOf( obj.parent ) > -1,
-    // this adjusts the thickness of the parent or child bars
-    width: obj.parent ? 0.4 : 0.5
-  }
-}
-
 /**
  * helper function to pluralize field values
  * @param {lens} lens value we are processing

From e5088ecdc9f2ca3e6273814a4b86cb796303d5a3 Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Tue, 7 Jul 2020 22:32:24 -0400
Subject: [PATCH 27/34] restoring commented tests

---
 src/reducers/__tests__/trends.spec.jsx | 30 ++++++++++++++------------
 1 file changed, 16 insertions(+), 14 deletions(-)

diff --git a/src/reducers/__tests__/trends.spec.jsx b/src/reducers/__tests__/trends.spec.jsx
index 70b8b23db..0d74a0541 100644
--- a/src/reducers/__tests__/trends.spec.jsx
+++ b/src/reducers/__tests__/trends.spec.jsx
@@ -241,27 +241,29 @@ describe( 'reducer:trends', () => {
     //   expect( result ).toEqual( trendsLensIssueResults )
     // } )
 
+    // This test is causing a pctChange = 'null' error, but otherwise passing
+    // JRC 7-7
     it( 'maps data to object state - dupe rows', () => {
       action.data.aggregations = trendsAggsDupes
       result = target( state, action )
       expect( result ).toEqual( trendsAggsDupeResults )
     } )
 
-    // it( 'maps data to object state - Missing Bucket', () => {
-    //   state.lens = 'Product'
-    //   action.data.aggregations = trendsAggsMissingBuckets
-    //   result = target( state, action )
-    //   expect( result ).toEqual( trendsAggsMissingBucketsResults )
-    // } )
+    it( 'maps data to object state - Missing Bucket', () => {
+      state.lens = 'Product'
+      action.data.aggregations = trendsAggsMissingBuckets
+      result = target( state, action )
+      expect( result ).toEqual( trendsAggsMissingBucketsResults )
+    } )
 
-    // it( 'maps data to object state - Focus', () => {
-    //   state.lens = 'Product'
-    //   state.subLens = 'sub_product'
-    //   state.focus = 'Debt collection'
-    //   action.data.aggregations = trendsFocusAggs
-    //   result = target( state, action )
-    //   expect( result ).toEqual( trendsFocusAggsResults )
-    // } )
+    it( 'maps data to object state - Focus', () => {
+      state.lens = 'Product'
+      state.subLens = 'sub_product'
+      state.focus = 'Debt collection'
+      action.data.aggregations = trendsFocusAggs
+      result = target( state, action )
+      expect( result ).toEqual( trendsFocusAggsResults )
+    } )
 
   } )
 

From ae3f18e29d20fef39e0ebdde9692b96e8bafe9da Mon Sep 17 00:00:00 2001
From: Richard Dinh <richard.dinh@cfpb.gov>
Date: Tue, 7 Jul 2020 23:26:42 -0400
Subject: [PATCH 28/34] fix tests and fixture

---
 .../__fixtures__/trendsAggsDupeResults.jsx    | 1620 +----------------
 .../trendsAggsMissingBucketsResults.jsx       |    2 +-
 src/reducers/__fixtures__/trendsFocusAggs.jsx |  790 +-------
 src/reducers/__fixtures__/trendsResults.jsx   |    2 +-
 src/reducers/__tests__/trends.spec.jsx        |   11 +-
 5 files changed, 10 insertions(+), 2415 deletions(-)

diff --git a/src/reducers/__fixtures__/trendsAggsDupeResults.jsx b/src/reducers/__fixtures__/trendsAggsDupeResults.jsx
index 90c485824..1d19302b4 100644
--- a/src/reducers/__fixtures__/trendsAggsDupeResults.jsx
+++ b/src/reducers/__fixtures__/trendsAggsDupeResults.jsx
@@ -1,1619 +1 @@
-export default {
-    activeCall: '',
-    chartType: 'line',
-    colorMap: {
-      Complaints: '#ADDC91',
-      Other: '#a2a3a4',
-      'All other products': '#a2a3a4',
-      'All other companies': '#a2a3a4',
-      'All other values': '#a2a3a4'
-    },
-    error: false,
-    expandedTrends: [],
-    filterNames: [
-      'Credit reporting, credit repair services, or other personal consumer reports',
-      'Debt collection',
-      'Credit card or prepaid card',
-      'Mortgage',
-      'Checking or savings account',
-      'Incorrect information on your report',
-      'Problem with a credit reporting company\'s investigation into an existing problem',
-      'Attempts to collect debt not owed',
-      'Improper use of your report',
-      'Managing an account',
-      'Incorrect information on credit report'
-    ],
-    focus: '',
-    isLoading: false,
-    lastDate: '2020-07-01T00:00:00.000Z',
-    lens: 'Overview',
-    results: {
-      dateRangeArea: [],
-      dateRangeBrush: [
-        {
-          date: '2011-12-01T00:00:00.000Z',
-          value: 2536
-        },
-        {
-          date: '2012-01-01T00:00:00.000Z',
-          value: 3230
-        },
-        {
-          date: '2012-02-01T00:00:00.000Z',
-          value: 3509
-        },
-        {
-          date: '2012-03-01T00:00:00.000Z',
-          value: 6230
-        },
-        {
-          date: '2012-04-01T00:00:00.000Z',
-          value: 5703
-        },
-        {
-          date: '2012-05-01T00:00:00.000Z',
-          value: 7617
-        },
-        {
-          date: '2012-06-01T00:00:00.000Z',
-          value: 7841
-        },
-        {
-          date: '2012-07-01T00:00:00.000Z',
-          value: 6755
-        },
-        {
-          date: '2012-08-01T00:00:00.000Z',
-          value: 6877
-        },
-        {
-          date: '2012-09-01T00:00:00.000Z',
-          value: 5493
-        },
-        {
-          date: '2012-10-01T00:00:00.000Z',
-          value: 6741
-        },
-        {
-          date: '2012-11-01T00:00:00.000Z',
-          value: 6139
-        },
-        {
-          date: '2012-12-01T00:00:00.000Z',
-          value: 6238
-        },
-        {
-          date: '2013-01-01T00:00:00.000Z',
-          value: 9741
-        },
-        {
-          date: '2013-02-01T00:00:00.000Z',
-          value: 8349
-        },
-        {
-          date: '2013-03-01T00:00:00.000Z',
-          value: 8784
-        },
-        {
-          date: '2013-04-01T00:00:00.000Z',
-          value: 8632
-        },
-        {
-          date: '2013-05-01T00:00:00.000Z',
-          value: 8170
-        },
-        {
-          date: '2013-06-01T00:00:00.000Z',
-          value: 8035
-        },
-        {
-          date: '2013-07-01T00:00:00.000Z',
-          value: 9271
-        },
-        {
-          date: '2013-08-01T00:00:00.000Z',
-          value: 9565
-        },
-        {
-          date: '2013-09-01T00:00:00.000Z',
-          value: 9636
-        },
-        {
-          date: '2013-10-01T00:00:00.000Z',
-          value: 9241
-        },
-        {
-          date: '2013-11-01T00:00:00.000Z',
-          value: 9319
-        },
-        {
-          date: '2013-12-01T00:00:00.000Z',
-          value: 9474
-        },
-        {
-          date: '2014-01-01T00:00:00.000Z',
-          value: 12617
-        },
-        {
-          date: '2014-02-01T00:00:00.000Z',
-          value: 13048
-        },
-        {
-          date: '2014-03-01T00:00:00.000Z',
-          value: 13943
-        },
-        {
-          date: '2014-04-01T00:00:00.000Z',
-          value: 13840
-        },
-        {
-          date: '2014-05-01T00:00:00.000Z',
-          value: 12167
-        },
-        {
-          date: '2014-06-01T00:00:00.000Z',
-          value: 12520
-        },
-        {
-          date: '2014-07-01T00:00:00.000Z',
-          value: 13415
-        },
-        {
-          date: '2014-08-01T00:00:00.000Z',
-          value: 13186
-        },
-        {
-          date: '2014-09-01T00:00:00.000Z',
-          value: 12465
-        },
-        {
-          date: '2014-10-01T00:00:00.000Z',
-          value: 12901
-        },
-        {
-          date: '2014-11-01T00:00:00.000Z',
-          value: 11257
-        },
-        {
-          date: '2014-12-01T00:00:00.000Z',
-          value: 11684
-        },
-        {
-          date: '2015-01-01T00:00:00.000Z',
-          value: 12627
-        },
-        {
-          date: '2015-02-01T00:00:00.000Z',
-          value: 12680
-        },
-        {
-          date: '2015-03-01T00:00:00.000Z',
-          value: 14514
-        },
-        {
-          date: '2015-04-01T00:00:00.000Z',
-          value: 13753
-        },
-        {
-          date: '2015-05-01T00:00:00.000Z',
-          value: 13682
-        },
-        {
-          date: '2015-06-01T00:00:00.000Z',
-          value: 14517
-        },
-        {
-          date: '2015-07-01T00:00:00.000Z',
-          value: 15920
-        },
-        {
-          date: '2015-08-01T00:00:00.000Z',
-          value: 15766
-        },
-        {
-          date: '2015-09-01T00:00:00.000Z',
-          value: 14336
-        },
-        {
-          date: '2015-10-01T00:00:00.000Z',
-          value: 14899
-        },
-        {
-          date: '2015-11-01T00:00:00.000Z',
-          value: 12897
-        },
-        {
-          date: '2015-12-01T00:00:00.000Z',
-          value: 12884
-        },
-        {
-          date: '2016-01-01T00:00:00.000Z',
-          value: 13840
-        },
-        {
-          date: '2016-02-01T00:00:00.000Z',
-          value: 14140
-        },
-        {
-          date: '2016-03-01T00:00:00.000Z',
-          value: 16611
-        },
-        {
-          date: '2016-04-01T00:00:00.000Z',
-          value: 15608
-        },
-        {
-          date: '2016-05-01T00:00:00.000Z',
-          value: 15517
-        },
-        {
-          date: '2016-06-01T00:00:00.000Z',
-          value: 16063
-        },
-        {
-          date: '2016-07-01T00:00:00.000Z',
-          value: 16043
-        },
-        {
-          date: '2016-08-01T00:00:00.000Z',
-          value: 17694
-        },
-        {
-          date: '2016-09-01T00:00:00.000Z',
-          value: 17584
-        },
-        {
-          date: '2016-10-01T00:00:00.000Z',
-          value: 17820
-        },
-        {
-          date: '2016-11-01T00:00:00.000Z',
-          value: 15207
-        },
-        {
-          date: '2016-12-01T00:00:00.000Z',
-          value: 15341
-        },
-        {
-          date: '2017-01-01T00:00:00.000Z',
-          value: 21006
-        },
-        {
-          date: '2017-02-01T00:00:00.000Z',
-          value: 18110
-        },
-        {
-          date: '2017-03-01T00:00:00.000Z',
-          value: 19762
-        },
-        {
-          date: '2017-04-01T00:00:00.000Z',
-          value: 18544
-        },
-        {
-          date: '2017-05-01T00:00:00.000Z',
-          value: 19304
-        },
-        {
-          date: '2017-06-01T00:00:00.000Z',
-          value: 18567
-        },
-        {
-          date: '2017-07-01T00:00:00.000Z',
-          value: 20433
-        },
-        {
-          date: '2017-08-01T00:00:00.000Z',
-          value: 21402
-        },
-        {
-          date: '2017-09-01T00:00:00.000Z',
-          value: 27357
-        },
-        {
-          date: '2017-10-01T00:00:00.000Z',
-          value: 20456
-        },
-        {
-          date: '2017-11-01T00:00:00.000Z',
-          value: 18990
-        },
-        {
-          date: '2017-12-01T00:00:00.000Z',
-          value: 19034
-        },
-        {
-          date: '2018-01-01T00:00:00.000Z',
-          value: 23650
-        },
-        {
-          date: '2018-02-01T00:00:00.000Z',
-          value: 21978
-        },
-        {
-          date: '2018-03-01T00:00:00.000Z',
-          value: 23639
-        },
-        {
-          date: '2018-04-01T00:00:00.000Z',
-          value: 24327
-        },
-        {
-          date: '2018-05-01T00:00:00.000Z',
-          value: 22339
-        },
-        {
-          date: '2018-06-01T00:00:00.000Z',
-          value: 20111
-        },
-        {
-          date: '2018-07-01T00:00:00.000Z',
-          value: 20963
-        },
-        {
-          date: '2018-08-01T00:00:00.000Z',
-          value: 21726
-        },
-        {
-          date: '2018-09-01T00:00:00.000Z',
-          value: 19072
-        },
-        {
-          date: '2018-10-01T00:00:00.000Z',
-          value: 21903
-        },
-        {
-          date: '2018-11-01T00:00:00.000Z',
-          value: 19053
-        },
-        {
-          date: '2018-12-01T00:00:00.000Z',
-          value: 18552
-        },
-        {
-          date: '2019-01-01T00:00:00.000Z',
-          value: 18934
-        },
-        {
-          date: '2019-02-01T00:00:00.000Z',
-          value: 20206
-        },
-        {
-          date: '2019-03-01T00:00:00.000Z',
-          value: 23412
-        },
-        {
-          date: '2019-04-01T00:00:00.000Z',
-          value: 22915
-        },
-        {
-          date: '2019-05-01T00:00:00.000Z',
-          value: 23850
-        },
-        {
-          date: '2019-06-01T00:00:00.000Z',
-          value: 23352
-        },
-        {
-          date: '2019-07-01T00:00:00.000Z',
-          value: 25090
-        },
-        {
-          date: '2019-08-01T00:00:00.000Z',
-          value: 26059
-        },
-        {
-          date: '2019-09-01T00:00:00.000Z',
-          value: 23575
-        },
-        {
-          date: '2019-10-01T00:00:00.000Z',
-          value: 25636
-        },
-        {
-          date: '2019-11-01T00:00:00.000Z',
-          value: 22657
-        },
-        {
-          date: '2019-12-01T00:00:00.000Z',
-          value: 21704
-        },
-        {
-          date: '2020-01-01T00:00:00.000Z',
-          value: 26413
-        },
-        {
-          date: '2020-02-01T00:00:00.000Z',
-          value: 25097
-        },
-        {
-          date: '2020-03-01T00:00:00.000Z',
-          value: 29494
-        },
-        {
-          date: '2020-04-01T00:00:00.000Z',
-          value: 34805
-        },
-        {
-          date: '2020-05-01T00:00:00.000Z',
-          value: 37146
-        },
-        {
-          date: '2020-06-01T00:00:00.000Z',
-          value: 32699
-        },
-        {
-          date: '2020-07-01T00:00:00.000Z',
-          value: 1152
-        }
-      ],
-      dateRangeLine: {
-        dataByTopic: [
-          {
-            topic: 'Complaints',
-            topicName: 'Complaints',
-            dashed: false,
-            show: true,
-            dates: [
-              {
-                date: '2011-12-01T00:00:00.000Z',
-                value: 2536
-              },
-              {
-                date: '2012-01-01T00:00:00.000Z',
-                value: 3230
-              },
-              {
-                date: '2012-02-01T00:00:00.000Z',
-                value: 3509
-              },
-              {
-                date: '2012-03-01T00:00:00.000Z',
-                value: 6230
-              },
-              {
-                date: '2012-04-01T00:00:00.000Z',
-                value: 5703
-              },
-              {
-                date: '2012-05-01T00:00:00.000Z',
-                value: 7617
-              },
-              {
-                date: '2012-06-01T00:00:00.000Z',
-                value: 7841
-              },
-              {
-                date: '2012-07-01T00:00:00.000Z',
-                value: 6755
-              },
-              {
-                date: '2012-08-01T00:00:00.000Z',
-                value: 6877
-              },
-              {
-                date: '2012-09-01T00:00:00.000Z',
-                value: 5493
-              },
-              {
-                date: '2012-10-01T00:00:00.000Z',
-                value: 6741
-              },
-              {
-                date: '2012-11-01T00:00:00.000Z',
-                value: 6139
-              },
-              {
-                date: '2012-12-01T00:00:00.000Z',
-                value: 6238
-              },
-              {
-                date: '2013-01-01T00:00:00.000Z',
-                value: 9741
-              },
-              {
-                date: '2013-02-01T00:00:00.000Z',
-                value: 8349
-              },
-              {
-                date: '2013-03-01T00:00:00.000Z',
-                value: 8784
-              },
-              {
-                date: '2013-04-01T00:00:00.000Z',
-                value: 8632
-              },
-              {
-                date: '2013-05-01T00:00:00.000Z',
-                value: 8170
-              },
-              {
-                date: '2013-06-01T00:00:00.000Z',
-                value: 8035
-              },
-              {
-                date: '2013-07-01T00:00:00.000Z',
-                value: 9271
-              },
-              {
-                date: '2013-08-01T00:00:00.000Z',
-                value: 9565
-              },
-              {
-                date: '2013-09-01T00:00:00.000Z',
-                value: 9636
-              },
-              {
-                date: '2013-10-01T00:00:00.000Z',
-                value: 9241
-              },
-              {
-                date: '2013-11-01T00:00:00.000Z',
-                value: 9319
-              },
-              {
-                date: '2013-12-01T00:00:00.000Z',
-                value: 9474
-              },
-              {
-                date: '2014-01-01T00:00:00.000Z',
-                value: 12617
-              },
-              {
-                date: '2014-02-01T00:00:00.000Z',
-                value: 13048
-              },
-              {
-                date: '2014-03-01T00:00:00.000Z',
-                value: 13943
-              },
-              {
-                date: '2014-04-01T00:00:00.000Z',
-                value: 13840
-              },
-              {
-                date: '2014-05-01T00:00:00.000Z',
-                value: 12167
-              },
-              {
-                date: '2014-06-01T00:00:00.000Z',
-                value: 12520
-              },
-              {
-                date: '2014-07-01T00:00:00.000Z',
-                value: 13415
-              },
-              {
-                date: '2014-08-01T00:00:00.000Z',
-                value: 13186
-              },
-              {
-                date: '2014-09-01T00:00:00.000Z',
-                value: 12465
-              },
-              {
-                date: '2014-10-01T00:00:00.000Z',
-                value: 12901
-              },
-              {
-                date: '2014-11-01T00:00:00.000Z',
-                value: 11257
-              },
-              {
-                date: '2014-12-01T00:00:00.000Z',
-                value: 11684
-              },
-              {
-                date: '2015-01-01T00:00:00.000Z',
-                value: 12627
-              },
-              {
-                date: '2015-02-01T00:00:00.000Z',
-                value: 12680
-              },
-              {
-                date: '2015-03-01T00:00:00.000Z',
-                value: 14514
-              },
-              {
-                date: '2015-04-01T00:00:00.000Z',
-                value: 13753
-              },
-              {
-                date: '2015-05-01T00:00:00.000Z',
-                value: 13682
-              },
-              {
-                date: '2015-06-01T00:00:00.000Z',
-                value: 14517
-              },
-              {
-                date: '2015-07-01T00:00:00.000Z',
-                value: 15920
-              },
-              {
-                date: '2015-08-01T00:00:00.000Z',
-                value: 15766
-              },
-              {
-                date: '2015-09-01T00:00:00.000Z',
-                value: 14336
-              },
-              {
-                date: '2015-10-01T00:00:00.000Z',
-                value: 14899
-              },
-              {
-                date: '2015-11-01T00:00:00.000Z',
-                value: 12897
-              },
-              {
-                date: '2015-12-01T00:00:00.000Z',
-                value: 12884
-              },
-              {
-                date: '2016-01-01T00:00:00.000Z',
-                value: 13840
-              },
-              {
-                date: '2016-02-01T00:00:00.000Z',
-                value: 14140
-              },
-              {
-                date: '2016-03-01T00:00:00.000Z',
-                value: 16611
-              },
-              {
-                date: '2016-04-01T00:00:00.000Z',
-                value: 15608
-              },
-              {
-                date: '2016-05-01T00:00:00.000Z',
-                value: 15517
-              },
-              {
-                date: '2016-06-01T00:00:00.000Z',
-                value: 16063
-              },
-              {
-                date: '2016-07-01T00:00:00.000Z',
-                value: 16043
-              },
-              {
-                date: '2016-08-01T00:00:00.000Z',
-                value: 17694
-              },
-              {
-                date: '2016-09-01T00:00:00.000Z',
-                value: 17584
-              },
-              {
-                date: '2016-10-01T00:00:00.000Z',
-                value: 17820
-              },
-              {
-                date: '2016-11-01T00:00:00.000Z',
-                value: 15207
-              },
-              {
-                date: '2016-12-01T00:00:00.000Z',
-                value: 15341
-              },
-              {
-                date: '2017-01-01T00:00:00.000Z',
-                value: 21006
-              },
-              {
-                date: '2017-02-01T00:00:00.000Z',
-                value: 18110
-              },
-              {
-                date: '2017-03-01T00:00:00.000Z',
-                value: 19762
-              },
-              {
-                date: '2017-04-01T00:00:00.000Z',
-                value: 18544
-              },
-              {
-                date: '2017-05-01T00:00:00.000Z',
-                value: 19304
-              },
-              {
-                date: '2017-06-01T00:00:00.000Z',
-                value: 18567
-              },
-              {
-                date: '2017-07-01T00:00:00.000Z',
-                value: 20433
-              },
-              {
-                date: '2017-08-01T00:00:00.000Z',
-                value: 21402
-              },
-              {
-                date: '2017-09-01T00:00:00.000Z',
-                value: 27357
-              },
-              {
-                date: '2017-10-01T00:00:00.000Z',
-                value: 20456
-              },
-              {
-                date: '2017-11-01T00:00:00.000Z',
-                value: 18990
-              },
-              {
-                date: '2017-12-01T00:00:00.000Z',
-                value: 19034
-              },
-              {
-                date: '2018-01-01T00:00:00.000Z',
-                value: 23650
-              },
-              {
-                date: '2018-02-01T00:00:00.000Z',
-                value: 21978
-              },
-              {
-                date: '2018-03-01T00:00:00.000Z',
-                value: 23639
-              },
-              {
-                date: '2018-04-01T00:00:00.000Z',
-                value: 24327
-              },
-              {
-                date: '2018-05-01T00:00:00.000Z',
-                value: 22339
-              },
-              {
-                date: '2018-06-01T00:00:00.000Z',
-                value: 20111
-              },
-              {
-                date: '2018-07-01T00:00:00.000Z',
-                value: 20963
-              },
-              {
-                date: '2018-08-01T00:00:00.000Z',
-                value: 21726
-              },
-              {
-                date: '2018-09-01T00:00:00.000Z',
-                value: 19072
-              },
-              {
-                date: '2018-10-01T00:00:00.000Z',
-                value: 21903
-              },
-              {
-                date: '2018-11-01T00:00:00.000Z',
-                value: 19053
-              },
-              {
-                date: '2018-12-01T00:00:00.000Z',
-                value: 18552
-              },
-              {
-                date: '2019-01-01T00:00:00.000Z',
-                value: 18934
-              },
-              {
-                date: '2019-02-01T00:00:00.000Z',
-                value: 20206
-              },
-              {
-                date: '2019-03-01T00:00:00.000Z',
-                value: 23412
-              },
-              {
-                date: '2019-04-01T00:00:00.000Z',
-                value: 22915
-              },
-              {
-                date: '2019-05-01T00:00:00.000Z',
-                value: 23850
-              },
-              {
-                date: '2019-06-01T00:00:00.000Z',
-                value: 23352
-              },
-              {
-                date: '2019-07-01T00:00:00.000Z',
-                value: 25090
-              },
-              {
-                date: '2019-08-01T00:00:00.000Z',
-                value: 26059
-              },
-              {
-                date: '2019-09-01T00:00:00.000Z',
-                value: 23575
-              },
-              {
-                date: '2019-10-01T00:00:00.000Z',
-                value: 25636
-              },
-              {
-                date: '2019-11-01T00:00:00.000Z',
-                value: 22657
-              },
-              {
-                date: '2019-12-01T00:00:00.000Z',
-                value: 21704
-              },
-              {
-                date: '2020-01-01T00:00:00.000Z',
-                value: 26413
-              },
-              {
-                date: '2020-02-01T00:00:00.000Z',
-                value: 25097
-              },
-              {
-                date: '2020-03-01T00:00:00.000Z',
-                value: 29494
-              },
-              {
-                date: '2020-04-01T00:00:00.000Z',
-                value: 34805
-              },
-              {
-                date: '2020-05-01T00:00:00.000Z',
-                value: 37146
-              },
-              {
-                date: '2020-06-01T00:00:00.000Z',
-                value: 32699
-              },
-              {
-                date: '2020-07-01T00:00:00.000Z',
-                value: 1152
-              }
-            ]
-          }
-        ]
-      },
-      issue: [
-        {
-          hasChildren: true,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Incorrect information on your report',
-          value: 279586,
-          parent: false,
-          visible: true,
-          width: 0.5
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Information belongs to someone else',
-          value: 159378,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Account status incorrect',
-          value: 41890,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Account information incorrect',
-          value: 38628,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Personal information incorrect',
-          value: 12803,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Old information reappears or never goes away',
-          value: 9833,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Public record information inaccurate',
-          value: 9679,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Information is missing that should be on the report',
-          value: 4950,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Information is incorrect',
-          value: 728,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Information that should be on the report is missing',
-          value: 120,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Incorrect information on your report ',
-          value: 1,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Loan modification,collection,foreclosure',
-          value: 112309,
-          parent: false,
-          visible: true,
-          width: 0.5
-        },
-        {
-          hasChildren: true,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Incorrect information on credit report',
-          value: 102686,
-          parent: false,
-          visible: true,
-          width: 0.5
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Account status',
-          value: 37057,
-          parent: 'Incorrect information on credit report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Information is not mine',
-          value: 32384,
-          parent: 'Incorrect information on credit report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Account terms',
-          value: 10995,
-          parent: 'Incorrect information on credit report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Public record',
-          value: 8876,
-          parent: 'Incorrect information on credit report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Personal information',
-          value: 7529,
-          parent: 'Incorrect information on credit report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Reinserted previously deleted info',
-          value: 5845,
-          parent: 'Incorrect information on credit report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: true,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Problem with a credit reporting company\'s investigation into an existing problem',
-          value: 97724,
-          parent: false,
-          visible: true,
-          width: 0.5
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Their investigation did not fix an error on your report',
-          value: 68211,
-          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Investigation took more than 30 days',
-          value: 9367,
-          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Was not notified of investigation status or results',
-          value: 8509,
-          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Difficulty submitting a dispute or getting information about a dispute over the phone',
-          value: 6492,
-          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Problem with personal statement of dispute',
-          value: 4693,
-          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Loan servicing, payments, escrow account',
-          value: 77333,
-          parent: false,
-          visible: true,
-          width: 0.5
-        }
-      ],
-      product: [
-        {
-          hasChildren: true,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Credit reporting, credit repair services, or other personal consumer reports',
-          value: 436241,
-          parent: false,
-          visible: true,
-          width: 0.5,
-          pctChange: null
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Credit reporting',
-          value: 429446,
-          parent: 'Credit reporting, credit repair services, or other personal consumer reports',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Other personal consumer report',
-          value: 5424,
-          parent: 'Credit reporting, credit repair services, or other personal consumer reports',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Credit repair services',
-          value: 1370,
-          parent: 'Credit reporting, credit repair services, or other personal consumer reports',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Conventional home mortgage',
-          value: 1,
-          parent: 'Credit reporting, credit repair services, or other personal consumer reports',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: true,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Mortgage',
-          value: 304721,
-          parent: false,
-          visible: true,
-          width: 0.5,
-          pctChange: null
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Other mortgage',
-          value: 86635,
-          parent: 'Mortgage',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Conventional fixed mortgage',
-          value: 70613,
-          parent: 'Mortgage',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Conventional home mortgage ',
-          value: 45658,
-          parent: 'Mortgage',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'FHA mortgage',
-          value: 35734,
-          parent: 'Mortgage',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Conventional adjustable mortgage (ARM)',
-          value: 25380,
-          parent: 'Mortgage',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Home equity loan or line of credit',
-          value: 11624,
-          parent: 'Mortgage',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Other type of mortgage',
-          value: 10794,
-          parent: 'Mortgage',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'VA mortgage',
-          value: 9306,
-          parent: 'Mortgage',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Home equity loan or line of credit (HELOC)',
-          value: 5072,
-          parent: 'Mortgage',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Reverse mortgage',
-          value: 3243,
-          parent: 'Mortgage',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Second mortgage',
-          value: 662,
-          parent: 'Mortgage',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: true,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Debt collection',
-          value: 300401,
-          parent: false,
-          visible: true,
-          width: 0.5,
-          pctChange: null
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'I do not know',
-          value: 62985,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Other debt',
-          value: 45441,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Other (i.e. phone, health club, etc.)',
-          value: 44543,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Credit card debt',
-          value: 33298,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Credit card',
-          value: 28698,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Medical debt',
-          value: 24725,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Medical',
-          value: 21187,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Payday loan',
-          value: 7562,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Auto debt',
-          value: 5025,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Mortgage ',
-          value: 4809,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Payday loan debt',
-          value: 4729,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Auto',
-          value: 3755,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Mortgage debt',
-          value: 3432,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Non-federal student loan',
-          value: 2881,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Federal student loan debt',
-          value: 2541,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Federal student loan',
-          value: 2475,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Private student loan debt',
-          value: 2315,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Credit reporting ',
-          value: 140432,
-          parent: false,
-          visible: true,
-          width: 0.5,
-          pctChange: null
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Credit card ',
-          value: 89190,
-          parent: false,
-          visible: true,
-          width: 0.5,
-          pctChange: null
-        }
-      ],
-      tags: [
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Servicemember',
-          value: 115185,
-          parent: false,
-          visible: true,
-          width: 0.5
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Older American',
-          value: 89940,
-          parent: false,
-          visible: true,
-          width: 0.5
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Older American, Servicemember',
-          value: 18620,
-          parent: false,
-          visible: true,
-          width: 0.5
-        }
-      ]
-    },
-    subLens: '',
-    tooltip: false,
-    total: 1660586
-  }
\ No newline at end of file
+export default {"activeCall":"","chartType":"line","colorMap":{"Other":"#a2a3a4","Incorrect information on your report":"#addc91","Problem with a credit reporting company's investigation into an existing problem":"#257675","Attempts to collect debt not owed":"#9ec4c3","Improper use of your report":"#0072ce","Managing an account":"#96c4ed","Complaints":"#ADDC91","All other products":"#a2a3a4","All other companies":"#a2a3a4","All other values":"#a2a3a4"},"error":false,"expandedTrends":[],"filterNames":["Credit reporting, credit repair services, or other personal consumer reports","Debt collection","Credit card or prepaid card","Mortgage","Checking or savings account","Incorrect information on your report","Problem with a credit reporting company's investigation into an existing problem","Attempts to collect debt not owed","Improper use of your report","Managing an account","Incorrect information on credit report"],"focus":"","isLoading":false,"lastDate":"2020-07-01T00:00:00.000Z","lens":"Overview","results":{"dateRangeArea":[{"name":"Other","value":8382,"date":"2017-07-01T00:00:00.000Z"},{"name":"Other","value":10207,"date":"2017-08-01T00:00:00.000Z"},{"name":"Other","value":11240,"date":"2017-09-01T00:00:00.000Z"},{"name":"Other","value":9623,"date":"2017-10-01T00:00:00.000Z"},{"name":"Other","value":8813,"date":"2017-11-01T00:00:00.000Z"},{"name":"Other","value":9127,"date":"2017-12-01T00:00:00.000Z"},{"name":"Other","value":11015,"date":"2018-01-01T00:00:00.000Z"},{"name":"Other","value":9573,"date":"2018-02-01T00:00:00.000Z"},{"name":"Other","value":10571,"date":"2018-03-01T00:00:00.000Z"},{"name":"Other","value":10834,"date":"2018-04-01T00:00:00.000Z"},{"name":"Other","value":9786,"date":"2018-05-01T00:00:00.000Z"},{"name":"Other","value":8558,"date":"2018-06-01T00:00:00.000Z"},{"name":"Other","value":9058,"date":"2018-07-01T00:00:00.000Z"},{"name":"Other","value":9291,"date":"2018-08-01T00:00:00.000Z"},{"name":"Other","value":8126,"date":"2018-09-01T00:00:00.000Z"},{"name":"Other","value":9397,"date":"2018-10-01T00:00:00.000Z"},{"name":"Other","value":7693,"date":"2018-11-01T00:00:00.000Z"},{"name":"Other","value":7739,"date":"2018-12-01T00:00:00.000Z"},{"name":"Other","value":7909,"date":"2019-01-01T00:00:00.000Z"},{"name":"Other","value":8448,"date":"2019-02-01T00:00:00.000Z"},{"name":"Other","value":9547,"date":"2019-03-01T00:00:00.000Z"},{"name":"Other","value":9129,"date":"2019-04-01T00:00:00.000Z"},{"name":"Other","value":9075,"date":"2019-05-01T00:00:00.000Z"},{"name":"Other","value":8678,"date":"2019-06-01T00:00:00.000Z"},{"name":"Other","value":9415,"date":"2019-07-01T00:00:00.000Z"},{"name":"Other","value":9578,"date":"2019-08-01T00:00:00.000Z"},{"name":"Other","value":8697,"date":"2019-09-01T00:00:00.000Z"},{"name":"Other","value":9471,"date":"2019-10-01T00:00:00.000Z"},{"name":"Other","value":8092,"date":"2019-11-01T00:00:00.000Z"},{"name":"Other","value":7813,"date":"2019-12-01T00:00:00.000Z"},{"name":"Other","value":9059,"date":"2020-01-01T00:00:00.000Z"},{"name":"Other","value":8805,"date":"2020-02-01T00:00:00.000Z"},{"name":"Other","value":9186,"date":"2020-03-01T00:00:00.000Z"},{"name":"Other","value":10509,"date":"2020-04-01T00:00:00.000Z"},{"name":"Other","value":10079,"date":"2020-05-01T00:00:00.000Z"},{"name":"Other","value":8257,"date":"2020-06-01T00:00:00.000Z"},{"name":"Other","value":159,"date":"2020-07-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":3976,"date":"2017-07-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5236,"date":"2017-08-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":4491,"date":"2017-09-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":4907,"date":"2017-10-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":4476,"date":"2017-11-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":4677,"date":"2017-12-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5956,"date":"2018-01-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5754,"date":"2018-02-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":6096,"date":"2018-03-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":6459,"date":"2018-04-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5978,"date":"2018-05-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5346,"date":"2018-06-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5764,"date":"2018-07-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":6092,"date":"2018-08-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5420,"date":"2018-09-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":6351,"date":"2018-10-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5849,"date":"2018-11-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5179,"date":"2018-12-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5603,"date":"2019-01-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5827,"date":"2019-02-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":7020,"date":"2019-03-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":6973,"date":"2019-04-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":7679,"date":"2019-05-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":7642,"date":"2019-06-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":8313,"date":"2019-07-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":8911,"date":"2019-08-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":8419,"date":"2019-09-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":8862,"date":"2019-10-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":8161,"date":"2019-11-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":7540,"date":"2019-12-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":10329,"date":"2020-01-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":9631,"date":"2020-02-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":12459,"date":"2020-03-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":15157,"date":"2020-04-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":16863,"date":"2020-05-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":15339,"date":"2020-06-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":639,"date":"2020-07-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":1639,"date":"2017-07-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2271,"date":"2017-08-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2027,"date":"2017-09-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2065,"date":"2017-10-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":1866,"date":"2017-11-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":1618,"date":"2017-12-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2159,"date":"2018-01-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2270,"date":"2018-02-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2200,"date":"2018-03-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2417,"date":"2018-04-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2317,"date":"2018-05-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2227,"date":"2018-06-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2157,"date":"2018-07-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2160,"date":"2018-08-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":1883,"date":"2018-09-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2025,"date":"2018-10-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":1925,"date":"2018-11-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2103,"date":"2018-12-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":1881,"date":"2019-01-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2299,"date":"2019-02-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2574,"date":"2019-03-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2653,"date":"2019-04-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2692,"date":"2019-05-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2887,"date":"2019-06-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2994,"date":"2019-07-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2852,"date":"2019-08-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2471,"date":"2019-09-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":3135,"date":"2019-10-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2618,"date":"2019-11-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2821,"date":"2019-12-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":3283,"date":"2020-01-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2794,"date":"2020-02-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":3504,"date":"2020-03-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":4392,"date":"2020-04-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":5330,"date":"2020-05-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":4631,"date":"2020-06-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":218,"date":"2020-07-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1379,"date":"2017-07-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1634,"date":"2017-08-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1459,"date":"2017-09-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1630,"date":"2017-10-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1517,"date":"2017-11-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1525,"date":"2017-12-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2035,"date":"2018-01-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1861,"date":"2018-02-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2267,"date":"2018-03-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2093,"date":"2018-04-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1996,"date":"2018-05-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1947,"date":"2018-06-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1703,"date":"2018-07-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1985,"date":"2018-08-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1652,"date":"2018-09-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1842,"date":"2018-10-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1568,"date":"2018-11-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1547,"date":"2018-12-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1584,"date":"2019-01-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1683,"date":"2019-02-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2026,"date":"2019-03-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1951,"date":"2019-04-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1988,"date":"2019-05-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2028,"date":"2019-06-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1931,"date":"2019-07-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2044,"date":"2019-08-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1969,"date":"2019-09-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1981,"date":"2019-10-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1878,"date":"2019-11-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1727,"date":"2019-12-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1721,"date":"2020-01-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1940,"date":"2020-02-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2319,"date":"2020-03-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2449,"date":"2020-04-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2363,"date":"2020-05-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1947,"date":"2020-06-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":47,"date":"2020-07-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1161,"date":"2017-07-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1102,"date":"2017-08-01T00:00:00.000Z"},{"name":"Improper use of your report","value":7186,"date":"2017-09-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1319,"date":"2017-10-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1352,"date":"2017-11-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1217,"date":"2017-12-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1392,"date":"2018-01-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1530,"date":"2018-02-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1408,"date":"2018-03-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1311,"date":"2018-04-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1070,"date":"2018-05-01T00:00:00.000Z"},{"name":"Improper use of your report","value":907,"date":"2018-06-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1101,"date":"2018-07-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1133,"date":"2018-08-01T00:00:00.000Z"},{"name":"Improper use of your report","value":919,"date":"2018-09-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1127,"date":"2018-10-01T00:00:00.000Z"},{"name":"Improper use of your report","value":934,"date":"2018-11-01T00:00:00.000Z"},{"name":"Improper use of your report","value":841,"date":"2018-12-01T00:00:00.000Z"},{"name":"Improper use of your report","value":864,"date":"2019-01-01T00:00:00.000Z"},{"name":"Improper use of your report","value":913,"date":"2019-02-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1066,"date":"2019-03-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1013,"date":"2019-04-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1216,"date":"2019-05-01T00:00:00.000Z"},{"name":"Improper use of your report","value":925,"date":"2019-06-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1272,"date":"2019-07-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1354,"date":"2019-08-01T00:00:00.000Z"},{"name":"Improper use of your report","value":929,"date":"2019-09-01T00:00:00.000Z"},{"name":"Improper use of your report","value":945,"date":"2019-10-01T00:00:00.000Z"},{"name":"Improper use of your report","value":808,"date":"2019-11-01T00:00:00.000Z"},{"name":"Improper use of your report","value":734,"date":"2019-12-01T00:00:00.000Z"},{"name":"Improper use of your report","value":858,"date":"2020-01-01T00:00:00.000Z"},{"name":"Improper use of your report","value":862,"date":"2020-02-01T00:00:00.000Z"},{"name":"Improper use of your report","value":980,"date":"2020-03-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1031,"date":"2020-04-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1286,"date":"2020-05-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1236,"date":"2020-06-01T00:00:00.000Z"},{"name":"Improper use of your report","value":38,"date":"2020-07-01T00:00:00.000Z"},{"name":"Managing an account","value":826,"date":"2017-07-01T00:00:00.000Z"},{"name":"Managing an account","value":952,"date":"2017-08-01T00:00:00.000Z"},{"name":"Managing an account","value":954,"date":"2017-09-01T00:00:00.000Z"},{"name":"Managing an account","value":912,"date":"2017-10-01T00:00:00.000Z"},{"name":"Managing an account","value":966,"date":"2017-11-01T00:00:00.000Z"},{"name":"Managing an account","value":870,"date":"2017-12-01T00:00:00.000Z"},{"name":"Managing an account","value":1093,"date":"2018-01-01T00:00:00.000Z"},{"name":"Managing an account","value":990,"date":"2018-02-01T00:00:00.000Z"},{"name":"Managing an account","value":1097,"date":"2018-03-01T00:00:00.000Z"},{"name":"Managing an account","value":1213,"date":"2018-04-01T00:00:00.000Z"},{"name":"Managing an account","value":1192,"date":"2018-05-01T00:00:00.000Z"},{"name":"Managing an account","value":1126,"date":"2018-06-01T00:00:00.000Z"},{"name":"Managing an account","value":1180,"date":"2018-07-01T00:00:00.000Z"},{"name":"Managing an account","value":1065,"date":"2018-08-01T00:00:00.000Z"},{"name":"Managing an account","value":1072,"date":"2018-09-01T00:00:00.000Z"},{"name":"Managing an account","value":1161,"date":"2018-10-01T00:00:00.000Z"},{"name":"Managing an account","value":1084,"date":"2018-11-01T00:00:00.000Z"},{"name":"Managing an account","value":1143,"date":"2018-12-01T00:00:00.000Z"},{"name":"Managing an account","value":1093,"date":"2019-01-01T00:00:00.000Z"},{"name":"Managing an account","value":1036,"date":"2019-02-01T00:00:00.000Z"},{"name":"Managing an account","value":1179,"date":"2019-03-01T00:00:00.000Z"},{"name":"Managing an account","value":1196,"date":"2019-04-01T00:00:00.000Z"},{"name":"Managing an account","value":1200,"date":"2019-05-01T00:00:00.000Z"},{"name":"Managing an account","value":1192,"date":"2019-06-01T00:00:00.000Z"},{"name":"Managing an account","value":1165,"date":"2019-07-01T00:00:00.000Z"},{"name":"Managing an account","value":1320,"date":"2019-08-01T00:00:00.000Z"},{"name":"Managing an account","value":1090,"date":"2019-09-01T00:00:00.000Z"},{"name":"Managing an account","value":1242,"date":"2019-10-01T00:00:00.000Z"},{"name":"Managing an account","value":1100,"date":"2019-11-01T00:00:00.000Z"},{"name":"Managing an account","value":1069,"date":"2019-12-01T00:00:00.000Z"},{"name":"Managing an account","value":1163,"date":"2020-01-01T00:00:00.000Z"},{"name":"Managing an account","value":1065,"date":"2020-02-01T00:00:00.000Z"},{"name":"Managing an account","value":1046,"date":"2020-03-01T00:00:00.000Z"},{"name":"Managing an account","value":1267,"date":"2020-04-01T00:00:00.000Z"},{"name":"Managing an account","value":1225,"date":"2020-05-01T00:00:00.000Z"},{"name":"Managing an account","value":1289,"date":"2020-06-01T00:00:00.000Z"},{"name":"Managing an account","value":51,"date":"2020-07-01T00:00:00.000Z"}],"dateRangeBrush":[{"date":"2011-12-01T00:00:00.000Z","value":2536},{"date":"2012-01-01T00:00:00.000Z","value":3230},{"date":"2012-02-01T00:00:00.000Z","value":3509},{"date":"2012-03-01T00:00:00.000Z","value":6230},{"date":"2012-04-01T00:00:00.000Z","value":5703},{"date":"2012-05-01T00:00:00.000Z","value":7617},{"date":"2012-06-01T00:00:00.000Z","value":7841},{"date":"2012-07-01T00:00:00.000Z","value":6755},{"date":"2012-08-01T00:00:00.000Z","value":6877},{"date":"2012-09-01T00:00:00.000Z","value":5493},{"date":"2012-10-01T00:00:00.000Z","value":6741},{"date":"2012-11-01T00:00:00.000Z","value":6139},{"date":"2012-12-01T00:00:00.000Z","value":6238},{"date":"2013-01-01T00:00:00.000Z","value":9741},{"date":"2013-02-01T00:00:00.000Z","value":8349},{"date":"2013-03-01T00:00:00.000Z","value":8784},{"date":"2013-04-01T00:00:00.000Z","value":8632},{"date":"2013-05-01T00:00:00.000Z","value":8170},{"date":"2013-06-01T00:00:00.000Z","value":8035},{"date":"2013-07-01T00:00:00.000Z","value":9271},{"date":"2013-08-01T00:00:00.000Z","value":9565},{"date":"2013-09-01T00:00:00.000Z","value":9636},{"date":"2013-10-01T00:00:00.000Z","value":9241},{"date":"2013-11-01T00:00:00.000Z","value":9319},{"date":"2013-12-01T00:00:00.000Z","value":9474},{"date":"2014-01-01T00:00:00.000Z","value":12617},{"date":"2014-02-01T00:00:00.000Z","value":13048},{"date":"2014-03-01T00:00:00.000Z","value":13943},{"date":"2014-04-01T00:00:00.000Z","value":13840},{"date":"2014-05-01T00:00:00.000Z","value":12167},{"date":"2014-06-01T00:00:00.000Z","value":12520},{"date":"2014-07-01T00:00:00.000Z","value":13415},{"date":"2014-08-01T00:00:00.000Z","value":13186},{"date":"2014-09-01T00:00:00.000Z","value":12465},{"date":"2014-10-01T00:00:00.000Z","value":12901},{"date":"2014-11-01T00:00:00.000Z","value":11257},{"date":"2014-12-01T00:00:00.000Z","value":11684},{"date":"2015-01-01T00:00:00.000Z","value":12627},{"date":"2015-02-01T00:00:00.000Z","value":12680},{"date":"2015-03-01T00:00:00.000Z","value":14514},{"date":"2015-04-01T00:00:00.000Z","value":13753},{"date":"2015-05-01T00:00:00.000Z","value":13682},{"date":"2015-06-01T00:00:00.000Z","value":14517},{"date":"2015-07-01T00:00:00.000Z","value":15920},{"date":"2015-08-01T00:00:00.000Z","value":15766},{"date":"2015-09-01T00:00:00.000Z","value":14336},{"date":"2015-10-01T00:00:00.000Z","value":14899},{"date":"2015-11-01T00:00:00.000Z","value":12897},{"date":"2015-12-01T00:00:00.000Z","value":12884},{"date":"2016-01-01T00:00:00.000Z","value":13840},{"date":"2016-02-01T00:00:00.000Z","value":14140},{"date":"2016-03-01T00:00:00.000Z","value":16611},{"date":"2016-04-01T00:00:00.000Z","value":15608},{"date":"2016-05-01T00:00:00.000Z","value":15517},{"date":"2016-06-01T00:00:00.000Z","value":16063},{"date":"2016-07-01T00:00:00.000Z","value":16043},{"date":"2016-08-01T00:00:00.000Z","value":17694},{"date":"2016-09-01T00:00:00.000Z","value":17584},{"date":"2016-10-01T00:00:00.000Z","value":17820},{"date":"2016-11-01T00:00:00.000Z","value":15207},{"date":"2016-12-01T00:00:00.000Z","value":15341},{"date":"2017-01-01T00:00:00.000Z","value":21006},{"date":"2017-02-01T00:00:00.000Z","value":18110},{"date":"2017-03-01T00:00:00.000Z","value":19762},{"date":"2017-04-01T00:00:00.000Z","value":18544},{"date":"2017-05-01T00:00:00.000Z","value":19304},{"date":"2017-06-01T00:00:00.000Z","value":18567},{"date":"2017-07-01T00:00:00.000Z","value":20433},{"date":"2017-08-01T00:00:00.000Z","value":21402},{"date":"2017-09-01T00:00:00.000Z","value":27357},{"date":"2017-10-01T00:00:00.000Z","value":20456},{"date":"2017-11-01T00:00:00.000Z","value":18990},{"date":"2017-12-01T00:00:00.000Z","value":19034},{"date":"2018-01-01T00:00:00.000Z","value":23650},{"date":"2018-02-01T00:00:00.000Z","value":21978},{"date":"2018-03-01T00:00:00.000Z","value":23639},{"date":"2018-04-01T00:00:00.000Z","value":24327},{"date":"2018-05-01T00:00:00.000Z","value":22339},{"date":"2018-06-01T00:00:00.000Z","value":20111},{"date":"2018-07-01T00:00:00.000Z","value":20963},{"date":"2018-08-01T00:00:00.000Z","value":21726},{"date":"2018-09-01T00:00:00.000Z","value":19072},{"date":"2018-10-01T00:00:00.000Z","value":21903},{"date":"2018-11-01T00:00:00.000Z","value":19053},{"date":"2018-12-01T00:00:00.000Z","value":18552},{"date":"2019-01-01T00:00:00.000Z","value":18934},{"date":"2019-02-01T00:00:00.000Z","value":20206},{"date":"2019-03-01T00:00:00.000Z","value":23412},{"date":"2019-04-01T00:00:00.000Z","value":22915},{"date":"2019-05-01T00:00:00.000Z","value":23850},{"date":"2019-06-01T00:00:00.000Z","value":23352},{"date":"2019-07-01T00:00:00.000Z","value":25090},{"date":"2019-08-01T00:00:00.000Z","value":26059},{"date":"2019-09-01T00:00:00.000Z","value":23575},{"date":"2019-10-01T00:00:00.000Z","value":25636},{"date":"2019-11-01T00:00:00.000Z","value":22657},{"date":"2019-12-01T00:00:00.000Z","value":21704},{"date":"2020-01-01T00:00:00.000Z","value":26413},{"date":"2020-02-01T00:00:00.000Z","value":25097},{"date":"2020-03-01T00:00:00.000Z","value":29494},{"date":"2020-04-01T00:00:00.000Z","value":34805},{"date":"2020-05-01T00:00:00.000Z","value":37146},{"date":"2020-06-01T00:00:00.000Z","value":32699},{"date":"2020-07-01T00:00:00.000Z","value":1152}],"dateRangeLine":{"dataByTopic":[{"topic":"Complaints","topicName":"Complaints","dashed":false,"show":true,"dates":[{"date":"2011-12-01T00:00:00.000Z","value":2536},{"date":"2012-01-01T00:00:00.000Z","value":3230},{"date":"2012-02-01T00:00:00.000Z","value":3509},{"date":"2012-03-01T00:00:00.000Z","value":6230},{"date":"2012-04-01T00:00:00.000Z","value":5703},{"date":"2012-05-01T00:00:00.000Z","value":7617},{"date":"2012-06-01T00:00:00.000Z","value":7841},{"date":"2012-07-01T00:00:00.000Z","value":6755},{"date":"2012-08-01T00:00:00.000Z","value":6877},{"date":"2012-09-01T00:00:00.000Z","value":5493},{"date":"2012-10-01T00:00:00.000Z","value":6741},{"date":"2012-11-01T00:00:00.000Z","value":6139},{"date":"2012-12-01T00:00:00.000Z","value":6238},{"date":"2013-01-01T00:00:00.000Z","value":9741},{"date":"2013-02-01T00:00:00.000Z","value":8349},{"date":"2013-03-01T00:00:00.000Z","value":8784},{"date":"2013-04-01T00:00:00.000Z","value":8632},{"date":"2013-05-01T00:00:00.000Z","value":8170},{"date":"2013-06-01T00:00:00.000Z","value":8035},{"date":"2013-07-01T00:00:00.000Z","value":9271},{"date":"2013-08-01T00:00:00.000Z","value":9565},{"date":"2013-09-01T00:00:00.000Z","value":9636},{"date":"2013-10-01T00:00:00.000Z","value":9241},{"date":"2013-11-01T00:00:00.000Z","value":9319},{"date":"2013-12-01T00:00:00.000Z","value":9474},{"date":"2014-01-01T00:00:00.000Z","value":12617},{"date":"2014-02-01T00:00:00.000Z","value":13048},{"date":"2014-03-01T00:00:00.000Z","value":13943},{"date":"2014-04-01T00:00:00.000Z","value":13840},{"date":"2014-05-01T00:00:00.000Z","value":12167},{"date":"2014-06-01T00:00:00.000Z","value":12520},{"date":"2014-07-01T00:00:00.000Z","value":13415},{"date":"2014-08-01T00:00:00.000Z","value":13186},{"date":"2014-09-01T00:00:00.000Z","value":12465},{"date":"2014-10-01T00:00:00.000Z","value":12901},{"date":"2014-11-01T00:00:00.000Z","value":11257},{"date":"2014-12-01T00:00:00.000Z","value":11684},{"date":"2015-01-01T00:00:00.000Z","value":12627},{"date":"2015-02-01T00:00:00.000Z","value":12680},{"date":"2015-03-01T00:00:00.000Z","value":14514},{"date":"2015-04-01T00:00:00.000Z","value":13753},{"date":"2015-05-01T00:00:00.000Z","value":13682},{"date":"2015-06-01T00:00:00.000Z","value":14517},{"date":"2015-07-01T00:00:00.000Z","value":15920},{"date":"2015-08-01T00:00:00.000Z","value":15766},{"date":"2015-09-01T00:00:00.000Z","value":14336},{"date":"2015-10-01T00:00:00.000Z","value":14899},{"date":"2015-11-01T00:00:00.000Z","value":12897},{"date":"2015-12-01T00:00:00.000Z","value":12884},{"date":"2016-01-01T00:00:00.000Z","value":13840},{"date":"2016-02-01T00:00:00.000Z","value":14140},{"date":"2016-03-01T00:00:00.000Z","value":16611},{"date":"2016-04-01T00:00:00.000Z","value":15608},{"date":"2016-05-01T00:00:00.000Z","value":15517},{"date":"2016-06-01T00:00:00.000Z","value":16063},{"date":"2016-07-01T00:00:00.000Z","value":16043},{"date":"2016-08-01T00:00:00.000Z","value":17694},{"date":"2016-09-01T00:00:00.000Z","value":17584},{"date":"2016-10-01T00:00:00.000Z","value":17820},{"date":"2016-11-01T00:00:00.000Z","value":15207},{"date":"2016-12-01T00:00:00.000Z","value":15341},{"date":"2017-01-01T00:00:00.000Z","value":21006},{"date":"2017-02-01T00:00:00.000Z","value":18110},{"date":"2017-03-01T00:00:00.000Z","value":19762},{"date":"2017-04-01T00:00:00.000Z","value":18544},{"date":"2017-05-01T00:00:00.000Z","value":19304},{"date":"2017-06-01T00:00:00.000Z","value":18567},{"date":"2017-07-01T00:00:00.000Z","value":20433},{"date":"2017-08-01T00:00:00.000Z","value":21402},{"date":"2017-09-01T00:00:00.000Z","value":27357},{"date":"2017-10-01T00:00:00.000Z","value":20456},{"date":"2017-11-01T00:00:00.000Z","value":18990},{"date":"2017-12-01T00:00:00.000Z","value":19034},{"date":"2018-01-01T00:00:00.000Z","value":23650},{"date":"2018-02-01T00:00:00.000Z","value":21978},{"date":"2018-03-01T00:00:00.000Z","value":23639},{"date":"2018-04-01T00:00:00.000Z","value":24327},{"date":"2018-05-01T00:00:00.000Z","value":22339},{"date":"2018-06-01T00:00:00.000Z","value":20111},{"date":"2018-07-01T00:00:00.000Z","value":20963},{"date":"2018-08-01T00:00:00.000Z","value":21726},{"date":"2018-09-01T00:00:00.000Z","value":19072},{"date":"2018-10-01T00:00:00.000Z","value":21903},{"date":"2018-11-01T00:00:00.000Z","value":19053},{"date":"2018-12-01T00:00:00.000Z","value":18552},{"date":"2019-01-01T00:00:00.000Z","value":18934},{"date":"2019-02-01T00:00:00.000Z","value":20206},{"date":"2019-03-01T00:00:00.000Z","value":23412},{"date":"2019-04-01T00:00:00.000Z","value":22915},{"date":"2019-05-01T00:00:00.000Z","value":23850},{"date":"2019-06-01T00:00:00.000Z","value":23352},{"date":"2019-07-01T00:00:00.000Z","value":25090},{"date":"2019-08-01T00:00:00.000Z","value":26059},{"date":"2019-09-01T00:00:00.000Z","value":23575},{"date":"2019-10-01T00:00:00.000Z","value":25636},{"date":"2019-11-01T00:00:00.000Z","value":22657},{"date":"2019-12-01T00:00:00.000Z","value":21704},{"date":"2020-01-01T00:00:00.000Z","value":26413},{"date":"2020-02-01T00:00:00.000Z","value":25097},{"date":"2020-03-01T00:00:00.000Z","value":29494},{"date":"2020-04-01T00:00:00.000Z","value":34805},{"date":"2020-05-01T00:00:00.000Z","value":37146},{"date":"2020-06-01T00:00:00.000Z","value":32699},{"date":"2020-07-01T00:00:00.000Z","value":1152}]}]},"issue":[{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Incorrect information on your report","value":279586,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Information belongs to someone else","value":159378,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Account status incorrect","value":41890,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Account information incorrect","value":38628,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Personal information incorrect","value":12803,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Old information reappears or never goes away","value":9833,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Public record information inaccurate","value":9679,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Information is missing that should be on the report","value":4950,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Information is incorrect","value":728,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Information that should be on the report is missing","value":120,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Incorrect information on your report ","value":1,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Loan modification,collection,foreclosure","value":112309,"parent":false,"visible":true,"width":0.5},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Incorrect information on credit report","value":102686,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Account status","value":37057,"parent":"Incorrect information on credit report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Information is not mine","value":32384,"parent":"Incorrect information on credit report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Account terms","value":10995,"parent":"Incorrect information on credit report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Public record","value":8876,"parent":"Incorrect information on credit report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Personal information","value":7529,"parent":"Incorrect information on credit report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Reinserted previously deleted info","value":5845,"parent":"Incorrect information on credit report","visible":false,"width":0.4},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Problem with a credit reporting company's investigation into an existing problem","value":97724,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Their investigation did not fix an error on your report","value":68211,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Investigation took more than 30 days","value":9367,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Was not notified of investigation status or results","value":8509,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Difficulty submitting a dispute or getting information about a dispute over the phone","value":6492,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Problem with personal statement of dispute","value":4693,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Loan servicing, payments, escrow account","value":77333,"parent":false,"visible":true,"width":0.5}],"product":[{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Credit reporting, credit repair services, or other personal consumer reports","value":436241,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Credit reporting","value":429446,"parent":"Credit reporting, credit repair services, or other personal consumer reports","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Other personal consumer report","value":5424,"parent":"Credit reporting, credit repair services, or other personal consumer reports","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Credit repair services","value":1370,"parent":"Credit reporting, credit repair services, or other personal consumer reports","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Conventional home mortgage","value":1,"parent":"Credit reporting, credit repair services, or other personal consumer reports","visible":false,"width":0.4},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Mortgage","value":304721,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Other mortgage","value":86635,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Conventional fixed mortgage","value":70613,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Conventional home mortgage ","value":45658,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"FHA mortgage","value":35734,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Conventional adjustable mortgage (ARM)","value":25380,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Home equity loan or line of credit","value":11624,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Other type of mortgage","value":10794,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"VA mortgage","value":9306,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Home equity loan or line of credit (HELOC)","value":5072,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Reverse mortgage","value":3243,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Second mortgage","value":662,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Debt collection","value":300401,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"I do not know","value":62985,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Other debt","value":45441,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Other (i.e. phone, health club, etc.)","value":44543,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Credit card debt","value":33298,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Credit card","value":28698,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Medical debt","value":24725,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Medical","value":21187,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Payday loan","value":7562,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Auto debt","value":5025,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Mortgage ","value":4809,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Payday loan debt","value":4729,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Auto","value":3755,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Mortgage debt","value":3432,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Non-federal student loan","value":2881,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Federal student loan debt","value":2541,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Federal student loan","value":2475,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Private student loan debt","value":2315,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Credit reporting ","value":140432,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Credit card ","value":89190,"parent":false,"visible":true,"width":0.5}],"tags":[{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Servicemember","value":115185,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Older American","value":89940,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Older American, Servicemember","value":18620,"parent":false,"visible":true,"width":0.5}]},"subLens":"","tooltip":false,"total":1660586}
diff --git a/src/reducers/__fixtures__/trendsAggsMissingBucketsResults.jsx b/src/reducers/__fixtures__/trendsAggsMissingBucketsResults.jsx
index 8f8d4b25c..9cbfafda0 100644
--- a/src/reducers/__fixtures__/trendsAggsMissingBucketsResults.jsx
+++ b/src/reducers/__fixtures__/trendsAggsMissingBucketsResults.jsx
@@ -1 +1 @@
-export default { "activeCall": "", "chartType": "line", "colorMap": { "Credit reporting, credit repair services, or other personal consumer reports": "#2cb34a", "Debt collection": "#addc91", "Credit card or prepaid card": "#257675", "Mortgage": "#9ec4c3", "Checking or savings account": "#0072ce", "Complaints": "#ADDC91", "Other": "#a2a3a4" }, "error": false, "expandedTrends": [], "filterNames": [ "Credit reporting, credit repair services, or other personal consumer reports", "Debt collection", "Credit card or prepaid card", "Mortgage", "Checking or savings account", "Incorrect information on your report", "Problem with a credit reporting company's investigation into an existing problem", "Attempts to collect debt not owed", "Managing an account", "Improper use of your report", "Bank account or service", "Incorrect information on credit report" ], "focus": "", "isLoading": false, "lastDate": "2020-05-18T00:00:00.000Z", "lens": "Product", "results": { "dateRangeArea": [ { "name": "Other", "value": 67, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Other", "value": 72, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Other", "value": 82, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Other", "value": 36, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Other", "value": 20, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Other", "value": 76, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Other", "value": 64, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Other", "value": 67, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Other", "value": 79, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Other", "value": 92, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Other", "value": 46, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Other", "value": 21, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Other", "value": 71, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Other", "value": 66, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Other", "value": 68, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Other", "value": 77, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Other", "value": 79, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Other", "value": 41, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Other", "value": 37, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Other", "value": 72, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Other", "value": 79, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Other", "value": 87, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Other", "value": 83, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Other", "value": 97, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Other", "value": 55, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Other", "value": 44, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Other", "value": 114, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Other", "value": 97, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Other", "value": 113, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Other", "value": 77, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Other", "value": 70, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Other", "value": 32, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Other", "value": 24, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Other", "value": 42, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Other", "value": 50, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Other", "value": 41, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Other", "value": 33, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Other", "value": 28, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Other", "value": 12, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Other", "value": 8, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Other", "value": 22, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Other", "value": 26, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Other", "value": 10, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Other", "value": 9, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Other", "value": 8, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Other", "value": 6, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Other", "value": 3, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Other", "value": 1, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 737, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 738, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 710, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 494, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 350, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 753, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 712, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 717, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 706, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 791, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 402, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 344, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 737, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 768, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 692, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 693, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 792, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 526, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 482, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 764, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 785, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 882, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 926, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 992, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 583, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 457, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 862, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 894, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 892, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 998, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 888, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 516, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 402, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 637, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 697, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 442, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 386, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 326, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 239, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 153, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 403, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 420, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 390, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 363, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 305, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 177, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 119, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 5, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Debt collection", "value": 167, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Debt collection", "value": 196, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Debt collection", "value": 142, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Debt collection", "value": 82, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Debt collection", "value": 79, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Debt collection", "value": 147, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Debt collection", "value": 182, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Debt collection", "value": 212, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Debt collection", "value": 174, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Debt collection", "value": 171, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Debt collection", "value": 93, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Debt collection", "value": 74, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Debt collection", "value": 136, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Debt collection", "value": 160, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Debt collection", "value": 159, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Debt collection", "value": 198, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Debt collection", "value": 186, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Debt collection", "value": 117, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Debt collection", "value": 75, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Debt collection", "value": 147, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Debt collection", "value": 183, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Debt collection", "value": 186, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Debt collection", "value": 201, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Debt collection", "value": 192, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Debt collection", "value": 81, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Debt collection", "value": 71, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Debt collection", "value": 163, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Debt collection", "value": 202, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Debt collection", "value": 182, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Debt collection", "value": 150, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Debt collection", "value": 138, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Debt collection", "value": 97, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Debt collection", "value": 82, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Debt collection", "value": 134, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Debt collection", "value": 103, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Debt collection", "value": 98, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Debt collection", "value": 66, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Debt collection", "value": 65, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Debt collection", "value": 29, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Debt collection", "value": 17, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Debt collection", "value": 51, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Debt collection", "value": 67, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Debt collection", "value": 37, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Debt collection", "value": 27, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Debt collection", "value": 29, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Debt collection", "value": 11, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Debt collection", "value": 11, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Debt collection", "value": 6, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 115, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 83, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 118, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 54, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 30, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 104, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 133, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 110, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 99, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 117, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 47, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 46, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 122, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 140, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 133, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 137, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 107, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 66, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 43, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 112, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 132, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 153, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 161, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 124, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 66, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 67, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 131, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 119, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 140, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 128, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 113, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 61, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 41, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 78, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 100, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 60, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 37, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 46, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 17, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 12, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 31, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 32, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 23, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 22, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 11, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 15, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 9, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Credit card or prepaid card", "value": 4, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Mortgage", "value": 111, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Mortgage", "value": 89, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Mortgage", "value": 95, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Mortgage", "value": 34, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Mortgage", "value": 15, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Mortgage", "value": 88, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Mortgage", "value": 91, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Mortgage", "value": 91, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Mortgage", "value": 113, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Mortgage", "value": 64, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Mortgage", "value": 31, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Mortgage", "value": 16, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Mortgage", "value": 106, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Mortgage", "value": 90, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Mortgage", "value": 92, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Mortgage", "value": 88, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Mortgage", "value": 79, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Mortgage", "value": 30, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Mortgage", "value": 16, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Mortgage", "value": 81, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Mortgage", "value": 97, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Mortgage", "value": 86, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Mortgage", "value": 83, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Mortgage", "value": 82, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Mortgage", "value": 43, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Mortgage", "value": 23, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Mortgage", "value": 79, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Mortgage", "value": 90, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Mortgage", "value": 91, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Mortgage", "value": 85, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Mortgage", "value": 80, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Mortgage", "value": 25, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Mortgage", "value": 26, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Mortgage", "value": 50, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Mortgage", "value": 42, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Mortgage", "value": 28, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Mortgage", "value": 21, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Mortgage", "value": 27, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Mortgage", "value": 8, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Mortgage", "value": 0, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Mortgage", "value": 22, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Mortgage", "value": 12, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Mortgage", "value": 6, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Mortgage", "value": 8, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Mortgage", "value": 8, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Mortgage", "value": 0, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Mortgage", "value": 2, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Mortgage", "value": 0, "date": new Date("2020-05-18T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 79, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 68, "date": new Date("2020-04-02T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 71, "date": new Date("2020-04-03T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 32, "date": new Date("2020-04-04T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 15, "date": new Date("2020-04-05T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 74, "date": new Date("2020-04-06T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 86, "date": new Date("2020-04-07T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 75, "date": new Date("2020-04-08T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 76, "date": new Date("2020-04-09T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 89, "date": new Date("2020-04-10T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 33, "date": new Date("2020-04-11T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 15, "date": new Date("2020-04-12T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 77, "date": new Date("2020-04-13T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 69, "date": new Date("2020-04-14T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 76, "date": new Date("2020-04-15T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 94, "date": new Date("2020-04-16T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 68, "date": new Date("2020-04-17T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 23, "date": new Date("2020-04-18T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 16, "date": new Date("2020-04-19T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 75, "date": new Date("2020-04-20T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 86, "date": new Date("2020-04-21T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 92, "date": new Date("2020-04-22T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 74, "date": new Date("2020-04-23T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 74, "date": new Date("2020-04-24T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 46, "date": new Date("2020-04-25T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 35, "date": new Date("2020-04-26T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 106, "date": new Date("2020-04-27T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 104, "date": new Date("2020-04-28T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 116, "date": new Date("2020-04-29T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 86, "date": new Date("2020-04-30T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 77, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 20, "date": new Date("2020-05-02T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 16, "date": new Date("2020-05-03T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 62, "date": new Date("2020-05-04T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 47, "date": new Date("2020-05-05T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 36, "date": new Date("2020-05-06T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 30, "date": new Date("2020-05-07T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 22, "date": new Date("2020-05-08T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 7, "date": new Date("2020-05-09T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 3, "date": new Date("2020-05-10T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 20, "date": new Date("2020-05-11T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 18, "date": new Date("2020-05-12T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 13, "date": new Date("2020-05-13T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 5, "date": new Date("2020-05-14T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 2, "date": new Date("2020-05-15T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 2, "date": new Date("2020-05-16T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 2, "date": new Date("2020-05-17T00:00:00.000Z") }, { "name": "Checking or savings account", "value": 1, "date": new Date("2020-05-18T00:00:00.000Z") } ], "dateRangeBrush": [ { "date": new Date("2020-04-01T00:00:00.000Z"), "value": 1276 }, { "date": new Date("2020-04-02T00:00:00.000Z"), "value": 1246 }, { "date": new Date("2020-04-03T00:00:00.000Z"), "value": 1218 }, { "date": new Date("2020-04-04T00:00:00.000Z"), "value": 732 }, { "date": new Date("2020-04-05T00:00:00.000Z"), "value": 509 }, { "date": new Date("2020-04-06T00:00:00.000Z"), "value": 1242 }, { "date": new Date("2020-04-07T00:00:00.000Z"), "value": 1268 }, { "date": new Date("2020-04-08T00:00:00.000Z"), "value": 1272 }, { "date": new Date("2020-04-09T00:00:00.000Z"), "value": 1247 }, { "date": new Date("2020-04-10T00:00:00.000Z"), "value": 1324 }, { "date": new Date("2020-04-11T00:00:00.000Z"), "value": 652 }, { "date": new Date("2020-04-12T00:00:00.000Z"), "value": 516 }, { "date": new Date("2020-04-13T00:00:00.000Z"), "value": 1249 }, { "date": new Date("2020-04-14T00:00:00.000Z"), "value": 1293 }, { "date": new Date("2020-04-15T00:00:00.000Z"), "value": 1220 }, { "date": new Date("2020-04-16T00:00:00.000Z"), "value": 1287 }, { "date": new Date("2020-04-17T00:00:00.000Z"), "value": 1311 }, { "date": new Date("2020-04-18T00:00:00.000Z"), "value": 803 }, { "date": new Date("2020-04-19T00:00:00.000Z"), "value": 669 }, { "date": new Date("2020-04-20T00:00:00.000Z"), "value": 1251 }, { "date": new Date("2020-04-21T00:00:00.000Z"), "value": 1362 }, { "date": new Date("2020-04-22T00:00:00.000Z"), "value": 1486 }, { "date": new Date("2020-04-23T00:00:00.000Z"), "value": 1528 }, { "date": new Date("2020-04-24T00:00:00.000Z"), "value": 1561 }, { "date": new Date("2020-04-25T00:00:00.000Z"), "value": 874 }, { "date": new Date("2020-04-26T00:00:00.000Z"), "value": 697 }, { "date": new Date("2020-04-27T00:00:00.000Z"), "value": 1455 }, { "date": new Date("2020-04-28T00:00:00.000Z"), "value": 1506 }, { "date": new Date("2020-04-29T00:00:00.000Z"), "value": 1534 }, { "date": new Date("2020-04-30T00:00:00.000Z"), "value": 1524 }, { "date": new Date("2020-05-01T00:00:00.000Z"), "value": 1366 }, { "date": new Date("2020-05-02T00:00:00.000Z"), "value": 751 }, { "date": new Date("2020-05-03T00:00:00.000Z"), "value": 591 }, { "date": new Date("2020-05-04T00:00:00.000Z"), "value": 1003 }, { "date": new Date("2020-05-05T00:00:00.000Z"), "value": 1039 }, { "date": new Date("2020-05-06T00:00:00.000Z"), "value": 705 }, { "date": new Date("2020-05-07T00:00:00.000Z"), "value": 573 }, { "date": new Date("2020-05-08T00:00:00.000Z"), "value": 514 }, { "date": new Date("2020-05-09T00:00:00.000Z"), "value": 312 }, { "date": new Date("2020-05-10T00:00:00.000Z"), "value": 193 }, { "date": new Date("2020-05-11T00:00:00.000Z"), "value": 549 }, { "date": new Date("2020-05-12T00:00:00.000Z"), "value": 575 }, { "date": new Date("2020-05-13T00:00:00.000Z"), "value": 479 }, { "date": new Date("2020-05-14T00:00:00.000Z"), "value": 434 }, { "date": new Date("2020-05-15T00:00:00.000Z"), "value": 363 }, { "date": new Date("2020-05-16T00:00:00.000Z"), "value": 211 }, { "date": new Date("2020-05-17T00:00:00.000Z"), "value": 146 }, { "date": new Date("2020-05-18T00:00:00.000Z"), "value": 17 } ], "dateRangeLine": { "dataByTopic": [ { "topic": "Credit reporting, credit repair services, or other personal consumer reports", "topicName": "Credit reporting, credit repair services, or other personal consumer reports", "dashed": false, "show": true, "dates": [ { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-01T00:00:00.000Z", "value": 737 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-02T00:00:00.000Z", "value": 738 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-03T00:00:00.000Z", "value": 710 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-04T00:00:00.000Z", "value": 494 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-05T00:00:00.000Z", "value": 350 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-06T00:00:00.000Z", "value": 753 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-07T00:00:00.000Z", "value": 712 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-08T00:00:00.000Z", "value": 717 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-09T00:00:00.000Z", "value": 706 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-10T00:00:00.000Z", "value": 791 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-11T00:00:00.000Z", "value": 402 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-12T00:00:00.000Z", "value": 344 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-13T00:00:00.000Z", "value": 737 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-14T00:00:00.000Z", "value": 768 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-15T00:00:00.000Z", "value": 692 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-16T00:00:00.000Z", "value": 693 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-17T00:00:00.000Z", "value": 792 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-18T00:00:00.000Z", "value": 526 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-19T00:00:00.000Z", "value": 482 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-20T00:00:00.000Z", "value": 764 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-21T00:00:00.000Z", "value": 785 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-22T00:00:00.000Z", "value": 882 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-23T00:00:00.000Z", "value": 926 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-24T00:00:00.000Z", "value": 992 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-25T00:00:00.000Z", "value": 583 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-26T00:00:00.000Z", "value": 457 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-27T00:00:00.000Z", "value": 862 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-28T00:00:00.000Z", "value": 894 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-29T00:00:00.000Z", "value": 892 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-04-30T00:00:00.000Z", "value": 998 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-01T00:00:00.000Z", "value": 888 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-02T00:00:00.000Z", "value": 516 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-03T00:00:00.000Z", "value": 402 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-04T00:00:00.000Z", "value": 637 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-05T00:00:00.000Z", "value": 697 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-06T00:00:00.000Z", "value": 442 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-07T00:00:00.000Z", "value": 386 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-08T00:00:00.000Z", "value": 326 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-09T00:00:00.000Z", "value": 239 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-10T00:00:00.000Z", "value": 153 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-11T00:00:00.000Z", "value": 403 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-12T00:00:00.000Z", "value": 420 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-13T00:00:00.000Z", "value": 390 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-14T00:00:00.000Z", "value": 363 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-15T00:00:00.000Z", "value": 305 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-16T00:00:00.000Z", "value": 177 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-17T00:00:00.000Z", "value": 119 }, { "name": "Credit reporting, credit repair services, or other personal consumer reports", "date": "2020-05-18T00:00:00.000Z", "value": 5 } ] }, { "topic": "Debt collection", "topicName": "Debt collection", "dashed": false, "show": true, "dates": [ { "name": "Debt collection", "date": "2020-04-01T00:00:00.000Z", "value": 167 }, { "name": "Debt collection", "date": "2020-04-02T00:00:00.000Z", "value": 196 }, { "name": "Debt collection", "date": "2020-04-03T00:00:00.000Z", "value": 142 }, { "name": "Debt collection", "date": "2020-04-04T00:00:00.000Z", "value": 82 }, { "name": "Debt collection", "date": "2020-04-05T00:00:00.000Z", "value": 79 }, { "name": "Debt collection", "date": "2020-04-06T00:00:00.000Z", "value": 147 }, { "name": "Debt collection", "date": "2020-04-07T00:00:00.000Z", "value": 182 }, { "name": "Debt collection", "date": "2020-04-08T00:00:00.000Z", "value": 212 }, { "name": "Debt collection", "date": "2020-04-09T00:00:00.000Z", "value": 174 }, { "name": "Debt collection", "date": "2020-04-10T00:00:00.000Z", "value": 171 }, { "name": "Debt collection", "date": "2020-04-11T00:00:00.000Z", "value": 93 }, { "name": "Debt collection", "date": "2020-04-12T00:00:00.000Z", "value": 74 }, { "name": "Debt collection", "date": "2020-04-13T00:00:00.000Z", "value": 136 }, { "name": "Debt collection", "date": "2020-04-14T00:00:00.000Z", "value": 160 }, { "name": "Debt collection", "date": "2020-04-15T00:00:00.000Z", "value": 159 }, { "name": "Debt collection", "date": "2020-04-16T00:00:00.000Z", "value": 198 }, { "name": "Debt collection", "date": "2020-04-17T00:00:00.000Z", "value": 186 }, { "name": "Debt collection", "date": "2020-04-18T00:00:00.000Z", "value": 117 }, { "name": "Debt collection", "date": "2020-04-19T00:00:00.000Z", "value": 75 }, { "name": "Debt collection", "date": "2020-04-20T00:00:00.000Z", "value": 147 }, { "name": "Debt collection", "date": "2020-04-21T00:00:00.000Z", "value": 183 }, { "name": "Debt collection", "date": "2020-04-22T00:00:00.000Z", "value": 186 }, { "name": "Debt collection", "date": "2020-04-23T00:00:00.000Z", "value": 201 }, { "name": "Debt collection", "date": "2020-04-24T00:00:00.000Z", "value": 192 }, { "name": "Debt collection", "date": "2020-04-25T00:00:00.000Z", "value": 81 }, { "name": "Debt collection", "date": "2020-04-26T00:00:00.000Z", "value": 71 }, { "name": "Debt collection", "date": "2020-04-27T00:00:00.000Z", "value": 163 }, { "name": "Debt collection", "date": "2020-04-28T00:00:00.000Z", "value": 202 }, { "name": "Debt collection", "date": "2020-04-29T00:00:00.000Z", "value": 182 }, { "name": "Debt collection", "date": "2020-04-30T00:00:00.000Z", "value": 150 }, { "name": "Debt collection", "date": "2020-05-01T00:00:00.000Z", "value": 138 }, { "name": "Debt collection", "date": "2020-05-02T00:00:00.000Z", "value": 97 }, { "name": "Debt collection", "date": "2020-05-03T00:00:00.000Z", "value": 82 }, { "name": "Debt collection", "date": "2020-05-04T00:00:00.000Z", "value": 134 }, { "name": "Debt collection", "date": "2020-05-05T00:00:00.000Z", "value": 103 }, { "name": "Debt collection", "date": "2020-05-06T00:00:00.000Z", "value": 98 }, { "name": "Debt collection", "date": "2020-05-07T00:00:00.000Z", "value": 66 }, { "name": "Debt collection", "date": "2020-05-08T00:00:00.000Z", "value": 65 }, { "name": "Debt collection", "date": "2020-05-09T00:00:00.000Z", "value": 29 }, { "name": "Debt collection", "date": "2020-05-10T00:00:00.000Z", "value": 17 }, { "name": "Debt collection", "date": "2020-05-11T00:00:00.000Z", "value": 51 }, { "name": "Debt collection", "date": "2020-05-12T00:00:00.000Z", "value": 67 }, { "name": "Debt collection", "date": "2020-05-13T00:00:00.000Z", "value": 37 }, { "name": "Debt collection", "date": "2020-05-14T00:00:00.000Z", "value": 27 }, { "name": "Debt collection", "date": "2020-05-15T00:00:00.000Z", "value": 29 }, { "name": "Debt collection", "date": "2020-05-16T00:00:00.000Z", "value": 11 }, { "name": "Debt collection", "date": "2020-05-17T00:00:00.000Z", "value": 11 }, { "name": "Debt collection", "date": "2020-05-18T00:00:00.000Z", "value": 6 } ] }, { "topic": "Credit card or prepaid card", "topicName": "Credit card or prepaid card", "dashed": false, "show": true, "dates": [ { "name": "Credit card or prepaid card", "date": "2020-04-01T00:00:00.000Z", "value": 115 }, { "name": "Credit card or prepaid card", "date": "2020-04-02T00:00:00.000Z", "value": 83 }, { "name": "Credit card or prepaid card", "date": "2020-04-03T00:00:00.000Z", "value": 118 }, { "name": "Credit card or prepaid card", "date": "2020-04-04T00:00:00.000Z", "value": 54 }, { "name": "Credit card or prepaid card", "date": "2020-04-05T00:00:00.000Z", "value": 30 }, { "name": "Credit card or prepaid card", "date": "2020-04-06T00:00:00.000Z", "value": 104 }, { "name": "Credit card or prepaid card", "date": "2020-04-07T00:00:00.000Z", "value": 133 }, { "name": "Credit card or prepaid card", "date": "2020-04-08T00:00:00.000Z", "value": 110 }, { "name": "Credit card or prepaid card", "date": "2020-04-09T00:00:00.000Z", "value": 99 }, { "name": "Credit card or prepaid card", "date": "2020-04-10T00:00:00.000Z", "value": 117 }, { "name": "Credit card or prepaid card", "date": "2020-04-11T00:00:00.000Z", "value": 47 }, { "name": "Credit card or prepaid card", "date": "2020-04-12T00:00:00.000Z", "value": 46 }, { "name": "Credit card or prepaid card", "date": "2020-04-13T00:00:00.000Z", "value": 122 }, { "name": "Credit card or prepaid card", "date": "2020-04-14T00:00:00.000Z", "value": 140 }, { "name": "Credit card or prepaid card", "date": "2020-04-15T00:00:00.000Z", "value": 133 }, { "name": "Credit card or prepaid card", "date": "2020-04-16T00:00:00.000Z", "value": 137 }, { "name": "Credit card or prepaid card", "date": "2020-04-17T00:00:00.000Z", "value": 107 }, { "name": "Credit card or prepaid card", "date": "2020-04-18T00:00:00.000Z", "value": 66 }, { "name": "Credit card or prepaid card", "date": "2020-04-19T00:00:00.000Z", "value": 43 }, { "name": "Credit card or prepaid card", "date": "2020-04-20T00:00:00.000Z", "value": 112 }, { "name": "Credit card or prepaid card", "date": "2020-04-21T00:00:00.000Z", "value": 132 }, { "name": "Credit card or prepaid card", "date": "2020-04-22T00:00:00.000Z", "value": 153 }, { "name": "Credit card or prepaid card", "date": "2020-04-23T00:00:00.000Z", "value": 161 }, { "name": "Credit card or prepaid card", "date": "2020-04-24T00:00:00.000Z", "value": 124 }, { "name": "Credit card or prepaid card", "date": "2020-04-25T00:00:00.000Z", "value": 66 }, { "name": "Credit card or prepaid card", "date": "2020-04-26T00:00:00.000Z", "value": 67 }, { "name": "Credit card or prepaid card", "date": "2020-04-27T00:00:00.000Z", "value": 131 }, { "name": "Credit card or prepaid card", "date": "2020-04-28T00:00:00.000Z", "value": 119 }, { "name": "Credit card or prepaid card", "date": "2020-04-29T00:00:00.000Z", "value": 140 }, { "name": "Credit card or prepaid card", "date": "2020-04-30T00:00:00.000Z", "value": 128 }, { "name": "Credit card or prepaid card", "date": "2020-05-01T00:00:00.000Z", "value": 113 }, { "name": "Credit card or prepaid card", "date": "2020-05-02T00:00:00.000Z", "value": 61 }, { "name": "Credit card or prepaid card", "date": "2020-05-03T00:00:00.000Z", "value": 41 }, { "name": "Credit card or prepaid card", "date": "2020-05-04T00:00:00.000Z", "value": 78 }, { "name": "Credit card or prepaid card", "date": "2020-05-05T00:00:00.000Z", "value": 100 }, { "name": "Credit card or prepaid card", "date": "2020-05-06T00:00:00.000Z", "value": 60 }, { "name": "Credit card or prepaid card", "date": "2020-05-07T00:00:00.000Z", "value": 37 }, { "name": "Credit card or prepaid card", "date": "2020-05-08T00:00:00.000Z", "value": 46 }, { "name": "Credit card or prepaid card", "date": "2020-05-09T00:00:00.000Z", "value": 17 }, { "name": "Credit card or prepaid card", "date": "2020-05-10T00:00:00.000Z", "value": 12 }, { "name": "Credit card or prepaid card", "date": "2020-05-11T00:00:00.000Z", "value": 31 }, { "name": "Credit card or prepaid card", "date": "2020-05-12T00:00:00.000Z", "value": 32 }, { "name": "Credit card or prepaid card", "date": "2020-05-13T00:00:00.000Z", "value": 23 }, { "name": "Credit card or prepaid card", "date": "2020-05-14T00:00:00.000Z", "value": 22 }, { "name": "Credit card or prepaid card", "date": "2020-05-15T00:00:00.000Z", "value": 11 }, { "name": "Credit card or prepaid card", "date": "2020-05-16T00:00:00.000Z", "value": 15 }, { "name": "Credit card or prepaid card", "date": "2020-05-17T00:00:00.000Z", "value": 9 }, { "name": "Credit card or prepaid card", "date": "2020-05-18T00:00:00.000Z", "value": 4 } ] }, { "topic": "Mortgage", "topicName": "Mortgage", "dashed": false, "show": true, "dates": [ { "name": "Mortgage", "date": "2020-04-01T00:00:00.000Z", "value": 111 }, { "name": "Mortgage", "date": "2020-04-02T00:00:00.000Z", "value": 89 }, { "name": "Mortgage", "date": "2020-04-03T00:00:00.000Z", "value": 95 }, { "name": "Mortgage", "date": "2020-04-04T00:00:00.000Z", "value": 34 }, { "name": "Mortgage", "date": "2020-04-05T00:00:00.000Z", "value": 15 }, { "name": "Mortgage", "date": "2020-04-06T00:00:00.000Z", "value": 88 }, { "name": "Mortgage", "date": "2020-04-07T00:00:00.000Z", "value": 91 }, { "name": "Mortgage", "date": "2020-04-08T00:00:00.000Z", "value": 91 }, { "name": "Mortgage", "date": "2020-04-09T00:00:00.000Z", "value": 113 }, { "name": "Mortgage", "date": "2020-04-10T00:00:00.000Z", "value": 64 }, { "name": "Mortgage", "date": "2020-04-11T00:00:00.000Z", "value": 31 }, { "name": "Mortgage", "date": "2020-04-12T00:00:00.000Z", "value": 16 }, { "name": "Mortgage", "date": "2020-04-13T00:00:00.000Z", "value": 106 }, { "name": "Mortgage", "date": "2020-04-14T00:00:00.000Z", "value": 90 }, { "name": "Mortgage", "date": "2020-04-15T00:00:00.000Z", "value": 92 }, { "name": "Mortgage", "date": "2020-04-16T00:00:00.000Z", "value": 88 }, { "name": "Mortgage", "date": "2020-04-17T00:00:00.000Z", "value": 79 }, { "name": "Mortgage", "date": "2020-04-18T00:00:00.000Z", "value": 30 }, { "name": "Mortgage", "date": "2020-04-19T00:00:00.000Z", "value": 16 }, { "name": "Mortgage", "date": "2020-04-20T00:00:00.000Z", "value": 81 }, { "name": "Mortgage", "date": "2020-04-21T00:00:00.000Z", "value": 97 }, { "name": "Mortgage", "date": "2020-04-22T00:00:00.000Z", "value": 86 }, { "name": "Mortgage", "date": "2020-04-23T00:00:00.000Z", "value": 83 }, { "name": "Mortgage", "date": "2020-04-24T00:00:00.000Z", "value": 82 }, { "name": "Mortgage", "date": "2020-04-25T00:00:00.000Z", "value": 43 }, { "name": "Mortgage", "date": "2020-04-26T00:00:00.000Z", "value": 23 }, { "name": "Mortgage", "date": "2020-04-27T00:00:00.000Z", "value": 79 }, { "name": "Mortgage", "date": "2020-04-28T00:00:00.000Z", "value": 90 }, { "name": "Mortgage", "date": "2020-04-29T00:00:00.000Z", "value": 91 }, { "name": "Mortgage", "date": "2020-04-30T00:00:00.000Z", "value": 85 }, { "name": "Mortgage", "date": "2020-05-01T00:00:00.000Z", "value": 80 }, { "name": "Mortgage", "date": "2020-05-02T00:00:00.000Z", "value": 25 }, { "name": "Mortgage", "date": "2020-05-03T00:00:00.000Z", "value": 26 }, { "name": "Mortgage", "date": "2020-05-04T00:00:00.000Z", "value": 50 }, { "name": "Mortgage", "date": "2020-05-05T00:00:00.000Z", "value": 42 }, { "name": "Mortgage", "date": "2020-05-06T00:00:00.000Z", "value": 28 }, { "name": "Mortgage", "date": "2020-05-07T00:00:00.000Z", "value": 21 }, { "name": "Mortgage", "date": "2020-05-08T00:00:00.000Z", "value": 27 }, { "name": "Mortgage", "date": "2020-05-09T00:00:00.000Z", "value": 8 }, { "name": "Mortgage", "date": "2020-05-10T00:00:00.000Z", "value": 0 }, { "name": "Mortgage", "date": "2020-05-11T00:00:00.000Z", "value": 22 }, { "name": "Mortgage", "date": "2020-05-12T00:00:00.000Z", "value": 12 }, { "name": "Mortgage", "date": "2020-05-13T00:00:00.000Z", "value": 6 }, { "name": "Mortgage", "date": "2020-05-14T00:00:00.000Z", "value": 8 }, { "name": "Mortgage", "date": "2020-05-15T00:00:00.000Z", "value": 8 }, { "name": "Mortgage", "date": "2020-05-16T00:00:00.000Z", "value": 0 }, { "name": "Mortgage", "date": "2020-05-17T00:00:00.000Z", "value": 2 }, { "name": "Mortgage", "date": "2020-05-18T00:00:00.000Z", "value": 0 } ] }, { "topic": "Checking or savings account", "topicName": "Checking or savings account", "dashed": false, "show": true, "dates": [ { "name": "Checking or savings account", "date": "2020-04-01T00:00:00.000Z", "value": 79 }, { "name": "Checking or savings account", "date": "2020-04-02T00:00:00.000Z", "value": 68 }, { "name": "Checking or savings account", "date": "2020-04-03T00:00:00.000Z", "value": 71 }, { "name": "Checking or savings account", "date": "2020-04-04T00:00:00.000Z", "value": 32 }, { "name": "Checking or savings account", "date": "2020-04-05T00:00:00.000Z", "value": 15 }, { "name": "Checking or savings account", "date": "2020-04-06T00:00:00.000Z", "value": 74 }, { "name": "Checking or savings account", "date": "2020-04-07T00:00:00.000Z", "value": 86 }, { "name": "Checking or savings account", "date": "2020-04-08T00:00:00.000Z", "value": 75 }, { "name": "Checking or savings account", "date": "2020-04-09T00:00:00.000Z", "value": 76 }, { "name": "Checking or savings account", "date": "2020-04-10T00:00:00.000Z", "value": 89 }, { "name": "Checking or savings account", "date": "2020-04-11T00:00:00.000Z", "value": 33 }, { "name": "Checking or savings account", "date": "2020-04-12T00:00:00.000Z", "value": 15 }, { "name": "Checking or savings account", "date": "2020-04-13T00:00:00.000Z", "value": 77 }, { "name": "Checking or savings account", "date": "2020-04-14T00:00:00.000Z", "value": 69 }, { "name": "Checking or savings account", "date": "2020-04-15T00:00:00.000Z", "value": 76 }, { "name": "Checking or savings account", "date": "2020-04-16T00:00:00.000Z", "value": 94 }, { "name": "Checking or savings account", "date": "2020-04-17T00:00:00.000Z", "value": 68 }, { "name": "Checking or savings account", "date": "2020-04-18T00:00:00.000Z", "value": 23 }, { "name": "Checking or savings account", "date": "2020-04-19T00:00:00.000Z", "value": 16 }, { "name": "Checking or savings account", "date": "2020-04-20T00:00:00.000Z", "value": 75 }, { "name": "Checking or savings account", "date": "2020-04-21T00:00:00.000Z", "value": 86 }, { "name": "Checking or savings account", "date": "2020-04-22T00:00:00.000Z", "value": 92 }, { "name": "Checking or savings account", "date": "2020-04-23T00:00:00.000Z", "value": 74 }, { "name": "Checking or savings account", "date": "2020-04-24T00:00:00.000Z", "value": 74 }, { "name": "Checking or savings account", "date": "2020-04-25T00:00:00.000Z", "value": 46 }, { "name": "Checking or savings account", "date": "2020-04-26T00:00:00.000Z", "value": 35 }, { "name": "Checking or savings account", "date": "2020-04-27T00:00:00.000Z", "value": 106 }, { "name": "Checking or savings account", "date": "2020-04-28T00:00:00.000Z", "value": 104 }, { "name": "Checking or savings account", "date": "2020-04-29T00:00:00.000Z", "value": 116 }, { "name": "Checking or savings account", "date": "2020-04-30T00:00:00.000Z", "value": 86 }, { "name": "Checking or savings account", "date": "2020-05-01T00:00:00.000Z", "value": 77 }, { "name": "Checking or savings account", "date": "2020-05-02T00:00:00.000Z", "value": 20 }, { "name": "Checking or savings account", "date": "2020-05-03T00:00:00.000Z", "value": 16 }, { "name": "Checking or savings account", "date": "2020-05-04T00:00:00.000Z", "value": 62 }, { "name": "Checking or savings account", "date": "2020-05-05T00:00:00.000Z", "value": 47 }, { "name": "Checking or savings account", "date": "2020-05-06T00:00:00.000Z", "value": 36 }, { "name": "Checking or savings account", "date": "2020-05-07T00:00:00.000Z", "value": 30 }, { "name": "Checking or savings account", "date": "2020-05-08T00:00:00.000Z", "value": 22 }, { "name": "Checking or savings account", "date": "2020-05-09T00:00:00.000Z", "value": 7 }, { "name": "Checking or savings account", "date": "2020-05-10T00:00:00.000Z", "value": 3 }, { "name": "Checking or savings account", "date": "2020-05-11T00:00:00.000Z", "value": 20 }, { "name": "Checking or savings account", "date": "2020-05-12T00:00:00.000Z", "value": 18 }, { "name": "Checking or savings account", "date": "2020-05-13T00:00:00.000Z", "value": 13 }, { "name": "Checking or savings account", "date": "2020-05-14T00:00:00.000Z", "value": 5 }, { "name": "Checking or savings account", "date": "2020-05-15T00:00:00.000Z", "value": 2 }, { "name": "Checking or savings account", "date": "2020-05-16T00:00:00.000Z", "value": 2 }, { "name": "Checking or savings account", "date": "2020-05-17T00:00:00.000Z", "value": 2 }, { "name": "Checking or savings account", "date": "2020-05-18T00:00:00.000Z", "value": 1 } ] } ] }, "issue": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Incorrect information on your report", "value": 247706, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information belongs to someone else", "value": 135795, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account status incorrect", "value": 39240, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account information incorrect", "value": 35733, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Personal information incorrect", "value": 11632, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Public record information inaccurate", "value": 9279, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Old information reappears or never goes away", "value": 9275, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information is missing that should be on the report", "value": 4492, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information is incorrect", "value": 684, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information that should be on the report is missing", "value": 115, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Incorrect information on your report ", "value": 1, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Incorrect information on credit report", "value": 102686, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account status", "value": 37057, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information is not mine", "value": 32384, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account terms", "value": 10995, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Public record", "value": 8876, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Personal information", "value": 7529, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Reinserted previously deleted info", "value": 5845, "parent": "Incorrect information on credit report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Loan modification,collection,foreclosure", "value": 101564, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 87778, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Their investigation did not fix an error on your report", "value": 63190, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Investigation took more than 30 days", "value": 7222, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Was not notified of investigation status or results", "value": 6586, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Difficulty submitting a dispute or getting information about a dispute over the phone", "value": 5998, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem with personal statement of dispute", "value": 4377, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Loan servicing, payments, escrow account", "value": 72149, "parent": false, "visible": true, "width": 0.5 } ], "product": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 28047, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit reporting", "value": 27822, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other personal consumer report", "value": 179, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit repair services", "value": 46, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Credit reporting, credit repair services, or other personal consumer reports", "name": "More Information about Credit reporting, credit repair services, or other personal consumer reports", "splitterText": "More Information about Credit reporting, credit repair services, or other personal consumer reports", "value": "", "parent": "Credit reporting, credit repair services, or other personal consumer reports", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Debt collection", "value": 5576, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "I do not know", "value": 1435, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other debt", "value": 1435, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit card debt", "value": 1332, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Medical debt", "value": 858, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Auto debt", "value": 175, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Debt collection", "name": "More Information about Debt collection", "splitterText": "More Information about Debt collection", "value": "", "parent": "Debt collection", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Credit card or prepaid card", "value": 3849, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "General-purpose credit card or charge card", "value": 2759, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Store credit card", "value": 463, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Government benefit card", "value": 360, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "General-purpose prepaid card", "value": 236, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Payroll card", "value": 24, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Credit card or prepaid card", "name": "More Information about Credit card or prepaid card", "splitterText": "More Information about Credit card or prepaid card", "value": "", "parent": "Credit card or prepaid card", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Mortgage", "value": 2544, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Conventional home mortgage", "value": 1607, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "FHA mortgage", "value": 437, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "VA mortgage", "value": 199, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Home equity loan or line of credit (HELOC)", "value": 141, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other type of mortgage", "value": 138, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Mortgage", "name": "More Information about Mortgage", "splitterText": "More Information about Mortgage", "value": "", "parent": "Mortgage", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Checking or savings account", "value": 2413, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Checking account", "value": 1906, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other banking product or service", "value": 279, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Savings account", "value": 167, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "CD (Certificate of Deposit)", "value": 61, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Checking or savings account", "name": "More Information about Checking or savings account", "splitterText": "More Information about Checking or savings account", "value": "", "parent": "Checking or savings account", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false } ], "collections": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Servicemember", "value": 5172, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American", "value": 2352, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American, Servicemember", "value": 640, "parent": false, "visible": true, "width": 0.5 } ], "tags": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Servicemember", "value": 109650, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American", "value": 85620, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American, Servicemember", "value": 17831, "parent": false, "visible": true, "width": 0.5 } ] }, "subLens": "", "tooltip": false, "total": 44933 }
+export default {"activeCall":"","chartType":"line","colorMap":{"Other":"#a2a3a4","Credit reporting, credit repair services, or other personal consumer reports":"#addc91","Debt collection":"#257675","Credit card or prepaid card":"#9ec4c3","Mortgage":"#0072ce","Checking or savings account":"#96c4ed","Complaints":"#ADDC91","All other products":"#a2a3a4","All other companies":"#a2a3a4","All other values":"#a2a3a4"},"error":false,"expandedTrends":[],"filterNames":["Credit reporting, credit repair services, or other personal consumer reports","Debt collection","Credit card or prepaid card","Mortgage","Checking or savings account","Incorrect information on your report","Problem with a credit reporting company's investigation into an existing problem","Attempts to collect debt not owed","Improper use of your report","Managing an account","Incorrect information on credit report"],"focus":"","isLoading":false,"lastDate":"2020-05-18T00:00:00.000Z","lens":"Product","results":{"dateRangeArea":[{"name":"Other","value":67,"date":"2020-04-01T00:00:00.000Z"},{"name":"Other","value":72,"date":"2020-04-02T00:00:00.000Z"},{"name":"Other","value":82,"date":"2020-04-03T00:00:00.000Z"},{"name":"Other","value":36,"date":"2020-04-04T00:00:00.000Z"},{"name":"Other","value":20,"date":"2020-04-05T00:00:00.000Z"},{"name":"Other","value":76,"date":"2020-04-06T00:00:00.000Z"},{"name":"Other","value":64,"date":"2020-04-07T00:00:00.000Z"},{"name":"Other","value":67,"date":"2020-04-08T00:00:00.000Z"},{"name":"Other","value":79,"date":"2020-04-09T00:00:00.000Z"},{"name":"Other","value":92,"date":"2020-04-10T00:00:00.000Z"},{"name":"Other","value":46,"date":"2020-04-11T00:00:00.000Z"},{"name":"Other","value":21,"date":"2020-04-12T00:00:00.000Z"},{"name":"Other","value":71,"date":"2020-04-13T00:00:00.000Z"},{"name":"Other","value":66,"date":"2020-04-14T00:00:00.000Z"},{"name":"Other","value":68,"date":"2020-04-15T00:00:00.000Z"},{"name":"Other","value":77,"date":"2020-04-16T00:00:00.000Z"},{"name":"Other","value":79,"date":"2020-04-17T00:00:00.000Z"},{"name":"Other","value":41,"date":"2020-04-18T00:00:00.000Z"},{"name":"Other","value":37,"date":"2020-04-19T00:00:00.000Z"},{"name":"Other","value":72,"date":"2020-04-20T00:00:00.000Z"},{"name":"Other","value":79,"date":"2020-04-21T00:00:00.000Z"},{"name":"Other","value":87,"date":"2020-04-22T00:00:00.000Z"},{"name":"Other","value":83,"date":"2020-04-23T00:00:00.000Z"},{"name":"Other","value":97,"date":"2020-04-24T00:00:00.000Z"},{"name":"Other","value":55,"date":"2020-04-25T00:00:00.000Z"},{"name":"Other","value":44,"date":"2020-04-26T00:00:00.000Z"},{"name":"Other","value":114,"date":"2020-04-27T00:00:00.000Z"},{"name":"Other","value":97,"date":"2020-04-28T00:00:00.000Z"},{"name":"Other","value":113,"date":"2020-04-29T00:00:00.000Z"},{"name":"Other","value":77,"date":"2020-04-30T00:00:00.000Z"},{"name":"Other","value":70,"date":"2020-05-01T00:00:00.000Z"},{"name":"Other","value":32,"date":"2020-05-02T00:00:00.000Z"},{"name":"Other","value":24,"date":"2020-05-03T00:00:00.000Z"},{"name":"Other","value":42,"date":"2020-05-04T00:00:00.000Z"},{"name":"Other","value":50,"date":"2020-05-05T00:00:00.000Z"},{"name":"Other","value":41,"date":"2020-05-06T00:00:00.000Z"},{"name":"Other","value":33,"date":"2020-05-07T00:00:00.000Z"},{"name":"Other","value":28,"date":"2020-05-08T00:00:00.000Z"},{"name":"Other","value":12,"date":"2020-05-09T00:00:00.000Z"},{"name":"Other","value":8,"date":"2020-05-10T00:00:00.000Z"},{"name":"Other","value":22,"date":"2020-05-11T00:00:00.000Z"},{"name":"Other","value":26,"date":"2020-05-12T00:00:00.000Z"},{"name":"Other","value":10,"date":"2020-05-13T00:00:00.000Z"},{"name":"Other","value":9,"date":"2020-05-14T00:00:00.000Z"},{"name":"Other","value":8,"date":"2020-05-15T00:00:00.000Z"},{"name":"Other","value":6,"date":"2020-05-16T00:00:00.000Z"},{"name":"Other","value":3,"date":"2020-05-17T00:00:00.000Z"},{"name":"Other","value":1,"date":"2020-05-18T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":737,"date":"2020-04-01T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":738,"date":"2020-04-02T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":710,"date":"2020-04-03T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":494,"date":"2020-04-04T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":350,"date":"2020-04-05T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":753,"date":"2020-04-06T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":712,"date":"2020-04-07T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":717,"date":"2020-04-08T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":706,"date":"2020-04-09T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":791,"date":"2020-04-10T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":402,"date":"2020-04-11T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":344,"date":"2020-04-12T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":737,"date":"2020-04-13T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":768,"date":"2020-04-14T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":692,"date":"2020-04-15T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":693,"date":"2020-04-16T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":792,"date":"2020-04-17T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":526,"date":"2020-04-18T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":482,"date":"2020-04-19T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":764,"date":"2020-04-20T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":785,"date":"2020-04-21T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":882,"date":"2020-04-22T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":926,"date":"2020-04-23T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":992,"date":"2020-04-24T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":583,"date":"2020-04-25T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":457,"date":"2020-04-26T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":862,"date":"2020-04-27T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":894,"date":"2020-04-28T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":892,"date":"2020-04-29T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":998,"date":"2020-04-30T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":888,"date":"2020-05-01T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":516,"date":"2020-05-02T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":402,"date":"2020-05-03T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":637,"date":"2020-05-04T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":697,"date":"2020-05-05T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":442,"date":"2020-05-06T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":386,"date":"2020-05-07T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":326,"date":"2020-05-08T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":239,"date":"2020-05-09T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":153,"date":"2020-05-10T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":403,"date":"2020-05-11T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":420,"date":"2020-05-12T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":390,"date":"2020-05-13T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":363,"date":"2020-05-14T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":305,"date":"2020-05-15T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":177,"date":"2020-05-16T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":119,"date":"2020-05-17T00:00:00.000Z"},{"name":"Credit reporting, credit repair services, or other personal consumer reports","value":5,"date":"2020-05-18T00:00:00.000Z"},{"name":"Debt collection","value":167,"date":"2020-04-01T00:00:00.000Z"},{"name":"Debt collection","value":196,"date":"2020-04-02T00:00:00.000Z"},{"name":"Debt collection","value":142,"date":"2020-04-03T00:00:00.000Z"},{"name":"Debt collection","value":82,"date":"2020-04-04T00:00:00.000Z"},{"name":"Debt collection","value":79,"date":"2020-04-05T00:00:00.000Z"},{"name":"Debt collection","value":147,"date":"2020-04-06T00:00:00.000Z"},{"name":"Debt collection","value":182,"date":"2020-04-07T00:00:00.000Z"},{"name":"Debt collection","value":212,"date":"2020-04-08T00:00:00.000Z"},{"name":"Debt collection","value":174,"date":"2020-04-09T00:00:00.000Z"},{"name":"Debt collection","value":171,"date":"2020-04-10T00:00:00.000Z"},{"name":"Debt collection","value":93,"date":"2020-04-11T00:00:00.000Z"},{"name":"Debt collection","value":74,"date":"2020-04-12T00:00:00.000Z"},{"name":"Debt collection","value":136,"date":"2020-04-13T00:00:00.000Z"},{"name":"Debt collection","value":160,"date":"2020-04-14T00:00:00.000Z"},{"name":"Debt collection","value":159,"date":"2020-04-15T00:00:00.000Z"},{"name":"Debt collection","value":198,"date":"2020-04-16T00:00:00.000Z"},{"name":"Debt collection","value":186,"date":"2020-04-17T00:00:00.000Z"},{"name":"Debt collection","value":117,"date":"2020-04-18T00:00:00.000Z"},{"name":"Debt collection","value":75,"date":"2020-04-19T00:00:00.000Z"},{"name":"Debt collection","value":147,"date":"2020-04-20T00:00:00.000Z"},{"name":"Debt collection","value":183,"date":"2020-04-21T00:00:00.000Z"},{"name":"Debt collection","value":186,"date":"2020-04-22T00:00:00.000Z"},{"name":"Debt collection","value":201,"date":"2020-04-23T00:00:00.000Z"},{"name":"Debt collection","value":192,"date":"2020-04-24T00:00:00.000Z"},{"name":"Debt collection","value":81,"date":"2020-04-25T00:00:00.000Z"},{"name":"Debt collection","value":71,"date":"2020-04-26T00:00:00.000Z"},{"name":"Debt collection","value":163,"date":"2020-04-27T00:00:00.000Z"},{"name":"Debt collection","value":202,"date":"2020-04-28T00:00:00.000Z"},{"name":"Debt collection","value":182,"date":"2020-04-29T00:00:00.000Z"},{"name":"Debt collection","value":150,"date":"2020-04-30T00:00:00.000Z"},{"name":"Debt collection","value":138,"date":"2020-05-01T00:00:00.000Z"},{"name":"Debt collection","value":97,"date":"2020-05-02T00:00:00.000Z"},{"name":"Debt collection","value":82,"date":"2020-05-03T00:00:00.000Z"},{"name":"Debt collection","value":134,"date":"2020-05-04T00:00:00.000Z"},{"name":"Debt collection","value":103,"date":"2020-05-05T00:00:00.000Z"},{"name":"Debt collection","value":98,"date":"2020-05-06T00:00:00.000Z"},{"name":"Debt collection","value":66,"date":"2020-05-07T00:00:00.000Z"},{"name":"Debt collection","value":65,"date":"2020-05-08T00:00:00.000Z"},{"name":"Debt collection","value":29,"date":"2020-05-09T00:00:00.000Z"},{"name":"Debt collection","value":17,"date":"2020-05-10T00:00:00.000Z"},{"name":"Debt collection","value":51,"date":"2020-05-11T00:00:00.000Z"},{"name":"Debt collection","value":67,"date":"2020-05-12T00:00:00.000Z"},{"name":"Debt collection","value":37,"date":"2020-05-13T00:00:00.000Z"},{"name":"Debt collection","value":27,"date":"2020-05-14T00:00:00.000Z"},{"name":"Debt collection","value":29,"date":"2020-05-15T00:00:00.000Z"},{"name":"Debt collection","value":11,"date":"2020-05-16T00:00:00.000Z"},{"name":"Debt collection","value":11,"date":"2020-05-17T00:00:00.000Z"},{"name":"Debt collection","value":6,"date":"2020-05-18T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":115,"date":"2020-04-01T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":83,"date":"2020-04-02T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":118,"date":"2020-04-03T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":54,"date":"2020-04-04T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":30,"date":"2020-04-05T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":104,"date":"2020-04-06T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":133,"date":"2020-04-07T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":110,"date":"2020-04-08T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":99,"date":"2020-04-09T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":117,"date":"2020-04-10T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":47,"date":"2020-04-11T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":46,"date":"2020-04-12T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":122,"date":"2020-04-13T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":140,"date":"2020-04-14T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":133,"date":"2020-04-15T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":137,"date":"2020-04-16T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":107,"date":"2020-04-17T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":66,"date":"2020-04-18T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":43,"date":"2020-04-19T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":112,"date":"2020-04-20T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":132,"date":"2020-04-21T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":153,"date":"2020-04-22T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":161,"date":"2020-04-23T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":124,"date":"2020-04-24T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":66,"date":"2020-04-25T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":67,"date":"2020-04-26T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":131,"date":"2020-04-27T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":119,"date":"2020-04-28T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":140,"date":"2020-04-29T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":128,"date":"2020-04-30T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":113,"date":"2020-05-01T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":61,"date":"2020-05-02T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":41,"date":"2020-05-03T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":78,"date":"2020-05-04T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":100,"date":"2020-05-05T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":60,"date":"2020-05-06T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":37,"date":"2020-05-07T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":46,"date":"2020-05-08T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":17,"date":"2020-05-09T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":12,"date":"2020-05-10T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":31,"date":"2020-05-11T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":32,"date":"2020-05-12T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":23,"date":"2020-05-13T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":22,"date":"2020-05-14T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":11,"date":"2020-05-15T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":15,"date":"2020-05-16T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":9,"date":"2020-05-17T00:00:00.000Z"},{"name":"Credit card or prepaid card","value":4,"date":"2020-05-18T00:00:00.000Z"},{"name":"Mortgage","value":111,"date":"2020-04-01T00:00:00.000Z"},{"name":"Mortgage","value":89,"date":"2020-04-02T00:00:00.000Z"},{"name":"Mortgage","value":95,"date":"2020-04-03T00:00:00.000Z"},{"name":"Mortgage","value":34,"date":"2020-04-04T00:00:00.000Z"},{"name":"Mortgage","value":15,"date":"2020-04-05T00:00:00.000Z"},{"name":"Mortgage","value":88,"date":"2020-04-06T00:00:00.000Z"},{"name":"Mortgage","value":91,"date":"2020-04-07T00:00:00.000Z"},{"name":"Mortgage","value":91,"date":"2020-04-08T00:00:00.000Z"},{"name":"Mortgage","value":113,"date":"2020-04-09T00:00:00.000Z"},{"name":"Mortgage","value":64,"date":"2020-04-10T00:00:00.000Z"},{"name":"Mortgage","value":31,"date":"2020-04-11T00:00:00.000Z"},{"name":"Mortgage","value":16,"date":"2020-04-12T00:00:00.000Z"},{"name":"Mortgage","value":106,"date":"2020-04-13T00:00:00.000Z"},{"name":"Mortgage","value":90,"date":"2020-04-14T00:00:00.000Z"},{"name":"Mortgage","value":92,"date":"2020-04-15T00:00:00.000Z"},{"name":"Mortgage","value":88,"date":"2020-04-16T00:00:00.000Z"},{"name":"Mortgage","value":79,"date":"2020-04-17T00:00:00.000Z"},{"name":"Mortgage","value":30,"date":"2020-04-18T00:00:00.000Z"},{"name":"Mortgage","value":16,"date":"2020-04-19T00:00:00.000Z"},{"name":"Mortgage","value":81,"date":"2020-04-20T00:00:00.000Z"},{"name":"Mortgage","value":97,"date":"2020-04-21T00:00:00.000Z"},{"name":"Mortgage","value":86,"date":"2020-04-22T00:00:00.000Z"},{"name":"Mortgage","value":83,"date":"2020-04-23T00:00:00.000Z"},{"name":"Mortgage","value":82,"date":"2020-04-24T00:00:00.000Z"},{"name":"Mortgage","value":43,"date":"2020-04-25T00:00:00.000Z"},{"name":"Mortgage","value":23,"date":"2020-04-26T00:00:00.000Z"},{"name":"Mortgage","value":79,"date":"2020-04-27T00:00:00.000Z"},{"name":"Mortgage","value":90,"date":"2020-04-28T00:00:00.000Z"},{"name":"Mortgage","value":91,"date":"2020-04-29T00:00:00.000Z"},{"name":"Mortgage","value":85,"date":"2020-04-30T00:00:00.000Z"},{"name":"Mortgage","value":80,"date":"2020-05-01T00:00:00.000Z"},{"name":"Mortgage","value":25,"date":"2020-05-02T00:00:00.000Z"},{"name":"Mortgage","value":26,"date":"2020-05-03T00:00:00.000Z"},{"name":"Mortgage","value":50,"date":"2020-05-04T00:00:00.000Z"},{"name":"Mortgage","value":42,"date":"2020-05-05T00:00:00.000Z"},{"name":"Mortgage","value":28,"date":"2020-05-06T00:00:00.000Z"},{"name":"Mortgage","value":21,"date":"2020-05-07T00:00:00.000Z"},{"name":"Mortgage","value":27,"date":"2020-05-08T00:00:00.000Z"},{"name":"Mortgage","value":8,"date":"2020-05-09T00:00:00.000Z"},{"name":"Mortgage","value":0,"date":"2020-05-10T00:00:00.000Z"},{"name":"Mortgage","value":22,"date":"2020-05-11T00:00:00.000Z"},{"name":"Mortgage","value":12,"date":"2020-05-12T00:00:00.000Z"},{"name":"Mortgage","value":6,"date":"2020-05-13T00:00:00.000Z"},{"name":"Mortgage","value":8,"date":"2020-05-14T00:00:00.000Z"},{"name":"Mortgage","value":8,"date":"2020-05-15T00:00:00.000Z"},{"name":"Mortgage","value":0,"date":"2020-05-16T00:00:00.000Z"},{"name":"Mortgage","value":2,"date":"2020-05-17T00:00:00.000Z"},{"name":"Mortgage","value":0,"date":"2020-05-18T00:00:00.000Z"},{"name":"Checking or savings account","value":79,"date":"2020-04-01T00:00:00.000Z"},{"name":"Checking or savings account","value":68,"date":"2020-04-02T00:00:00.000Z"},{"name":"Checking or savings account","value":71,"date":"2020-04-03T00:00:00.000Z"},{"name":"Checking or savings account","value":32,"date":"2020-04-04T00:00:00.000Z"},{"name":"Checking or savings account","value":15,"date":"2020-04-05T00:00:00.000Z"},{"name":"Checking or savings account","value":74,"date":"2020-04-06T00:00:00.000Z"},{"name":"Checking or savings account","value":86,"date":"2020-04-07T00:00:00.000Z"},{"name":"Checking or savings account","value":75,"date":"2020-04-08T00:00:00.000Z"},{"name":"Checking or savings account","value":76,"date":"2020-04-09T00:00:00.000Z"},{"name":"Checking or savings account","value":89,"date":"2020-04-10T00:00:00.000Z"},{"name":"Checking or savings account","value":33,"date":"2020-04-11T00:00:00.000Z"},{"name":"Checking or savings account","value":15,"date":"2020-04-12T00:00:00.000Z"},{"name":"Checking or savings account","value":77,"date":"2020-04-13T00:00:00.000Z"},{"name":"Checking or savings account","value":69,"date":"2020-04-14T00:00:00.000Z"},{"name":"Checking or savings account","value":76,"date":"2020-04-15T00:00:00.000Z"},{"name":"Checking or savings account","value":94,"date":"2020-04-16T00:00:00.000Z"},{"name":"Checking or savings account","value":68,"date":"2020-04-17T00:00:00.000Z"},{"name":"Checking or savings account","value":23,"date":"2020-04-18T00:00:00.000Z"},{"name":"Checking or savings account","value":16,"date":"2020-04-19T00:00:00.000Z"},{"name":"Checking or savings account","value":75,"date":"2020-04-20T00:00:00.000Z"},{"name":"Checking or savings account","value":86,"date":"2020-04-21T00:00:00.000Z"},{"name":"Checking or savings account","value":92,"date":"2020-04-22T00:00:00.000Z"},{"name":"Checking or savings account","value":74,"date":"2020-04-23T00:00:00.000Z"},{"name":"Checking or savings account","value":74,"date":"2020-04-24T00:00:00.000Z"},{"name":"Checking or savings account","value":46,"date":"2020-04-25T00:00:00.000Z"},{"name":"Checking or savings account","value":35,"date":"2020-04-26T00:00:00.000Z"},{"name":"Checking or savings account","value":106,"date":"2020-04-27T00:00:00.000Z"},{"name":"Checking or savings account","value":104,"date":"2020-04-28T00:00:00.000Z"},{"name":"Checking or savings account","value":116,"date":"2020-04-29T00:00:00.000Z"},{"name":"Checking or savings account","value":86,"date":"2020-04-30T00:00:00.000Z"},{"name":"Checking or savings account","value":77,"date":"2020-05-01T00:00:00.000Z"},{"name":"Checking or savings account","value":20,"date":"2020-05-02T00:00:00.000Z"},{"name":"Checking or savings account","value":16,"date":"2020-05-03T00:00:00.000Z"},{"name":"Checking or savings account","value":62,"date":"2020-05-04T00:00:00.000Z"},{"name":"Checking or savings account","value":47,"date":"2020-05-05T00:00:00.000Z"},{"name":"Checking or savings account","value":36,"date":"2020-05-06T00:00:00.000Z"},{"name":"Checking or savings account","value":30,"date":"2020-05-07T00:00:00.000Z"},{"name":"Checking or savings account","value":22,"date":"2020-05-08T00:00:00.000Z"},{"name":"Checking or savings account","value":7,"date":"2020-05-09T00:00:00.000Z"},{"name":"Checking or savings account","value":3,"date":"2020-05-10T00:00:00.000Z"},{"name":"Checking or savings account","value":20,"date":"2020-05-11T00:00:00.000Z"},{"name":"Checking or savings account","value":18,"date":"2020-05-12T00:00:00.000Z"},{"name":"Checking or savings account","value":13,"date":"2020-05-13T00:00:00.000Z"},{"name":"Checking or savings account","value":5,"date":"2020-05-14T00:00:00.000Z"},{"name":"Checking or savings account","value":2,"date":"2020-05-15T00:00:00.000Z"},{"name":"Checking or savings account","value":2,"date":"2020-05-16T00:00:00.000Z"},{"name":"Checking or savings account","value":2,"date":"2020-05-17T00:00:00.000Z"},{"name":"Checking or savings account","value":1,"date":"2020-05-18T00:00:00.000Z"}],"dateRangeBrush":[{"date":"2020-04-01T00:00:00.000Z","value":1276},{"date":"2020-04-02T00:00:00.000Z","value":1246},{"date":"2020-04-03T00:00:00.000Z","value":1218},{"date":"2020-04-04T00:00:00.000Z","value":732},{"date":"2020-04-05T00:00:00.000Z","value":509},{"date":"2020-04-06T00:00:00.000Z","value":1242},{"date":"2020-04-07T00:00:00.000Z","value":1268},{"date":"2020-04-08T00:00:00.000Z","value":1272},{"date":"2020-04-09T00:00:00.000Z","value":1247},{"date":"2020-04-10T00:00:00.000Z","value":1324},{"date":"2020-04-11T00:00:00.000Z","value":652},{"date":"2020-04-12T00:00:00.000Z","value":516},{"date":"2020-04-13T00:00:00.000Z","value":1249},{"date":"2020-04-14T00:00:00.000Z","value":1293},{"date":"2020-04-15T00:00:00.000Z","value":1220},{"date":"2020-04-16T00:00:00.000Z","value":1287},{"date":"2020-04-17T00:00:00.000Z","value":1311},{"date":"2020-04-18T00:00:00.000Z","value":803},{"date":"2020-04-19T00:00:00.000Z","value":669},{"date":"2020-04-20T00:00:00.000Z","value":1251},{"date":"2020-04-21T00:00:00.000Z","value":1362},{"date":"2020-04-22T00:00:00.000Z","value":1486},{"date":"2020-04-23T00:00:00.000Z","value":1528},{"date":"2020-04-24T00:00:00.000Z","value":1561},{"date":"2020-04-25T00:00:00.000Z","value":874},{"date":"2020-04-26T00:00:00.000Z","value":697},{"date":"2020-04-27T00:00:00.000Z","value":1455},{"date":"2020-04-28T00:00:00.000Z","value":1506},{"date":"2020-04-29T00:00:00.000Z","value":1534},{"date":"2020-04-30T00:00:00.000Z","value":1524},{"date":"2020-05-01T00:00:00.000Z","value":1366},{"date":"2020-05-02T00:00:00.000Z","value":751},{"date":"2020-05-03T00:00:00.000Z","value":591},{"date":"2020-05-04T00:00:00.000Z","value":1003},{"date":"2020-05-05T00:00:00.000Z","value":1039},{"date":"2020-05-06T00:00:00.000Z","value":705},{"date":"2020-05-07T00:00:00.000Z","value":573},{"date":"2020-05-08T00:00:00.000Z","value":514},{"date":"2020-05-09T00:00:00.000Z","value":312},{"date":"2020-05-10T00:00:00.000Z","value":193},{"date":"2020-05-11T00:00:00.000Z","value":549},{"date":"2020-05-12T00:00:00.000Z","value":575},{"date":"2020-05-13T00:00:00.000Z","value":479},{"date":"2020-05-14T00:00:00.000Z","value":434},{"date":"2020-05-15T00:00:00.000Z","value":363},{"date":"2020-05-16T00:00:00.000Z","value":211},{"date":"2020-05-17T00:00:00.000Z","value":146},{"date":"2020-05-18T00:00:00.000Z","value":17}],"dateRangeLine":{"dataByTopic":[{"topic":"Credit reporting, credit repair services, or other personal consumer reports","topicName":"Credit reporting, credit repair services, or other personal consumer reports","dashed":false,"show":true,"dates":[{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-01T00:00:00.000Z","value":737},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-02T00:00:00.000Z","value":738},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-03T00:00:00.000Z","value":710},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-04T00:00:00.000Z","value":494},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-05T00:00:00.000Z","value":350},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-06T00:00:00.000Z","value":753},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-07T00:00:00.000Z","value":712},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-08T00:00:00.000Z","value":717},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-09T00:00:00.000Z","value":706},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-10T00:00:00.000Z","value":791},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-11T00:00:00.000Z","value":402},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-12T00:00:00.000Z","value":344},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-13T00:00:00.000Z","value":737},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-14T00:00:00.000Z","value":768},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-15T00:00:00.000Z","value":692},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-16T00:00:00.000Z","value":693},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-17T00:00:00.000Z","value":792},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-18T00:00:00.000Z","value":526},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-19T00:00:00.000Z","value":482},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-20T00:00:00.000Z","value":764},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-21T00:00:00.000Z","value":785},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-22T00:00:00.000Z","value":882},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-23T00:00:00.000Z","value":926},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-24T00:00:00.000Z","value":992},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-25T00:00:00.000Z","value":583},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-26T00:00:00.000Z","value":457},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-27T00:00:00.000Z","value":862},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-28T00:00:00.000Z","value":894},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-29T00:00:00.000Z","value":892},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-04-30T00:00:00.000Z","value":998},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-05-01T00:00:00.000Z","value":888},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-05-02T00:00:00.000Z","value":516},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-05-03T00:00:00.000Z","value":402},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-05-04T00:00:00.000Z","value":637},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-05-05T00:00:00.000Z","value":697},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-05-06T00:00:00.000Z","value":442},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-05-07T00:00:00.000Z","value":386},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-05-08T00:00:00.000Z","value":326},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-05-09T00:00:00.000Z","value":239},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-05-10T00:00:00.000Z","value":153},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-05-11T00:00:00.000Z","value":403},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-05-12T00:00:00.000Z","value":420},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-05-13T00:00:00.000Z","value":390},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-05-14T00:00:00.000Z","value":363},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-05-15T00:00:00.000Z","value":305},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-05-16T00:00:00.000Z","value":177},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-05-17T00:00:00.000Z","value":119},{"name":"Credit reporting, credit repair services, or other personal consumer reports","date":"2020-05-18T00:00:00.000Z","value":5}]},{"topic":"Debt collection","topicName":"Debt collection","dashed":false,"show":true,"dates":[{"name":"Debt collection","date":"2020-04-01T00:00:00.000Z","value":167},{"name":"Debt collection","date":"2020-04-02T00:00:00.000Z","value":196},{"name":"Debt collection","date":"2020-04-03T00:00:00.000Z","value":142},{"name":"Debt collection","date":"2020-04-04T00:00:00.000Z","value":82},{"name":"Debt collection","date":"2020-04-05T00:00:00.000Z","value":79},{"name":"Debt collection","date":"2020-04-06T00:00:00.000Z","value":147},{"name":"Debt collection","date":"2020-04-07T00:00:00.000Z","value":182},{"name":"Debt collection","date":"2020-04-08T00:00:00.000Z","value":212},{"name":"Debt collection","date":"2020-04-09T00:00:00.000Z","value":174},{"name":"Debt collection","date":"2020-04-10T00:00:00.000Z","value":171},{"name":"Debt collection","date":"2020-04-11T00:00:00.000Z","value":93},{"name":"Debt collection","date":"2020-04-12T00:00:00.000Z","value":74},{"name":"Debt collection","date":"2020-04-13T00:00:00.000Z","value":136},{"name":"Debt collection","date":"2020-04-14T00:00:00.000Z","value":160},{"name":"Debt collection","date":"2020-04-15T00:00:00.000Z","value":159},{"name":"Debt collection","date":"2020-04-16T00:00:00.000Z","value":198},{"name":"Debt collection","date":"2020-04-17T00:00:00.000Z","value":186},{"name":"Debt collection","date":"2020-04-18T00:00:00.000Z","value":117},{"name":"Debt collection","date":"2020-04-19T00:00:00.000Z","value":75},{"name":"Debt collection","date":"2020-04-20T00:00:00.000Z","value":147},{"name":"Debt collection","date":"2020-04-21T00:00:00.000Z","value":183},{"name":"Debt collection","date":"2020-04-22T00:00:00.000Z","value":186},{"name":"Debt collection","date":"2020-04-23T00:00:00.000Z","value":201},{"name":"Debt collection","date":"2020-04-24T00:00:00.000Z","value":192},{"name":"Debt collection","date":"2020-04-25T00:00:00.000Z","value":81},{"name":"Debt collection","date":"2020-04-26T00:00:00.000Z","value":71},{"name":"Debt collection","date":"2020-04-27T00:00:00.000Z","value":163},{"name":"Debt collection","date":"2020-04-28T00:00:00.000Z","value":202},{"name":"Debt collection","date":"2020-04-29T00:00:00.000Z","value":182},{"name":"Debt collection","date":"2020-04-30T00:00:00.000Z","value":150},{"name":"Debt collection","date":"2020-05-01T00:00:00.000Z","value":138},{"name":"Debt collection","date":"2020-05-02T00:00:00.000Z","value":97},{"name":"Debt collection","date":"2020-05-03T00:00:00.000Z","value":82},{"name":"Debt collection","date":"2020-05-04T00:00:00.000Z","value":134},{"name":"Debt collection","date":"2020-05-05T00:00:00.000Z","value":103},{"name":"Debt collection","date":"2020-05-06T00:00:00.000Z","value":98},{"name":"Debt collection","date":"2020-05-07T00:00:00.000Z","value":66},{"name":"Debt collection","date":"2020-05-08T00:00:00.000Z","value":65},{"name":"Debt collection","date":"2020-05-09T00:00:00.000Z","value":29},{"name":"Debt collection","date":"2020-05-10T00:00:00.000Z","value":17},{"name":"Debt collection","date":"2020-05-11T00:00:00.000Z","value":51},{"name":"Debt collection","date":"2020-05-12T00:00:00.000Z","value":67},{"name":"Debt collection","date":"2020-05-13T00:00:00.000Z","value":37},{"name":"Debt collection","date":"2020-05-14T00:00:00.000Z","value":27},{"name":"Debt collection","date":"2020-05-15T00:00:00.000Z","value":29},{"name":"Debt collection","date":"2020-05-16T00:00:00.000Z","value":11},{"name":"Debt collection","date":"2020-05-17T00:00:00.000Z","value":11},{"name":"Debt collection","date":"2020-05-18T00:00:00.000Z","value":6}]},{"topic":"Credit card or prepaid card","topicName":"Credit card or prepaid card","dashed":false,"show":true,"dates":[{"name":"Credit card or prepaid card","date":"2020-04-01T00:00:00.000Z","value":115},{"name":"Credit card or prepaid card","date":"2020-04-02T00:00:00.000Z","value":83},{"name":"Credit card or prepaid card","date":"2020-04-03T00:00:00.000Z","value":118},{"name":"Credit card or prepaid card","date":"2020-04-04T00:00:00.000Z","value":54},{"name":"Credit card or prepaid card","date":"2020-04-05T00:00:00.000Z","value":30},{"name":"Credit card or prepaid card","date":"2020-04-06T00:00:00.000Z","value":104},{"name":"Credit card or prepaid card","date":"2020-04-07T00:00:00.000Z","value":133},{"name":"Credit card or prepaid card","date":"2020-04-08T00:00:00.000Z","value":110},{"name":"Credit card or prepaid card","date":"2020-04-09T00:00:00.000Z","value":99},{"name":"Credit card or prepaid card","date":"2020-04-10T00:00:00.000Z","value":117},{"name":"Credit card or prepaid card","date":"2020-04-11T00:00:00.000Z","value":47},{"name":"Credit card or prepaid card","date":"2020-04-12T00:00:00.000Z","value":46},{"name":"Credit card or prepaid card","date":"2020-04-13T00:00:00.000Z","value":122},{"name":"Credit card or prepaid card","date":"2020-04-14T00:00:00.000Z","value":140},{"name":"Credit card or prepaid card","date":"2020-04-15T00:00:00.000Z","value":133},{"name":"Credit card or prepaid card","date":"2020-04-16T00:00:00.000Z","value":137},{"name":"Credit card or prepaid card","date":"2020-04-17T00:00:00.000Z","value":107},{"name":"Credit card or prepaid card","date":"2020-04-18T00:00:00.000Z","value":66},{"name":"Credit card or prepaid card","date":"2020-04-19T00:00:00.000Z","value":43},{"name":"Credit card or prepaid card","date":"2020-04-20T00:00:00.000Z","value":112},{"name":"Credit card or prepaid card","date":"2020-04-21T00:00:00.000Z","value":132},{"name":"Credit card or prepaid card","date":"2020-04-22T00:00:00.000Z","value":153},{"name":"Credit card or prepaid card","date":"2020-04-23T00:00:00.000Z","value":161},{"name":"Credit card or prepaid card","date":"2020-04-24T00:00:00.000Z","value":124},{"name":"Credit card or prepaid card","date":"2020-04-25T00:00:00.000Z","value":66},{"name":"Credit card or prepaid card","date":"2020-04-26T00:00:00.000Z","value":67},{"name":"Credit card or prepaid card","date":"2020-04-27T00:00:00.000Z","value":131},{"name":"Credit card or prepaid card","date":"2020-04-28T00:00:00.000Z","value":119},{"name":"Credit card or prepaid card","date":"2020-04-29T00:00:00.000Z","value":140},{"name":"Credit card or prepaid card","date":"2020-04-30T00:00:00.000Z","value":128},{"name":"Credit card or prepaid card","date":"2020-05-01T00:00:00.000Z","value":113},{"name":"Credit card or prepaid card","date":"2020-05-02T00:00:00.000Z","value":61},{"name":"Credit card or prepaid card","date":"2020-05-03T00:00:00.000Z","value":41},{"name":"Credit card or prepaid card","date":"2020-05-04T00:00:00.000Z","value":78},{"name":"Credit card or prepaid card","date":"2020-05-05T00:00:00.000Z","value":100},{"name":"Credit card or prepaid card","date":"2020-05-06T00:00:00.000Z","value":60},{"name":"Credit card or prepaid card","date":"2020-05-07T00:00:00.000Z","value":37},{"name":"Credit card or prepaid card","date":"2020-05-08T00:00:00.000Z","value":46},{"name":"Credit card or prepaid card","date":"2020-05-09T00:00:00.000Z","value":17},{"name":"Credit card or prepaid card","date":"2020-05-10T00:00:00.000Z","value":12},{"name":"Credit card or prepaid card","date":"2020-05-11T00:00:00.000Z","value":31},{"name":"Credit card or prepaid card","date":"2020-05-12T00:00:00.000Z","value":32},{"name":"Credit card or prepaid card","date":"2020-05-13T00:00:00.000Z","value":23},{"name":"Credit card or prepaid card","date":"2020-05-14T00:00:00.000Z","value":22},{"name":"Credit card or prepaid card","date":"2020-05-15T00:00:00.000Z","value":11},{"name":"Credit card or prepaid card","date":"2020-05-16T00:00:00.000Z","value":15},{"name":"Credit card or prepaid card","date":"2020-05-17T00:00:00.000Z","value":9},{"name":"Credit card or prepaid card","date":"2020-05-18T00:00:00.000Z","value":4}]},{"topic":"Mortgage","topicName":"Mortgage","dashed":false,"show":true,"dates":[{"name":"Mortgage","date":"2020-04-01T00:00:00.000Z","value":111},{"name":"Mortgage","date":"2020-04-02T00:00:00.000Z","value":89},{"name":"Mortgage","date":"2020-04-03T00:00:00.000Z","value":95},{"name":"Mortgage","date":"2020-04-04T00:00:00.000Z","value":34},{"name":"Mortgage","date":"2020-04-05T00:00:00.000Z","value":15},{"name":"Mortgage","date":"2020-04-06T00:00:00.000Z","value":88},{"name":"Mortgage","date":"2020-04-07T00:00:00.000Z","value":91},{"name":"Mortgage","date":"2020-04-08T00:00:00.000Z","value":91},{"name":"Mortgage","date":"2020-04-09T00:00:00.000Z","value":113},{"name":"Mortgage","date":"2020-04-10T00:00:00.000Z","value":64},{"name":"Mortgage","date":"2020-04-11T00:00:00.000Z","value":31},{"name":"Mortgage","date":"2020-04-12T00:00:00.000Z","value":16},{"name":"Mortgage","date":"2020-04-13T00:00:00.000Z","value":106},{"name":"Mortgage","date":"2020-04-14T00:00:00.000Z","value":90},{"name":"Mortgage","date":"2020-04-15T00:00:00.000Z","value":92},{"name":"Mortgage","date":"2020-04-16T00:00:00.000Z","value":88},{"name":"Mortgage","date":"2020-04-17T00:00:00.000Z","value":79},{"name":"Mortgage","date":"2020-04-18T00:00:00.000Z","value":30},{"name":"Mortgage","date":"2020-04-19T00:00:00.000Z","value":16},{"name":"Mortgage","date":"2020-04-20T00:00:00.000Z","value":81},{"name":"Mortgage","date":"2020-04-21T00:00:00.000Z","value":97},{"name":"Mortgage","date":"2020-04-22T00:00:00.000Z","value":86},{"name":"Mortgage","date":"2020-04-23T00:00:00.000Z","value":83},{"name":"Mortgage","date":"2020-04-24T00:00:00.000Z","value":82},{"name":"Mortgage","date":"2020-04-25T00:00:00.000Z","value":43},{"name":"Mortgage","date":"2020-04-26T00:00:00.000Z","value":23},{"name":"Mortgage","date":"2020-04-27T00:00:00.000Z","value":79},{"name":"Mortgage","date":"2020-04-28T00:00:00.000Z","value":90},{"name":"Mortgage","date":"2020-04-29T00:00:00.000Z","value":91},{"name":"Mortgage","date":"2020-04-30T00:00:00.000Z","value":85},{"name":"Mortgage","date":"2020-05-01T00:00:00.000Z","value":80},{"name":"Mortgage","date":"2020-05-02T00:00:00.000Z","value":25},{"name":"Mortgage","date":"2020-05-03T00:00:00.000Z","value":26},{"name":"Mortgage","date":"2020-05-04T00:00:00.000Z","value":50},{"name":"Mortgage","date":"2020-05-05T00:00:00.000Z","value":42},{"name":"Mortgage","date":"2020-05-06T00:00:00.000Z","value":28},{"name":"Mortgage","date":"2020-05-07T00:00:00.000Z","value":21},{"name":"Mortgage","date":"2020-05-08T00:00:00.000Z","value":27},{"name":"Mortgage","date":"2020-05-09T00:00:00.000Z","value":8},{"name":"Mortgage","date":"2020-05-10T00:00:00.000Z","value":0},{"name":"Mortgage","date":"2020-05-11T00:00:00.000Z","value":22},{"name":"Mortgage","date":"2020-05-12T00:00:00.000Z","value":12},{"name":"Mortgage","date":"2020-05-13T00:00:00.000Z","value":6},{"name":"Mortgage","date":"2020-05-14T00:00:00.000Z","value":8},{"name":"Mortgage","date":"2020-05-15T00:00:00.000Z","value":8},{"name":"Mortgage","date":"2020-05-16T00:00:00.000Z","value":0},{"name":"Mortgage","date":"2020-05-17T00:00:00.000Z","value":2},{"name":"Mortgage","date":"2020-05-18T00:00:00.000Z","value":0}]},{"topic":"Checking or savings account","topicName":"Checking or savings account","dashed":false,"show":true,"dates":[{"name":"Checking or savings account","date":"2020-04-01T00:00:00.000Z","value":79},{"name":"Checking or savings account","date":"2020-04-02T00:00:00.000Z","value":68},{"name":"Checking or savings account","date":"2020-04-03T00:00:00.000Z","value":71},{"name":"Checking or savings account","date":"2020-04-04T00:00:00.000Z","value":32},{"name":"Checking or savings account","date":"2020-04-05T00:00:00.000Z","value":15},{"name":"Checking or savings account","date":"2020-04-06T00:00:00.000Z","value":74},{"name":"Checking or savings account","date":"2020-04-07T00:00:00.000Z","value":86},{"name":"Checking or savings account","date":"2020-04-08T00:00:00.000Z","value":75},{"name":"Checking or savings account","date":"2020-04-09T00:00:00.000Z","value":76},{"name":"Checking or savings account","date":"2020-04-10T00:00:00.000Z","value":89},{"name":"Checking or savings account","date":"2020-04-11T00:00:00.000Z","value":33},{"name":"Checking or savings account","date":"2020-04-12T00:00:00.000Z","value":15},{"name":"Checking or savings account","date":"2020-04-13T00:00:00.000Z","value":77},{"name":"Checking or savings account","date":"2020-04-14T00:00:00.000Z","value":69},{"name":"Checking or savings account","date":"2020-04-15T00:00:00.000Z","value":76},{"name":"Checking or savings account","date":"2020-04-16T00:00:00.000Z","value":94},{"name":"Checking or savings account","date":"2020-04-17T00:00:00.000Z","value":68},{"name":"Checking or savings account","date":"2020-04-18T00:00:00.000Z","value":23},{"name":"Checking or savings account","date":"2020-04-19T00:00:00.000Z","value":16},{"name":"Checking or savings account","date":"2020-04-20T00:00:00.000Z","value":75},{"name":"Checking or savings account","date":"2020-04-21T00:00:00.000Z","value":86},{"name":"Checking or savings account","date":"2020-04-22T00:00:00.000Z","value":92},{"name":"Checking or savings account","date":"2020-04-23T00:00:00.000Z","value":74},{"name":"Checking or savings account","date":"2020-04-24T00:00:00.000Z","value":74},{"name":"Checking or savings account","date":"2020-04-25T00:00:00.000Z","value":46},{"name":"Checking or savings account","date":"2020-04-26T00:00:00.000Z","value":35},{"name":"Checking or savings account","date":"2020-04-27T00:00:00.000Z","value":106},{"name":"Checking or savings account","date":"2020-04-28T00:00:00.000Z","value":104},{"name":"Checking or savings account","date":"2020-04-29T00:00:00.000Z","value":116},{"name":"Checking or savings account","date":"2020-04-30T00:00:00.000Z","value":86},{"name":"Checking or savings account","date":"2020-05-01T00:00:00.000Z","value":77},{"name":"Checking or savings account","date":"2020-05-02T00:00:00.000Z","value":20},{"name":"Checking or savings account","date":"2020-05-03T00:00:00.000Z","value":16},{"name":"Checking or savings account","date":"2020-05-04T00:00:00.000Z","value":62},{"name":"Checking or savings account","date":"2020-05-05T00:00:00.000Z","value":47},{"name":"Checking or savings account","date":"2020-05-06T00:00:00.000Z","value":36},{"name":"Checking or savings account","date":"2020-05-07T00:00:00.000Z","value":30},{"name":"Checking or savings account","date":"2020-05-08T00:00:00.000Z","value":22},{"name":"Checking or savings account","date":"2020-05-09T00:00:00.000Z","value":7},{"name":"Checking or savings account","date":"2020-05-10T00:00:00.000Z","value":3},{"name":"Checking or savings account","date":"2020-05-11T00:00:00.000Z","value":20},{"name":"Checking or savings account","date":"2020-05-12T00:00:00.000Z","value":18},{"name":"Checking or savings account","date":"2020-05-13T00:00:00.000Z","value":13},{"name":"Checking or savings account","date":"2020-05-14T00:00:00.000Z","value":5},{"name":"Checking or savings account","date":"2020-05-15T00:00:00.000Z","value":2},{"name":"Checking or savings account","date":"2020-05-16T00:00:00.000Z","value":2},{"name":"Checking or savings account","date":"2020-05-17T00:00:00.000Z","value":2},{"name":"Checking or savings account","date":"2020-05-18T00:00:00.000Z","value":1}]}]},"issue":[{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Incorrect information on your report","value":279586,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Information belongs to someone else","value":159378,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Account status incorrect","value":41890,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Account information incorrect","value":38628,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Personal information incorrect","value":12803,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Old information reappears or never goes away","value":9833,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Public record information inaccurate","value":9679,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Information is missing that should be on the report","value":4950,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Information is incorrect","value":728,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Information that should be on the report is missing","value":120,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Incorrect information on your report ","value":1,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Loan modification,collection,foreclosure","value":112309,"parent":false,"visible":true,"width":0.5},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Incorrect information on credit report","value":102686,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Account status","value":37057,"parent":"Incorrect information on credit report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Information is not mine","value":32384,"parent":"Incorrect information on credit report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Account terms","value":10995,"parent":"Incorrect information on credit report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Public record","value":8876,"parent":"Incorrect information on credit report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Personal information","value":7529,"parent":"Incorrect information on credit report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Reinserted previously deleted info","value":5845,"parent":"Incorrect information on credit report","visible":false,"width":0.4},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Problem with a credit reporting company's investigation into an existing problem","value":97724,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Their investigation did not fix an error on your report","value":68211,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Investigation took more than 30 days","value":9367,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Was not notified of investigation status or results","value":8509,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Difficulty submitting a dispute or getting information about a dispute over the phone","value":6492,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Problem with personal statement of dispute","value":4693,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Loan servicing, payments, escrow account","value":77333,"parent":false,"visible":true,"width":0.5}],"product":[{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Credit reporting, credit repair services, or other personal consumer reports","value":28047,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Credit reporting","value":27822,"parent":"Credit reporting, credit repair services, or other personal consumer reports","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Other personal consumer report","value":179,"parent":"Credit reporting, credit repair services, or other personal consumer reports","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Credit repair services","value":46,"parent":"Credit reporting, credit repair services, or other personal consumer reports","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Credit reporting, credit repair services, or other personal consumer reports","name":"More Information about Credit reporting, credit repair services, or other personal consumer reports","splitterText":"More Information about Credit reporting, credit repair services, or other personal consumer reports","value":"","parent":"Credit reporting, credit repair services, or other personal consumer reports","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Debt collection","value":5576,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"I do not know","value":1435,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Other debt","value":1435,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Credit card debt","value":1332,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Medical debt","value":858,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Auto debt","value":175,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Debt collection","name":"More Information about Debt collection","splitterText":"More Information about Debt collection","value":"","parent":"Debt collection","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Credit card or prepaid card","value":3849,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"General-purpose credit card or charge card","value":2759,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Store credit card","value":463,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Government benefit card","value":360,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"General-purpose prepaid card","value":236,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Payroll card","value":24,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Credit card or prepaid card","name":"More Information about Credit card or prepaid card","splitterText":"More Information about Credit card or prepaid card","value":"","parent":"Credit card or prepaid card","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Mortgage","value":2544,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Conventional home mortgage","value":1607,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"FHA mortgage","value":437,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"VA mortgage","value":199,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Home equity loan or line of credit (HELOC)","value":141,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Other type of mortgage","value":138,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Mortgage","name":"More Information about Mortgage","splitterText":"More Information about Mortgage","value":"","parent":"Mortgage","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Checking or savings account","value":2413,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Checking account","value":1906,"parent":"Checking or savings account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Other banking product or service","value":279,"parent":"Checking or savings account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Savings account","value":167,"parent":"Checking or savings account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"CD (Certificate of Deposit)","value":61,"parent":"Checking or savings account","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Checking or savings account","name":"More Information about Checking or savings account","splitterText":"More Information about Checking or savings account","value":"","parent":"Checking or savings account","pctOfSet":"","width":0.3,"visible":false}],"tags":[{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Servicemember","value":115185,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Older American","value":89940,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Older American, Servicemember","value":18620,"parent":false,"visible":true,"width":0.5}]},"subLens":"","tooltip":false,"total":44933}
diff --git a/src/reducers/__fixtures__/trendsFocusAggs.jsx b/src/reducers/__fixtures__/trendsFocusAggs.jsx
index b51c959d9..950d70908 100644
--- a/src/reducers/__fixtures__/trendsFocusAggs.jsx
+++ b/src/reducers/__fixtures__/trendsFocusAggs.jsx
@@ -1,791 +1,3 @@
 export const trendsFocusAggs = {"sub-product":{"doc_count":11694,"sub-product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":695,"buckets":[{"key":"Credit card debt","doc_count":2992,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":26,"interval_diff":{"value":-899}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":925,"interval_diff":{"value":-187}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1112,"interval_diff":{"value":183}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":929}]}},{"key":"Other debt","doc_count":2957,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":22,"interval_diff":{"value":-857}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":879,"interval_diff":{"value":-293}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1172,"interval_diff":{"value":288}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":884}]}},{"key":"I do not know","doc_count":2937,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":7,"interval_diff":{"value":-870}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":877,"interval_diff":{"value":-200}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1077,"interval_diff":{"value":101}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":976}]}},{"key":"Medical debt","doc_count":1732,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":8,"interval_diff":{"value":-508}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":516,"interval_diff":{"value":-129}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":645,"interval_diff":{"value":82}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":563}]}},{"key":"Auto debt","doc_count":381,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":1,"interval_diff":{"value":-104}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":105,"interval_diff":{"value":-53}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":158,"interval_diff":{"value":41}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":117}]}}]}},"dateRangeBrush":{"doc_count":300401,"dateRangeBrush":{"buckets":[{"key_as_string":"2013-07-01T00:00:00.000Z","key":1372636800000,"doc_count":900},{"key_as_string":"2013-08-01T00:00:00.000Z","key":1375315200000,"doc_count":1494},{"key_as_string":"2013-09-01T00:00:00.000Z","key":1377993600000,"doc_count":2003},{"key_as_string":"2013-10-01T00:00:00.000Z","key":1380585600000,"doc_count":1793},{"key_as_string":"2013-11-01T00:00:00.000Z","key":1383264000000,"doc_count":2448},{"key_as_string":"2013-12-01T00:00:00.000Z","key":1385856000000,"doc_count":2431},{"key_as_string":"2014-01-01T00:00:00.000Z","key":1388534400000,"doc_count":3268},{"key_as_string":"2014-02-01T00:00:00.000Z","key":1391212800000,"doc_count":3370},{"key_as_string":"2014-03-01T00:00:00.000Z","key":1393632000000,"doc_count":3590},{"key_as_string":"2014-04-01T00:00:00.000Z","key":1396310400000,"doc_count":3695},{"key_as_string":"2014-05-01T00:00:00.000Z","key":1398902400000,"doc_count":3204},{"key_as_string":"2014-06-01T00:00:00.000Z","key":1401580800000,"doc_count":3397},{"key_as_string":"2014-07-01T00:00:00.000Z","key":1404172800000,"doc_count":3480},{"key_as_string":"2014-08-01T00:00:00.000Z","key":1406851200000,"doc_count":3233},{"key_as_string":"2014-09-01T00:00:00.000Z","key":1409529600000,"doc_count":2890},{"key_as_string":"2014-10-01T00:00:00.000Z","key":1412121600000,"doc_count":3222},{"key_as_string":"2014-11-01T00:00:00.000Z","key":1414800000000,"doc_count":2816},{"key_as_string":"2014-12-01T00:00:00.000Z","key":1417392000000,"doc_count":2974},{"key_as_string":"2015-01-01T00:00:00.000Z","key":1420070400000,"doc_count":3256},{"key_as_string":"2015-02-01T00:00:00.000Z","key":1422748800000,"doc_count":3412},{"key_as_string":"2015-03-01T00:00:00.000Z","key":1425168000000,"doc_count":3879},{"key_as_string":"2015-04-01T00:00:00.000Z","key":1427846400000,"doc_count":3368},{"key_as_string":"2015-05-01T00:00:00.000Z","key":1430438400000,"doc_count":3334},{"key_as_string":"2015-06-01T00:00:00.000Z","key":1433116800000,"doc_count":3479},{"key_as_string":"2015-07-01T00:00:00.000Z","key":1435708800000,"doc_count":3782},{"key_as_string":"2015-08-01T00:00:00.000Z","key":1438387200000,"doc_count":3566},{"key_as_string":"2015-09-01T00:00:00.000Z","key":1441065600000,"doc_count":3150},{"key_as_string":"2015-10-01T00:00:00.000Z","key":1443657600000,"doc_count":3015},{"key_as_string":"2015-11-01T00:00:00.000Z","key":1446336000000,"doc_count":2621},{"key_as_string":"2015-12-01T00:00:00.000Z","key":1448928000000,"doc_count":2862},{"key_as_string":"2016-01-01T00:00:00.000Z","key":1451606400000,"doc_count":2924},{"key_as_string":"2016-02-01T00:00:00.000Z","key":1454284800000,"doc_count":3222},{"key_as_string":"2016-03-01T00:00:00.000Z","key":1456790400000,"doc_count":3525},{"key_as_string":"2016-04-01T00:00:00.000Z","key":1459468800000,"doc_count":3243},{"key_as_string":"2016-05-01T00:00:00.000Z","key":1462060800000,"doc_count":3064},{"key_as_string":"2016-06-01T00:00:00.000Z","key":1464739200000,"doc_count":3233},{"key_as_string":"2016-07-01T00:00:00.000Z","key":1467331200000,"doc_count":3020},{"key_as_string":"2016-08-01T00:00:00.000Z","key":1470009600000,"doc_count":4163},{"key_as_string":"2016-09-01T00:00:00.000Z","key":1472688000000,"doc_count":3537},{"key_as_string":"2016-10-01T00:00:00.000Z","key":1475280000000,"doc_count":3579},{"key_as_string":"2016-11-01T00:00:00.000Z","key":1477958400000,"doc_count":3288},{"key_as_string":"2016-12-01T00:00:00.000Z","key":1480550400000,"doc_count":3668},{"key_as_string":"2017-01-01T00:00:00.000Z","key":1483228800000,"doc_count":3730},{"key_as_string":"2017-02-01T00:00:00.000Z","key":1485907200000,"doc_count":3949},{"key_as_string":"2017-03-01T00:00:00.000Z","key":1488326400000,"doc_count":4605},{"key_as_string":"2017-04-01T00:00:00.000Z","key":1491004800000,"doc_count":4173},{"key_as_string":"2017-05-01T00:00:00.000Z","key":1493596800000,"doc_count":4163},{"key_as_string":"2017-06-01T00:00:00.000Z","key":1496275200000,"doc_count":3713},{"key_as_string":"2017-07-01T00:00:00.000Z","key":1498867200000,"doc_count":4223},{"key_as_string":"2017-08-01T00:00:00.000Z","key":1501545600000,"doc_count":4376},{"key_as_string":"2017-09-01T00:00:00.000Z","key":1504224000000,"doc_count":3541},{"key_as_string":"2017-10-01T00:00:00.000Z","key":1506816000000,"doc_count":4032},{"key_as_string":"2017-11-01T00:00:00.000Z","key":1509494400000,"doc_count":3564},{"key_as_string":"2017-12-01T00:00:00.000Z","key":1512086400000,"doc_count":3884},{"key_as_string":"2018-01-01T00:00:00.000Z","key":1514764800000,"doc_count":4908},{"key_as_string":"2018-02-01T00:00:00.000Z","key":1517443200000,"doc_count":4474},{"key_as_string":"2018-03-01T00:00:00.000Z","key":1519862400000,"doc_count":5266},{"key_as_string":"2018-04-01T00:00:00.000Z","key":1522540800000,"doc_count":4757},{"key_as_string":"2018-05-01T00:00:00.000Z","key":1525132800000,"doc_count":4736},{"key_as_string":"2018-06-01T00:00:00.000Z","key":1527811200000,"doc_count":4256},{"key_as_string":"2018-07-01T00:00:00.000Z","key":1530403200000,"doc_count":3999},{"key_as_string":"2018-08-01T00:00:00.000Z","key":1533081600000,"doc_count":4413},{"key_as_string":"2018-09-01T00:00:00.000Z","key":1535760000000,"doc_count":3681},{"key_as_string":"2018-10-01T00:00:00.000Z","key":1538352000000,"doc_count":4087},{"key_as_string":"2018-11-01T00:00:00.000Z","key":1541030400000,"doc_count":3348},{"key_as_string":"2018-12-01T00:00:00.000Z","key":1543622400000,"doc_count":3259},{"key_as_string":"2019-01-01T00:00:00.000Z","key":1546300800000,"doc_count":3127},{"key_as_string":"2019-02-01T00:00:00.000Z","key":1548979200000,"doc_count":3787},{"key_as_string":"2019-03-01T00:00:00.000Z","key":1551398400000,"doc_count":4227},{"key_as_string":"2019-04-01T00:00:00.000Z","key":1554076800000,"doc_count":3983},{"key_as_string":"2019-05-01T00:00:00.000Z","key":1556668800000,"doc_count":4135},{"key_as_string":"2019-06-01T00:00:00.000Z","key":1559347200000,"doc_count":4051},{"key_as_string":"2019-07-01T00:00:00.000Z","key":1561939200000,"doc_count":4014},{"key_as_string":"2019-08-01T00:00:00.000Z","key":1564617600000,"doc_count":4231},{"key_as_string":"2019-09-01T00:00:00.000Z","key":1567296000000,"doc_count":3976},{"key_as_string":"2019-10-01T00:00:00.000Z","key":1569888000000,"doc_count":4022},{"key_as_string":"2019-11-01T00:00:00.000Z","key":1572566400000,"doc_count":3526},{"key_as_string":"2019-12-01T00:00:00.000Z","key":1575158400000,"doc_count":3324},{"key_as_string":"2020-01-01T00:00:00.000Z","key":1577836800000,"doc_count":3768},{"key_as_string":"2020-02-01T00:00:00.000Z","key":1580515200000,"doc_count":3983},{"key_as_string":"2020-03-01T00:00:00.000Z","key":1583020800000,"doc_count":4205},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":4513},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":4422},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":3508},{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":64}]}},"product":{"doc_count":11694,"product":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Debt collection","doc_count":11694,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":64,"interval_diff":{"value":-3444}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":3508,"interval_diff":{"value":-914}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":4422,"interval_diff":{"value":722}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":3700}]}}]}},"max_date":{"value":1593882000000,"value_as_string":"2020-07-04T12:00:00-05:00"},"issue":{"doc_count":11694,"issue":{"doc_count_error_upper_bound":0,"sum_other_doc_count":165,"buckets":[{"key":"Attempts to collect debt not owed","doc_count":6337,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":47,"interval_diff":{"value":-1900}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":1947,"interval_diff":{"value":-416}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":2363,"interval_diff":{"value":383}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":1980}]}},{"key":"Written notification about debt","doc_count":2549,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":10,"interval_diff":{"value":-677}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":687,"interval_diff":{"value":-338}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":1025,"interval_diff":{"value":198}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":827}]}},{"key":"False statements or representation","doc_count":1017,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":1,"interval_diff":{"value":-309}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":310,"interval_diff":{"value":-84}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":394,"interval_diff":{"value":82}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":312}]}},{"key":"Took or threatened to take negative or legal action","doc_count":874,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":4,"interval_diff":{"value":-268}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":272,"interval_diff":{"value":-53}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":325,"interval_diff":{"value":52}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":273}]}},{"key":"Communication tactics","doc_count":752,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":2,"interval_diff":{"value":-229}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":231,"interval_diff":{"value":-31}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":262,"interval_diff":{"value":5}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":257}]}}]}},"min_date":{"value":1322758800000,"value_as_string":"2011-12-01T12:00:00-05:00"},"dateRangeArea":{"doc_count":11694,"dateRangeArea":{"buckets":[{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":3700},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":4422},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":3508},{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":64}]}},"tags":{"doc_count":11694,"tags":{"doc_count_error_upper_bound":0,"sum_other_doc_count":0,"buckets":[{"key":"Servicemember","doc_count":1030,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":4,"interval_diff":{"value":-332}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":336,"interval_diff":{"value":6}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":330,"interval_diff":{"value":-30}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":360}]}},{"key":"Older American","doc_count":303,"trend_period":{"buckets":[{"key_as_string":"2020-07-01T00:00:00.000Z","key":1593561600000,"doc_count":2,"interval_diff":{"value":-97}},{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":99,"interval_diff":{"value":-10}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":109,"interval_diff":{"value":16}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":93}]}},{"key":"Older American, Servicemember","doc_count":68,"trend_period":{"buckets":[{"key_as_string":"2020-06-01T00:00:00.000Z","key":1590969600000,"doc_count":17,"interval_diff":{"value":-8}},{"key_as_string":"2020-05-01T00:00:00.000Z","key":1588291200000,"doc_count":25,"interval_diff":{"value":-1}},{"key_as_string":"2020-04-01T00:00:00.000Z","key":1585699200000,"doc_count":26}]}}]}}}
 
-export const trendsFocusAggsResults = {
-    dateRangeArea: [
-      {
-        name: 'Other',
-        value: 231,
-        date: '2020-04-01T00:00:00.000Z'
-      },
-      {
-        name: 'Other',
-        value: 258,
-        date: '2020-05-01T00:00:00.000Z'
-      },
-      {
-        name: 'Other',
-        value: 206,
-        date: '2020-06-01T00:00:00.000Z',
-        colorIndex: 10
-      },
-      {
-        name: 'Other',
-        value: 0,
-        date: '2020-07-01T00:00:00.000Z',
-        colorIndex: 10
-      },
-      {
-        name: 'Credit card debt',
-        value: 929,
-        date: '2020-04-01T00:00:00.000Z'
-      },
-      {
-        name: 'Credit card debt',
-        value: 1112,
-        date: '2020-05-01T00:00:00.000Z'
-      },
-      {
-        name: 'Credit card debt',
-        value: 925,
-        date: '2020-06-01T00:00:00.000Z',
-        colorIndex: 1
-      },
-      {
-        name: 'Credit card debt',
-        value: 26,
-        date: '2020-07-01T00:00:00.000Z',
-        colorIndex: 1
-      },
-      {
-        name: 'Other debt',
-        value: 884,
-        date: '2020-04-01T00:00:00.000Z'
-      },
-      {
-        name: 'Other debt',
-        value: 1172,
-        date: '2020-05-01T00:00:00.000Z'
-      },
-      {
-        name: 'Other debt',
-        value: 879,
-        date: '2020-06-01T00:00:00.000Z',
-        colorIndex: 2
-      },
-      {
-        name: 'Other debt',
-        value: 22,
-        date: '2020-07-01T00:00:00.000Z',
-        colorIndex: 2
-      },
-      {
-        name: 'I do not know',
-        value: 976,
-        date: '2020-04-01T00:00:00.000Z'
-      },
-      {
-        name: 'I do not know',
-        value: 1077,
-        date: '2020-05-01T00:00:00.000Z'
-      },
-      {
-        name: 'I do not know',
-        value: 877,
-        date: '2020-06-01T00:00:00.000Z',
-        colorIndex: 3
-      },
-      {
-        name: 'I do not know',
-        value: 7,
-        date: '2020-07-01T00:00:00.000Z',
-        colorIndex: 3
-      },
-      {
-        name: 'Medical debt',
-        value: 563,
-        date: '2020-04-01T00:00:00.000Z'
-      },
-      {
-        name: 'Medical debt',
-        value: 645,
-        date: '2020-05-01T00:00:00.000Z'
-      },
-      {
-        name: 'Medical debt',
-        value: 516,
-        date: '2020-06-01T00:00:00.000Z',
-        colorIndex: 4
-      },
-      {
-        name: 'Medical debt',
-        value: 8,
-        date: '2020-07-01T00:00:00.000Z',
-        colorIndex: 4
-      },
-      {
-        name: 'Auto debt',
-        value: 117,
-        date: '2020-04-01T00:00:00.000Z'
-      },
-      {
-        name: 'Auto debt',
-        value: 158,
-        date: '2020-05-01T00:00:00.000Z'
-      },
-      {
-        name: 'Auto debt',
-        value: 105,
-        date: '2020-06-01T00:00:00.000Z',
-        colorIndex: 5
-      },
-      {
-        name: 'Auto debt',
-        value: 1,
-        date: '2020-07-01T00:00:00.000Z',
-        colorIndex: 5
-      }
-    ],
-    dateRangeBrush: [
-      {
-        date: '2013-07-01T00:00:00.000Z',
-        value: 900
-      },
-      {
-        date: '2013-08-01T00:00:00.000Z',
-        value: 1494
-      },
-      {
-        date: '2013-09-01T00:00:00.000Z',
-        value: 2003
-      },
-      {
-        date: '2013-10-01T00:00:00.000Z',
-        value: 1793
-      },
-      {
-        date: '2013-11-01T00:00:00.000Z',
-        value: 2448
-      },
-      {
-        date: '2013-12-01T00:00:00.000Z',
-        value: 2431
-      },
-      {
-        date: '2014-01-01T00:00:00.000Z',
-        value: 3268
-      },
-      {
-        date: '2014-02-01T00:00:00.000Z',
-        value: 3370
-      },
-      {
-        date: '2014-03-01T00:00:00.000Z',
-        value: 3590
-      },
-      {
-        date: '2014-04-01T00:00:00.000Z',
-        value: 3695
-      },
-      {
-        date: '2014-05-01T00:00:00.000Z',
-        value: 3204
-      },
-      {
-        date: '2014-06-01T00:00:00.000Z',
-        value: 3397
-      },
-      {
-        date: '2014-07-01T00:00:00.000Z',
-        value: 3480
-      },
-      {
-        date: '2014-08-01T00:00:00.000Z',
-        value: 3233
-      },
-      {
-        date: '2014-09-01T00:00:00.000Z',
-        value: 2890
-      },
-      {
-        date: '2014-10-01T00:00:00.000Z',
-        value: 3222
-      },
-      {
-        date: '2014-11-01T00:00:00.000Z',
-        value: 2816
-      },
-      {
-        date: '2014-12-01T00:00:00.000Z',
-        value: 2974
-      },
-      {
-        date: '2015-01-01T00:00:00.000Z',
-        value: 3256
-      },
-      {
-        date: '2015-02-01T00:00:00.000Z',
-        value: 3412
-      },
-      {
-        date: '2015-03-01T00:00:00.000Z',
-        value: 3879
-      },
-      {
-        date: '2015-04-01T00:00:00.000Z',
-        value: 3368
-      },
-      {
-        date: '2015-05-01T00:00:00.000Z',
-        value: 3334
-      },
-      {
-        date: '2015-06-01T00:00:00.000Z',
-        value: 3479
-      },
-      {
-        date: '2015-07-01T00:00:00.000Z',
-        value: 3782
-      },
-      {
-        date: '2015-08-01T00:00:00.000Z',
-        value: 3566
-      },
-      {
-        date: '2015-09-01T00:00:00.000Z',
-        value: 3150
-      },
-      {
-        date: '2015-10-01T00:00:00.000Z',
-        value: 3015
-      },
-      {
-        date: '2015-11-01T00:00:00.000Z',
-        value: 2621
-      },
-      {
-        date: '2015-12-01T00:00:00.000Z',
-        value: 2862
-      },
-      {
-        date: '2016-01-01T00:00:00.000Z',
-        value: 2924
-      },
-      {
-        date: '2016-02-01T00:00:00.000Z',
-        value: 3222
-      },
-      {
-        date: '2016-03-01T00:00:00.000Z',
-        value: 3525
-      },
-      {
-        date: '2016-04-01T00:00:00.000Z',
-        value: 3243
-      },
-      {
-        date: '2016-05-01T00:00:00.000Z',
-        value: 3064
-      },
-      {
-        date: '2016-06-01T00:00:00.000Z',
-        value: 3233
-      },
-      {
-        date: '2016-07-01T00:00:00.000Z',
-        value: 3020
-      },
-      {
-        date: '2016-08-01T00:00:00.000Z',
-        value: 4163
-      },
-      {
-        date: '2016-09-01T00:00:00.000Z',
-        value: 3537
-      },
-      {
-        date: '2016-10-01T00:00:00.000Z',
-        value: 3579
-      },
-      {
-        date: '2016-11-01T00:00:00.000Z',
-        value: 3288
-      },
-      {
-        date: '2016-12-01T00:00:00.000Z',
-        value: 3668
-      },
-      {
-        date: '2017-01-01T00:00:00.000Z',
-        value: 3730
-      },
-      {
-        date: '2017-02-01T00:00:00.000Z',
-        value: 3949
-      },
-      {
-        date: '2017-03-01T00:00:00.000Z',
-        value: 4605
-      },
-      {
-        date: '2017-04-01T00:00:00.000Z',
-        value: 4173
-      },
-      {
-        date: '2017-05-01T00:00:00.000Z',
-        value: 4163
-      },
-      {
-        date: '2017-06-01T00:00:00.000Z',
-        value: 3713
-      },
-      {
-        date: '2017-07-01T00:00:00.000Z',
-        value: 4223
-      },
-      {
-        date: '2017-08-01T00:00:00.000Z',
-        value: 4376
-      },
-      {
-        date: '2017-09-01T00:00:00.000Z',
-        value: 3541
-      },
-      {
-        date: '2017-10-01T00:00:00.000Z',
-        value: 4032
-      },
-      {
-        date: '2017-11-01T00:00:00.000Z',
-        value: 3564
-      },
-      {
-        date: '2017-12-01T00:00:00.000Z',
-        value: 3884
-      },
-      {
-        date: '2018-01-01T00:00:00.000Z',
-        value: 4908
-      },
-      {
-        date: '2018-02-01T00:00:00.000Z',
-        value: 4474
-      },
-      {
-        date: '2018-03-01T00:00:00.000Z',
-        value: 5266
-      },
-      {
-        date: '2018-04-01T00:00:00.000Z',
-        value: 4757
-      },
-      {
-        date: '2018-05-01T00:00:00.000Z',
-        value: 4736
-      },
-      {
-        date: '2018-06-01T00:00:00.000Z',
-        value: 4256
-      },
-      {
-        date: '2018-07-01T00:00:00.000Z',
-        value: 3999
-      },
-      {
-        date: '2018-08-01T00:00:00.000Z',
-        value: 4413
-      },
-      {
-        date: '2018-09-01T00:00:00.000Z',
-        value: 3681
-      },
-      {
-        date: '2018-10-01T00:00:00.000Z',
-        value: 4087
-      },
-      {
-        date: '2018-11-01T00:00:00.000Z',
-        value: 3348
-      },
-      {
-        date: '2018-12-01T00:00:00.000Z',
-        value: 3259
-      },
-      {
-        date: '2019-01-01T00:00:00.000Z',
-        value: 3127
-      },
-      {
-        date: '2019-02-01T00:00:00.000Z',
-        value: 3787
-      },
-      {
-        date: '2019-03-01T00:00:00.000Z',
-        value: 4227
-      },
-      {
-        date: '2019-04-01T00:00:00.000Z',
-        value: 3983
-      },
-      {
-        date: '2019-05-01T00:00:00.000Z',
-        value: 4135
-      },
-      {
-        date: '2019-06-01T00:00:00.000Z',
-        value: 4051
-      },
-      {
-        date: '2019-07-01T00:00:00.000Z',
-        value: 4014
-      },
-      {
-        date: '2019-08-01T00:00:00.000Z',
-        value: 4231
-      },
-      {
-        date: '2019-09-01T00:00:00.000Z',
-        value: 3976
-      },
-      {
-        date: '2019-10-01T00:00:00.000Z',
-        value: 4022
-      },
-      {
-        date: '2019-11-01T00:00:00.000Z',
-        value: 3526
-      },
-      {
-        date: '2019-12-01T00:00:00.000Z',
-        value: 3324
-      },
-      {
-        date: '2020-01-01T00:00:00.000Z',
-        value: 3768
-      },
-      {
-        date: '2020-02-01T00:00:00.000Z',
-        value: 3983
-      },
-      {
-        date: '2020-03-01T00:00:00.000Z',
-        value: 4205
-      },
-      {
-        date: '2020-04-01T00:00:00.000Z',
-        value: 4513
-      },
-      {
-        date: '2020-05-01T00:00:00.000Z',
-        value: 4422
-      },
-      {
-        date: '2020-06-01T00:00:00.000Z',
-        value: 3508
-      },
-      {
-        date: '2020-07-01T00:00:00.000Z',
-        value: 64
-      }
-    ],
-    dateRangeLine: {
-      dataByTopic: [
-        {
-          topic: 'Credit card debt',
-          topicName: 'Credit card debt',
-          dashed: false,
-          show: true,
-          dates: [
-            {
-              name: 'Credit card debt',
-              date: '2020-04-01T00:00:00.000Z',
-              value: 929
-            },
-            {
-              name: 'Credit card debt',
-              date: '2020-05-01T00:00:00.000Z',
-              value: 1112
-            },
-            {
-              name: 'Credit card debt',
-              date: '2020-06-01T00:00:00.000Z',
-              value: 925
-            },
-            {
-              name: 'Credit card debt',
-              date: '2020-07-01T00:00:00.000Z',
-              value: 26
-            }
-          ]
-        },
-        {
-          topic: 'Other debt',
-          topicName: 'Other debt',
-          dashed: false,
-          show: true,
-          dates: [
-            {
-              name: 'Other debt',
-              date: '2020-04-01T00:00:00.000Z',
-              value: 884
-            },
-            {
-              name: 'Other debt',
-              date: '2020-05-01T00:00:00.000Z',
-              value: 1172
-            },
-            {
-              name: 'Other debt',
-              date: '2020-06-01T00:00:00.000Z',
-              value: 879
-            },
-            {
-              name: 'Other debt',
-              date: '2020-07-01T00:00:00.000Z',
-              value: 22
-            }
-          ]
-        },
-        {
-          topic: 'I do not know',
-          topicName: 'I do not know',
-          dashed: false,
-          show: true,
-          dates: [
-            {
-              name: 'I do not know',
-              date: '2020-04-01T00:00:00.000Z',
-              value: 976
-            },
-            {
-              name: 'I do not know',
-              date: '2020-05-01T00:00:00.000Z',
-              value: 1077
-            },
-            {
-              name: 'I do not know',
-              date: '2020-06-01T00:00:00.000Z',
-              value: 877
-            },
-            {
-              name: 'I do not know',
-              date: '2020-07-01T00:00:00.000Z',
-              value: 7
-            }
-          ]
-        },
-        {
-          topic: 'Medical debt',
-          topicName: 'Medical debt',
-          dashed: false,
-          show: true,
-          dates: [
-            {
-              name: 'Medical debt',
-              date: '2020-04-01T00:00:00.000Z',
-              value: 563
-            },
-            {
-              name: 'Medical debt',
-              date: '2020-05-01T00:00:00.000Z',
-              value: 645
-            },
-            {
-              name: 'Medical debt',
-              date: '2020-06-01T00:00:00.000Z',
-              value: 516
-            },
-            {
-              name: 'Medical debt',
-              date: '2020-07-01T00:00:00.000Z',
-              value: 8
-            }
-          ]
-        },
-        {
-          topic: 'Auto debt',
-          topicName: 'Auto debt',
-          dashed: false,
-          show: true,
-          dates: [
-            {
-              name: 'Auto debt',
-              date: '2020-04-01T00:00:00.000Z',
-              value: 117
-            },
-            {
-              name: 'Auto debt',
-              date: '2020-05-01T00:00:00.000Z',
-              value: 158
-            },
-            {
-              name: 'Auto debt',
-              date: '2020-06-01T00:00:00.000Z',
-              value: 105
-            },
-            {
-              name: 'Auto debt',
-              date: '2020-07-01T00:00:00.000Z',
-              value: 1
-            }
-          ]
-        }
-      ]
-    },
-    issue: [
-      {
-        hasChildren: false,
-        isNotFilter: false,
-        isParent: true,
-        pctOfSet: 0,
-        name: 'Attempts to collect debt not owed',
-        value: 6337,
-        parent: false,
-        visible: true,
-        width: 0.5
-      },
-      {
-        hasChildren: false,
-        isNotFilter: false,
-        isParent: true,
-        pctOfSet: 0,
-        name: 'Written notification about debt',
-        value: 2549,
-        parent: false,
-        visible: true,
-        width: 0.5
-      },
-      {
-        hasChildren: false,
-        isNotFilter: false,
-        isParent: true,
-        pctOfSet: 0,
-        name: 'False statements or representation',
-        value: 1017,
-        parent: false,
-        visible: true,
-        width: 0.5
-      },
-      {
-        hasChildren: false,
-        isNotFilter: false,
-        isParent: true,
-        pctOfSet: 0,
-        name: 'Took or threatened to take negative or legal action',
-        value: 874,
-        parent: false,
-        visible: true,
-        width: 0.5
-      },
-      {
-        hasChildren: false,
-        isNotFilter: false,
-        isParent: true,
-        pctOfSet: 0,
-        name: 'Communication tactics',
-        value: 752,
-        parent: false,
-        visible: true,
-        width: 0.5
-      }
-    ],
-    product: [
-      {
-        hasChildren: false,
-        isNotFilter: false,
-        isParent: true,
-        pctOfSet: 0,
-        name: 'Debt collection',
-        value: 11694,
-        parent: false,
-        visible: true,
-        width: 0.5
-      }
-    ],
-    'sub-product': [
-      {
-        hasChildren: false,
-        isNotFilter: false,
-        isParent: true,
-        pctOfSet: 0,
-        name: 'Credit card debt',
-        value: 2992,
-        parent: false,
-        visible: true,
-        width: 0.5,
-        pctChange: null
-      },
-      {
-        hasChildren: false,
-        isNotFilter: false,
-        isParent: true,
-        pctOfSet: 0,
-        name: 'Other debt',
-        value: 2957,
-        parent: false,
-        visible: true,
-        width: 0.5,
-        pctChange: null
-      },
-      {
-        hasChildren: false,
-        isNotFilter: false,
-        isParent: true,
-        pctOfSet: 0,
-        name: 'I do not know',
-        value: 2937,
-        parent: false,
-        visible: true,
-        width: 0.5,
-        pctChange: null
-      },
-      {
-        hasChildren: false,
-        isNotFilter: false,
-        isParent: true,
-        pctOfSet: 0,
-        name: 'Medical debt',
-        value: 1732,
-        parent: false,
-        visible: true,
-        width: 0.5,
-        pctChange: null
-      },
-      {
-        hasChildren: false,
-        isNotFilter: false,
-        isParent: true,
-        pctOfSet: 0,
-        name: 'Auto debt',
-        value: 381,
-        parent: false,
-        visible: true,
-        width: 0.5,
-        pctChange: null
-      }
-    ],
-    tags: [
-      {
-        hasChildren: false,
-        isNotFilter: false,
-        isParent: true,
-        pctOfSet: 0,
-        name: 'Servicemember',
-        value: 1030,
-        parent: false,
-        visible: true,
-        width: 0.5
-      },
-      {
-        hasChildren: false,
-        isNotFilter: false,
-        isParent: true,
-        pctOfSet: 0,
-        name: 'Older American',
-        value: 303,
-        parent: false,
-        visible: true,
-        width: 0.5
-      },
-      {
-        hasChildren: false,
-        isNotFilter: false,
-        isParent: true,
-        pctOfSet: 0,
-        name: 'Older American, Servicemember',
-        value: 68,
-        parent: false,
-        visible: true,
-        width: 0.5
-      }
-    ]
-  }
\ No newline at end of file
+export const trendsFocusAggsResults = {"activeCall":"","chartType":"line","colorMap":{"Other":"#a2a3a4","Credit card debt":"#addc91","Other debt":"#257675","I do not know":"#9ec4c3","Medical debt":"#0072ce","Auto debt":"#96c4ed","Complaints":"#ADDC91","All other products":"#a2a3a4","All other companies":"#a2a3a4","All other values":"#a2a3a4"},"error":false,"expandedTrends":[],"filterNames":["Credit reporting, credit repair services, or other personal consumer reports","Debt collection","Credit card or prepaid card","Mortgage","Checking or savings account","Incorrect information on your report","Problem with a credit reporting company's investigation into an existing problem","Attempts to collect debt not owed","Improper use of your report","Managing an account","Incorrect information on credit report"],"focus":"Debt collection","isLoading":false,"lastDate":"2020-07-01T00:00:00.000Z","lens":"Product","results":{"dateRangeArea":[{"name":"Other","value":231,"date":"2020-04-01T00:00:00.000Z"},{"name":"Other","value":258,"date":"2020-05-01T00:00:00.000Z"},{"name":"Other","value":206,"date":"2020-06-01T00:00:00.000Z"},{"name":"Other","value":0,"date":"2020-07-01T00:00:00.000Z"},{"name":"Credit card debt","value":929,"date":"2020-04-01T00:00:00.000Z"},{"name":"Credit card debt","value":1112,"date":"2020-05-01T00:00:00.000Z"},{"name":"Credit card debt","value":925,"date":"2020-06-01T00:00:00.000Z"},{"name":"Credit card debt","value":26,"date":"2020-07-01T00:00:00.000Z"},{"name":"Other debt","value":884,"date":"2020-04-01T00:00:00.000Z"},{"name":"Other debt","value":1172,"date":"2020-05-01T00:00:00.000Z"},{"name":"Other debt","value":879,"date":"2020-06-01T00:00:00.000Z"},{"name":"Other debt","value":22,"date":"2020-07-01T00:00:00.000Z"},{"name":"I do not know","value":976,"date":"2020-04-01T00:00:00.000Z"},{"name":"I do not know","value":1077,"date":"2020-05-01T00:00:00.000Z"},{"name":"I do not know","value":877,"date":"2020-06-01T00:00:00.000Z"},{"name":"I do not know","value":7,"date":"2020-07-01T00:00:00.000Z"},{"name":"Medical debt","value":563,"date":"2020-04-01T00:00:00.000Z"},{"name":"Medical debt","value":645,"date":"2020-05-01T00:00:00.000Z"},{"name":"Medical debt","value":516,"date":"2020-06-01T00:00:00.000Z"},{"name":"Medical debt","value":8,"date":"2020-07-01T00:00:00.000Z"},{"name":"Auto debt","value":117,"date":"2020-04-01T00:00:00.000Z"},{"name":"Auto debt","value":158,"date":"2020-05-01T00:00:00.000Z"},{"name":"Auto debt","value":105,"date":"2020-06-01T00:00:00.000Z"},{"name":"Auto debt","value":1,"date":"2020-07-01T00:00:00.000Z"}],"dateRangeBrush":[{"date":"2013-07-01T00:00:00.000Z","value":900},{"date":"2013-08-01T00:00:00.000Z","value":1494},{"date":"2013-09-01T00:00:00.000Z","value":2003},{"date":"2013-10-01T00:00:00.000Z","value":1793},{"date":"2013-11-01T00:00:00.000Z","value":2448},{"date":"2013-12-01T00:00:00.000Z","value":2431},{"date":"2014-01-01T00:00:00.000Z","value":3268},{"date":"2014-02-01T00:00:00.000Z","value":3370},{"date":"2014-03-01T00:00:00.000Z","value":3590},{"date":"2014-04-01T00:00:00.000Z","value":3695},{"date":"2014-05-01T00:00:00.000Z","value":3204},{"date":"2014-06-01T00:00:00.000Z","value":3397},{"date":"2014-07-01T00:00:00.000Z","value":3480},{"date":"2014-08-01T00:00:00.000Z","value":3233},{"date":"2014-09-01T00:00:00.000Z","value":2890},{"date":"2014-10-01T00:00:00.000Z","value":3222},{"date":"2014-11-01T00:00:00.000Z","value":2816},{"date":"2014-12-01T00:00:00.000Z","value":2974},{"date":"2015-01-01T00:00:00.000Z","value":3256},{"date":"2015-02-01T00:00:00.000Z","value":3412},{"date":"2015-03-01T00:00:00.000Z","value":3879},{"date":"2015-04-01T00:00:00.000Z","value":3368},{"date":"2015-05-01T00:00:00.000Z","value":3334},{"date":"2015-06-01T00:00:00.000Z","value":3479},{"date":"2015-07-01T00:00:00.000Z","value":3782},{"date":"2015-08-01T00:00:00.000Z","value":3566},{"date":"2015-09-01T00:00:00.000Z","value":3150},{"date":"2015-10-01T00:00:00.000Z","value":3015},{"date":"2015-11-01T00:00:00.000Z","value":2621},{"date":"2015-12-01T00:00:00.000Z","value":2862},{"date":"2016-01-01T00:00:00.000Z","value":2924},{"date":"2016-02-01T00:00:00.000Z","value":3222},{"date":"2016-03-01T00:00:00.000Z","value":3525},{"date":"2016-04-01T00:00:00.000Z","value":3243},{"date":"2016-05-01T00:00:00.000Z","value":3064},{"date":"2016-06-01T00:00:00.000Z","value":3233},{"date":"2016-07-01T00:00:00.000Z","value":3020},{"date":"2016-08-01T00:00:00.000Z","value":4163},{"date":"2016-09-01T00:00:00.000Z","value":3537},{"date":"2016-10-01T00:00:00.000Z","value":3579},{"date":"2016-11-01T00:00:00.000Z","value":3288},{"date":"2016-12-01T00:00:00.000Z","value":3668},{"date":"2017-01-01T00:00:00.000Z","value":3730},{"date":"2017-02-01T00:00:00.000Z","value":3949},{"date":"2017-03-01T00:00:00.000Z","value":4605},{"date":"2017-04-01T00:00:00.000Z","value":4173},{"date":"2017-05-01T00:00:00.000Z","value":4163},{"date":"2017-06-01T00:00:00.000Z","value":3713},{"date":"2017-07-01T00:00:00.000Z","value":4223},{"date":"2017-08-01T00:00:00.000Z","value":4376},{"date":"2017-09-01T00:00:00.000Z","value":3541},{"date":"2017-10-01T00:00:00.000Z","value":4032},{"date":"2017-11-01T00:00:00.000Z","value":3564},{"date":"2017-12-01T00:00:00.000Z","value":3884},{"date":"2018-01-01T00:00:00.000Z","value":4908},{"date":"2018-02-01T00:00:00.000Z","value":4474},{"date":"2018-03-01T00:00:00.000Z","value":5266},{"date":"2018-04-01T00:00:00.000Z","value":4757},{"date":"2018-05-01T00:00:00.000Z","value":4736},{"date":"2018-06-01T00:00:00.000Z","value":4256},{"date":"2018-07-01T00:00:00.000Z","value":3999},{"date":"2018-08-01T00:00:00.000Z","value":4413},{"date":"2018-09-01T00:00:00.000Z","value":3681},{"date":"2018-10-01T00:00:00.000Z","value":4087},{"date":"2018-11-01T00:00:00.000Z","value":3348},{"date":"2018-12-01T00:00:00.000Z","value":3259},{"date":"2019-01-01T00:00:00.000Z","value":3127},{"date":"2019-02-01T00:00:00.000Z","value":3787},{"date":"2019-03-01T00:00:00.000Z","value":4227},{"date":"2019-04-01T00:00:00.000Z","value":3983},{"date":"2019-05-01T00:00:00.000Z","value":4135},{"date":"2019-06-01T00:00:00.000Z","value":4051},{"date":"2019-07-01T00:00:00.000Z","value":4014},{"date":"2019-08-01T00:00:00.000Z","value":4231},{"date":"2019-09-01T00:00:00.000Z","value":3976},{"date":"2019-10-01T00:00:00.000Z","value":4022},{"date":"2019-11-01T00:00:00.000Z","value":3526},{"date":"2019-12-01T00:00:00.000Z","value":3324},{"date":"2020-01-01T00:00:00.000Z","value":3768},{"date":"2020-02-01T00:00:00.000Z","value":3983},{"date":"2020-03-01T00:00:00.000Z","value":4205},{"date":"2020-04-01T00:00:00.000Z","value":4513},{"date":"2020-05-01T00:00:00.000Z","value":4422},{"date":"2020-06-01T00:00:00.000Z","value":3508},{"date":"2020-07-01T00:00:00.000Z","value":64}],"dateRangeLine":{"dataByTopic":[{"topic":"Credit card debt","topicName":"Credit card debt","dashed":false,"show":true,"dates":[{"name":"Credit card debt","date":"2020-04-01T00:00:00.000Z","value":929},{"name":"Credit card debt","date":"2020-05-01T00:00:00.000Z","value":1112},{"name":"Credit card debt","date":"2020-06-01T00:00:00.000Z","value":925},{"name":"Credit card debt","date":"2020-07-01T00:00:00.000Z","value":26}]},{"topic":"Other debt","topicName":"Other debt","dashed":false,"show":true,"dates":[{"name":"Other debt","date":"2020-04-01T00:00:00.000Z","value":884},{"name":"Other debt","date":"2020-05-01T00:00:00.000Z","value":1172},{"name":"Other debt","date":"2020-06-01T00:00:00.000Z","value":879},{"name":"Other debt","date":"2020-07-01T00:00:00.000Z","value":22}]},{"topic":"I do not know","topicName":"I do not know","dashed":false,"show":true,"dates":[{"name":"I do not know","date":"2020-04-01T00:00:00.000Z","value":976},{"name":"I do not know","date":"2020-05-01T00:00:00.000Z","value":1077},{"name":"I do not know","date":"2020-06-01T00:00:00.000Z","value":877},{"name":"I do not know","date":"2020-07-01T00:00:00.000Z","value":7}]},{"topic":"Medical debt","topicName":"Medical debt","dashed":false,"show":true,"dates":[{"name":"Medical debt","date":"2020-04-01T00:00:00.000Z","value":563},{"name":"Medical debt","date":"2020-05-01T00:00:00.000Z","value":645},{"name":"Medical debt","date":"2020-06-01T00:00:00.000Z","value":516},{"name":"Medical debt","date":"2020-07-01T00:00:00.000Z","value":8}]},{"topic":"Auto debt","topicName":"Auto debt","dashed":false,"show":true,"dates":[{"name":"Auto debt","date":"2020-04-01T00:00:00.000Z","value":117},{"name":"Auto debt","date":"2020-05-01T00:00:00.000Z","value":158},{"name":"Auto debt","date":"2020-06-01T00:00:00.000Z","value":105},{"name":"Auto debt","date":"2020-07-01T00:00:00.000Z","value":1}]}]},"issue":[{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Attempts to collect debt not owed","value":6337,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Written notification about debt","value":2549,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"False statements or representation","value":1017,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Took or threatened to take negative or legal action","value":874,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Communication tactics","value":752,"parent":false,"visible":true,"width":0.5}],"product":[{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Debt collection","value":11694,"parent":false,"visible":true,"width":0.5}],"tags":[{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Servicemember","value":1030,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Older American","value":303,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Older American, Servicemember","value":68,"parent":false,"visible":true,"width":0.5}],"sub-product":[{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Credit card debt","value":2992,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Other debt","value":2957,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"I do not know","value":2937,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Medical debt","value":1732,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Auto debt","value":381,"parent":false,"visible":true,"width":0.5}]},"subLens":"sub_product","tooltip":false,"total":11694}
diff --git a/src/reducers/__fixtures__/trendsResults.jsx b/src/reducers/__fixtures__/trendsResults.jsx
index 96e646ea8..95b38aadb 100644
--- a/src/reducers/__fixtures__/trendsResults.jsx
+++ b/src/reducers/__fixtures__/trendsResults.jsx
@@ -1476,4 +1476,4 @@ export const trendsResults = {
     total: 846111
   }
 
-export const trendsLensIssueResults = { "activeCall": "", "chartType": "line", "colorMap": { "Incorrect information on your report": "#2cb34a", "Problem with a credit reporting company's investigation into an existing problem": "#addc91", "Attempts to collect debt not owed": "#257675", "Managing an account": "#9ec4c3", "Improper use of your report": "#0072ce", "Complaints": "#ADDC91", "Other": "#a2a3a4" }, "error": false, "expandedTrends": [], "filterNames": [ "Credit reporting, credit repair services, or other personal consumer reports", "Debt collection", "Credit card or prepaid card", "Mortgage", "Checking or savings account", "Incorrect information on your report", "Problem with a credit reporting company's investigation into an existing problem", "Attempts to collect debt not owed", "Managing an account", "Improper use of your report" ], "focus": "", "isLoading": false, "lastDate": "2020-05-01T00:00:00.000Z", "lens": "Issue", "results": { "dateRangeArea": [ { "name": "Other", "value": 9185, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Other", "value": 10444, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Other", "value": 2174, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Incorrect information on your report", "value": 12463, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Incorrect information on your report", "value": 15459, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Incorrect information on your report", "value": 5095, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 3508, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 4445, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 1354, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Attempts to collect debt not owed", "value": 2320, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Attempts to collect debt not owed", "value": 2457, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Attempts to collect debt not owed", "value": 593, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Managing an account", "value": 1050, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Managing an account", "value": 1274, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Managing an account", "value": 248, "date": new Date("2020-05-01T00:00:00.000Z") }, { "name": "Improper use of your report", "value": 980, "date": new Date("2020-03-01T00:00:00.000Z") }, { "name": "Improper use of your report", "value": 1033, "date": new Date("2020-04-01T00:00:00.000Z") }, { "name": "Improper use of your report", "value": 357, "date": new Date("2020-05-01T00:00:00.000Z") } ], "dateRangeBrush": [ { "date": new Date("2020-01-01T00:00:00.000Z"), "value": 26413 }, { "date": new Date("2020-02-01T00:00:00.000Z"), "value": 25096 }, { "date": new Date("2020-03-01T00:00:00.000Z"), "value": 29506 }, { "date": new Date("2020-04-01T00:00:00.000Z"), "value": 35112 }, { "date": new Date("2020-05-01T00:00:00.000Z"), "value": 9821 } ], "dateRangeLine": { "dataByTopic": [ { "topic": "Incorrect information on your report", "topicName": "Incorrect information on your report", "dashed": false, "show": true, "dates": [ { "name": "Incorrect information on your report", "date": "2020-03-01T00:00:00.000Z", "value": 12463 }, { "name": "Incorrect information on your report", "date": "2020-04-01T00:00:00.000Z", "value": 15459 }, { "name": "Incorrect information on your report", "date": "2020-05-01T00:00:00.000Z", "value": 5095 } ] }, { "topic": "Problem with a credit reporting company's investigation into an existing problem", "topicName": "Problem with a credit reporting company's investigation into an existing problem", "dashed": false, "show": true, "dates": [ { "name": "Problem with a credit reporting company's investigation into an existing problem", "date": "2020-03-01T00:00:00.000Z", "value": 3508 }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "date": "2020-04-01T00:00:00.000Z", "value": 4445 }, { "name": "Problem with a credit reporting company's investigation into an existing problem", "date": "2020-05-01T00:00:00.000Z", "value": 1354 } ] }, { "topic": "Attempts to collect debt not owed", "topicName": "Attempts to collect debt not owed", "dashed": false, "show": true, "dates": [ { "name": "Attempts to collect debt not owed", "date": "2020-03-01T00:00:00.000Z", "value": 2320 }, { "name": "Attempts to collect debt not owed", "date": "2020-04-01T00:00:00.000Z", "value": 2457 }, { "name": "Attempts to collect debt not owed", "date": "2020-05-01T00:00:00.000Z", "value": 593 } ] }, { "topic": "Managing an account", "topicName": "Managing an account", "dashed": false, "show": true, "dates": [ { "name": "Managing an account", "date": "2020-03-01T00:00:00.000Z", "value": 1050 }, { "name": "Managing an account", "date": "2020-04-01T00:00:00.000Z", "value": 1274 }, { "name": "Managing an account", "date": "2020-05-01T00:00:00.000Z", "value": 248 } ] }, { "topic": "Improper use of your report", "topicName": "Improper use of your report", "dashed": false, "show": true, "dates": [ { "name": "Improper use of your report", "date": "2020-03-01T00:00:00.000Z", "value": 980 }, { "name": "Improper use of your report", "date": "2020-04-01T00:00:00.000Z", "value": 1033 }, { "name": "Improper use of your report", "date": "2020-05-01T00:00:00.000Z", "value": 357 } ] } ] }, "issue": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Incorrect information on your report", "value": 33017, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information belongs to someone else", "value": 24403, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account status incorrect", "value": 3042, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Account information incorrect", "value": 2849, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Personal information incorrect", "value": 1066, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Public record information inaccurate", "value": 578, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Old information reappears or never goes away", "value": 576, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information is missing that should be on the report", "value": 348, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information is incorrect", "value": 36, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Information that should be on the report is missing", "value": 9, "parent": "Incorrect information on your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Incorrect information on your report", "name": "More Information about Incorrect information on your report", "splitterText": "More Information about Incorrect information on your report", "value": "", "parent": "Incorrect information on your report", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Problem with a credit reporting company's investigation into an existing problem", "value": 9307, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Their investigation did not fix an error on your report", "value": 5706, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Investigation took more than 30 days", "value": 1572, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Was not notified of investigation status or results", "value": 1173, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Difficulty submitting a dispute or getting information about a dispute over the phone", "value": 495, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem with personal statement of dispute", "value": 329, "parent": "Problem with a credit reporting company's investigation into an existing problem", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Problem with a credit reporting company's investigation into an existing problem", "name": "More Information about Problem with a credit reporting company's investigation into an existing problem", "splitterText": "More Information about Problem with a credit reporting company's investigation into an existing problem", "value": "", "parent": "Problem with a credit reporting company's investigation into an existing problem", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Attempts to collect debt not owed", "value": 5370, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Debt is not yours", "value": 2571, "parent": "Attempts to collect debt not owed", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Debt was result of identity theft", "value": 1771, "parent": "Attempts to collect debt not owed", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Debt was paid", "value": 868, "parent": "Attempts to collect debt not owed", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Debt was already discharged in bankruptcy and is no longer owed", "value": 160, "parent": "Attempts to collect debt not owed", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Attempts to collect debt not owed", "name": "More Information about Attempts to collect debt not owed", "splitterText": "More Information about Attempts to collect debt not owed", "value": "", "parent": "Attempts to collect debt not owed", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Managing an account", "value": 2572, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Deposits and withdrawals", "value": 841, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem using a debit or ATM card", "value": 446, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Banking errors", "value": 351, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Funds not handled or disbursed as instructed", "value": 252, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem accessing account", "value": 245, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem making or receiving payments", "value": 163, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Fee problem", "value": 141, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Cashing a check", "value": 93, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Deposits or withdrawals", "value": 21, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem with renewal", "value": 10, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Problem with fees or penalties", "value": 9, "parent": "Managing an account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Managing an account", "name": "More Information about Managing an account", "splitterText": "More Information about Managing an account", "value": "", "parent": "Managing an account", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Improper use of your report", "value": 2370, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit inquiries on your report that you don't recognize", "value": 1678, "parent": "Improper use of your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Reporting company used your report improperly", "value": 647, "parent": "Improper use of your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Received unsolicited financial product or insurance offers after opting out", "value": 22, "parent": "Improper use of your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Report provided to employer without your written authorization", "value": 10, "parent": "Improper use of your report", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Improper use of your report", "name": "More Information about Improper use of your report", "splitterText": "More Information about Improper use of your report", "value": "", "parent": "Improper use of your report", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false } ], "product": [ { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Credit reporting, credit repair services, or other personal consumer reports", "value": 45278, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit reporting", "value": 44896, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other personal consumer report", "value": 301, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit repair services", "value": 81, "parent": "Credit reporting, credit repair services, or other personal consumer reports", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Credit reporting, credit repair services, or other personal consumer reports", "name": "More Information about Credit reporting, credit repair services, or other personal consumer reports", "splitterText": "More Information about Credit reporting, credit repair services, or other personal consumer reports", "value": "", "parent": "Credit reporting, credit repair services, or other personal consumer reports", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Debt collection", "value": 9782, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other debt", "value": 2692, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "I do not know", "value": 2449, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Credit card debt", "value": 2258, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Medical debt", "value": 1408, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Auto debt", "value": 310, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Payday loan debt", "value": 287, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Mortgage debt", "value": 175, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Federal student loan debt", "value": 107, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Private student loan debt", "value": 96, "parent": "Debt collection", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Debt collection", "name": "More Information about Debt collection", "splitterText": "More Information about Debt collection", "value": "", "parent": "Debt collection", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Credit card or prepaid card", "value": 6284, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "General-purpose credit card or charge card", "value": 4657, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Store credit card", "value": 828, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Government benefit card", "value": 414, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "General-purpose prepaid card", "value": 337, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Payroll card", "value": 33, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Gift card", "value": 14, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Student prepaid card", "value": 1, "parent": "Credit card or prepaid card", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Credit card or prepaid card", "name": "More Information about Credit card or prepaid card", "splitterText": "More Information about Credit card or prepaid card", "value": "", "parent": "Credit card or prepaid card", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Mortgage", "value": 4676, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Conventional home mortgage", "value": 2971, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "FHA mortgage", "value": 788, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "VA mortgage", "value": 350, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other type of mortgage", "value": 279, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Home equity loan or line of credit (HELOC)", "value": 243, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Reverse mortgage", "value": 45, "parent": "Mortgage", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Mortgage", "name": "More Information about Mortgage", "splitterText": "More Information about Mortgage", "value": "", "parent": "Mortgage", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false }, { "hasChildren": true, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Checking or savings account", "value": 4101, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Checking account", "value": 3187, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Other banking product or service", "value": 494, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Savings account", "value": 298, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "CD (Certificate of Deposit)", "value": 121, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isNotFilter": false, "isParent": false, "pctOfSet": 0, "name": "Personal line of credit", "value": 1, "parent": "Checking or savings account", "visible": false, "width": 0.4 }, { "hasChildren": false, "isParent": false, "key": "More Information about Checking or savings account", "name": "More Information about Checking or savings account", "splitterText": "More Information about Checking or savings account", "value": "", "parent": "Checking or savings account", "pctChange": "", "pctOfSet": "", "width": 0.3, "visible": false } ], "collections": [ { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Servicemember", "value": 5172, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American", "value": 2352, "parent": false, "visible": true, "width": 0.5 }, { "hasChildren": false, "isNotFilter": false, "isParent": true, "pctOfSet": 0, "name": "Older American, Servicemember", "value": 640, "parent": false, "visible": true, "width": 0.5 } ] }, "subLens": "", "tooltip": false, "total": 74439 }
+export const trendsLensIssueResults = {"activeCall":"","chartType":"line","colorMap":{"Other":"#a2a3a4","Incorrect information on your report":"#addc91","Problem with a credit reporting company's investigation into an existing problem":"#257675","Attempts to collect debt not owed":"#9ec4c3","Improper use of your report":"#0072ce","Managing an account":"#96c4ed","Complaints":"#ADDC91","All other products":"#a2a3a4","All other companies":"#a2a3a4","All other values":"#a2a3a4"},"error":false,"expandedTrends":[],"filterNames":["Credit reporting, credit repair services, or other personal consumer reports","Debt collection","Credit card or prepaid card","Mortgage","Checking or savings account","Incorrect information on your report","Problem with a credit reporting company's investigation into an existing problem","Attempts to collect debt not owed","Improper use of your report","Managing an account"],"focus":"","isLoading":false,"lastDate":"2020-07-01T00:00:00.000Z","lens":"Issue","results":{"dateRangeArea":[{"name":"Other","value":8382,"date":"2017-07-01T00:00:00.000Z"},{"name":"Other","value":10207,"date":"2017-08-01T00:00:00.000Z"},{"name":"Other","value":11240,"date":"2017-09-01T00:00:00.000Z"},{"name":"Other","value":9623,"date":"2017-10-01T00:00:00.000Z"},{"name":"Other","value":8813,"date":"2017-11-01T00:00:00.000Z"},{"name":"Other","value":9127,"date":"2017-12-01T00:00:00.000Z"},{"name":"Other","value":11015,"date":"2018-01-01T00:00:00.000Z"},{"name":"Other","value":9573,"date":"2018-02-01T00:00:00.000Z"},{"name":"Other","value":10571,"date":"2018-03-01T00:00:00.000Z"},{"name":"Other","value":10834,"date":"2018-04-01T00:00:00.000Z"},{"name":"Other","value":9786,"date":"2018-05-01T00:00:00.000Z"},{"name":"Other","value":8558,"date":"2018-06-01T00:00:00.000Z"},{"name":"Other","value":9058,"date":"2018-07-01T00:00:00.000Z"},{"name":"Other","value":9291,"date":"2018-08-01T00:00:00.000Z"},{"name":"Other","value":8126,"date":"2018-09-01T00:00:00.000Z"},{"name":"Other","value":9397,"date":"2018-10-01T00:00:00.000Z"},{"name":"Other","value":7693,"date":"2018-11-01T00:00:00.000Z"},{"name":"Other","value":7739,"date":"2018-12-01T00:00:00.000Z"},{"name":"Other","value":7909,"date":"2019-01-01T00:00:00.000Z"},{"name":"Other","value":8448,"date":"2019-02-01T00:00:00.000Z"},{"name":"Other","value":9547,"date":"2019-03-01T00:00:00.000Z"},{"name":"Other","value":9129,"date":"2019-04-01T00:00:00.000Z"},{"name":"Other","value":9075,"date":"2019-05-01T00:00:00.000Z"},{"name":"Other","value":8678,"date":"2019-06-01T00:00:00.000Z"},{"name":"Other","value":9415,"date":"2019-07-01T00:00:00.000Z"},{"name":"Other","value":9578,"date":"2019-08-01T00:00:00.000Z"},{"name":"Other","value":8697,"date":"2019-09-01T00:00:00.000Z"},{"name":"Other","value":9471,"date":"2019-10-01T00:00:00.000Z"},{"name":"Other","value":8092,"date":"2019-11-01T00:00:00.000Z"},{"name":"Other","value":7813,"date":"2019-12-01T00:00:00.000Z"},{"name":"Other","value":9059,"date":"2020-01-01T00:00:00.000Z"},{"name":"Other","value":8805,"date":"2020-02-01T00:00:00.000Z"},{"name":"Other","value":9186,"date":"2020-03-01T00:00:00.000Z"},{"name":"Other","value":10509,"date":"2020-04-01T00:00:00.000Z"},{"name":"Other","value":10079,"date":"2020-05-01T00:00:00.000Z"},{"name":"Other","value":8257,"date":"2020-06-01T00:00:00.000Z"},{"name":"Other","value":159,"date":"2020-07-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":3976,"date":"2017-07-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5236,"date":"2017-08-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":4491,"date":"2017-09-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":4907,"date":"2017-10-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":4476,"date":"2017-11-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":4677,"date":"2017-12-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5956,"date":"2018-01-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5754,"date":"2018-02-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":6096,"date":"2018-03-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":6459,"date":"2018-04-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5978,"date":"2018-05-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5346,"date":"2018-06-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5764,"date":"2018-07-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":6092,"date":"2018-08-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5420,"date":"2018-09-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":6351,"date":"2018-10-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5849,"date":"2018-11-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5179,"date":"2018-12-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5603,"date":"2019-01-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5827,"date":"2019-02-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":7020,"date":"2019-03-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":6973,"date":"2019-04-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":7679,"date":"2019-05-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":7642,"date":"2019-06-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":8313,"date":"2019-07-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":8911,"date":"2019-08-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":8419,"date":"2019-09-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":8862,"date":"2019-10-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":8161,"date":"2019-11-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":7540,"date":"2019-12-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":10329,"date":"2020-01-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":9631,"date":"2020-02-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":12459,"date":"2020-03-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":15157,"date":"2020-04-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":16863,"date":"2020-05-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":15339,"date":"2020-06-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":639,"date":"2020-07-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":1639,"date":"2017-07-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2271,"date":"2017-08-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2027,"date":"2017-09-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2065,"date":"2017-10-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":1866,"date":"2017-11-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":1618,"date":"2017-12-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2159,"date":"2018-01-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2270,"date":"2018-02-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2200,"date":"2018-03-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2417,"date":"2018-04-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2317,"date":"2018-05-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2227,"date":"2018-06-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2157,"date":"2018-07-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2160,"date":"2018-08-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":1883,"date":"2018-09-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2025,"date":"2018-10-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":1925,"date":"2018-11-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2103,"date":"2018-12-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":1881,"date":"2019-01-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2299,"date":"2019-02-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2574,"date":"2019-03-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2653,"date":"2019-04-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2692,"date":"2019-05-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2887,"date":"2019-06-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2994,"date":"2019-07-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2852,"date":"2019-08-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2471,"date":"2019-09-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":3135,"date":"2019-10-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2618,"date":"2019-11-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2821,"date":"2019-12-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":3283,"date":"2020-01-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2794,"date":"2020-02-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":3504,"date":"2020-03-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":4392,"date":"2020-04-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":5330,"date":"2020-05-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":4631,"date":"2020-06-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":218,"date":"2020-07-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1379,"date":"2017-07-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1634,"date":"2017-08-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1459,"date":"2017-09-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1630,"date":"2017-10-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1517,"date":"2017-11-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1525,"date":"2017-12-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2035,"date":"2018-01-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1861,"date":"2018-02-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2267,"date":"2018-03-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2093,"date":"2018-04-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1996,"date":"2018-05-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1947,"date":"2018-06-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1703,"date":"2018-07-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1985,"date":"2018-08-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1652,"date":"2018-09-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1842,"date":"2018-10-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1568,"date":"2018-11-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1547,"date":"2018-12-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1584,"date":"2019-01-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1683,"date":"2019-02-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2026,"date":"2019-03-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1951,"date":"2019-04-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1988,"date":"2019-05-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2028,"date":"2019-06-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1931,"date":"2019-07-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2044,"date":"2019-08-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1969,"date":"2019-09-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1981,"date":"2019-10-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1878,"date":"2019-11-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1727,"date":"2019-12-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1721,"date":"2020-01-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1940,"date":"2020-02-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2319,"date":"2020-03-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2449,"date":"2020-04-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2363,"date":"2020-05-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1947,"date":"2020-06-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":47,"date":"2020-07-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1161,"date":"2017-07-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1102,"date":"2017-08-01T00:00:00.000Z"},{"name":"Improper use of your report","value":7186,"date":"2017-09-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1319,"date":"2017-10-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1352,"date":"2017-11-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1217,"date":"2017-12-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1392,"date":"2018-01-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1530,"date":"2018-02-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1408,"date":"2018-03-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1311,"date":"2018-04-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1070,"date":"2018-05-01T00:00:00.000Z"},{"name":"Improper use of your report","value":907,"date":"2018-06-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1101,"date":"2018-07-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1133,"date":"2018-08-01T00:00:00.000Z"},{"name":"Improper use of your report","value":919,"date":"2018-09-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1127,"date":"2018-10-01T00:00:00.000Z"},{"name":"Improper use of your report","value":934,"date":"2018-11-01T00:00:00.000Z"},{"name":"Improper use of your report","value":841,"date":"2018-12-01T00:00:00.000Z"},{"name":"Improper use of your report","value":864,"date":"2019-01-01T00:00:00.000Z"},{"name":"Improper use of your report","value":913,"date":"2019-02-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1066,"date":"2019-03-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1013,"date":"2019-04-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1216,"date":"2019-05-01T00:00:00.000Z"},{"name":"Improper use of your report","value":925,"date":"2019-06-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1272,"date":"2019-07-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1354,"date":"2019-08-01T00:00:00.000Z"},{"name":"Improper use of your report","value":929,"date":"2019-09-01T00:00:00.000Z"},{"name":"Improper use of your report","value":945,"date":"2019-10-01T00:00:00.000Z"},{"name":"Improper use of your report","value":808,"date":"2019-11-01T00:00:00.000Z"},{"name":"Improper use of your report","value":734,"date":"2019-12-01T00:00:00.000Z"},{"name":"Improper use of your report","value":858,"date":"2020-01-01T00:00:00.000Z"},{"name":"Improper use of your report","value":862,"date":"2020-02-01T00:00:00.000Z"},{"name":"Improper use of your report","value":980,"date":"2020-03-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1031,"date":"2020-04-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1286,"date":"2020-05-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1236,"date":"2020-06-01T00:00:00.000Z"},{"name":"Improper use of your report","value":38,"date":"2020-07-01T00:00:00.000Z"},{"name":"Managing an account","value":826,"date":"2017-07-01T00:00:00.000Z"},{"name":"Managing an account","value":952,"date":"2017-08-01T00:00:00.000Z"},{"name":"Managing an account","value":954,"date":"2017-09-01T00:00:00.000Z"},{"name":"Managing an account","value":912,"date":"2017-10-01T00:00:00.000Z"},{"name":"Managing an account","value":966,"date":"2017-11-01T00:00:00.000Z"},{"name":"Managing an account","value":870,"date":"2017-12-01T00:00:00.000Z"},{"name":"Managing an account","value":1093,"date":"2018-01-01T00:00:00.000Z"},{"name":"Managing an account","value":990,"date":"2018-02-01T00:00:00.000Z"},{"name":"Managing an account","value":1097,"date":"2018-03-01T00:00:00.000Z"},{"name":"Managing an account","value":1213,"date":"2018-04-01T00:00:00.000Z"},{"name":"Managing an account","value":1192,"date":"2018-05-01T00:00:00.000Z"},{"name":"Managing an account","value":1126,"date":"2018-06-01T00:00:00.000Z"},{"name":"Managing an account","value":1180,"date":"2018-07-01T00:00:00.000Z"},{"name":"Managing an account","value":1065,"date":"2018-08-01T00:00:00.000Z"},{"name":"Managing an account","value":1072,"date":"2018-09-01T00:00:00.000Z"},{"name":"Managing an account","value":1161,"date":"2018-10-01T00:00:00.000Z"},{"name":"Managing an account","value":1084,"date":"2018-11-01T00:00:00.000Z"},{"name":"Managing an account","value":1143,"date":"2018-12-01T00:00:00.000Z"},{"name":"Managing an account","value":1093,"date":"2019-01-01T00:00:00.000Z"},{"name":"Managing an account","value":1036,"date":"2019-02-01T00:00:00.000Z"},{"name":"Managing an account","value":1179,"date":"2019-03-01T00:00:00.000Z"},{"name":"Managing an account","value":1196,"date":"2019-04-01T00:00:00.000Z"},{"name":"Managing an account","value":1200,"date":"2019-05-01T00:00:00.000Z"},{"name":"Managing an account","value":1192,"date":"2019-06-01T00:00:00.000Z"},{"name":"Managing an account","value":1165,"date":"2019-07-01T00:00:00.000Z"},{"name":"Managing an account","value":1320,"date":"2019-08-01T00:00:00.000Z"},{"name":"Managing an account","value":1090,"date":"2019-09-01T00:00:00.000Z"},{"name":"Managing an account","value":1242,"date":"2019-10-01T00:00:00.000Z"},{"name":"Managing an account","value":1100,"date":"2019-11-01T00:00:00.000Z"},{"name":"Managing an account","value":1069,"date":"2019-12-01T00:00:00.000Z"},{"name":"Managing an account","value":1163,"date":"2020-01-01T00:00:00.000Z"},{"name":"Managing an account","value":1065,"date":"2020-02-01T00:00:00.000Z"},{"name":"Managing an account","value":1046,"date":"2020-03-01T00:00:00.000Z"},{"name":"Managing an account","value":1267,"date":"2020-04-01T00:00:00.000Z"},{"name":"Managing an account","value":1225,"date":"2020-05-01T00:00:00.000Z"},{"name":"Managing an account","value":1289,"date":"2020-06-01T00:00:00.000Z"},{"name":"Managing an account","value":51,"date":"2020-07-01T00:00:00.000Z"}],"dateRangeBrush":[{"date":"2011-12-01T00:00:00.000Z","value":2536},{"date":"2012-01-01T00:00:00.000Z","value":3230},{"date":"2012-02-01T00:00:00.000Z","value":3509},{"date":"2012-03-01T00:00:00.000Z","value":6230},{"date":"2012-04-01T00:00:00.000Z","value":5703},{"date":"2012-05-01T00:00:00.000Z","value":7617},{"date":"2012-06-01T00:00:00.000Z","value":7841},{"date":"2012-07-01T00:00:00.000Z","value":6755},{"date":"2012-08-01T00:00:00.000Z","value":6877},{"date":"2012-09-01T00:00:00.000Z","value":5493},{"date":"2012-10-01T00:00:00.000Z","value":6741},{"date":"2012-11-01T00:00:00.000Z","value":6139},{"date":"2012-12-01T00:00:00.000Z","value":6238},{"date":"2013-01-01T00:00:00.000Z","value":9741},{"date":"2013-02-01T00:00:00.000Z","value":8349},{"date":"2013-03-01T00:00:00.000Z","value":8784},{"date":"2013-04-01T00:00:00.000Z","value":8632},{"date":"2013-05-01T00:00:00.000Z","value":8170},{"date":"2013-06-01T00:00:00.000Z","value":8035},{"date":"2013-07-01T00:00:00.000Z","value":9271},{"date":"2013-08-01T00:00:00.000Z","value":9565},{"date":"2013-09-01T00:00:00.000Z","value":9636},{"date":"2013-10-01T00:00:00.000Z","value":9241},{"date":"2013-11-01T00:00:00.000Z","value":9319},{"date":"2013-12-01T00:00:00.000Z","value":9474},{"date":"2014-01-01T00:00:00.000Z","value":12617},{"date":"2014-02-01T00:00:00.000Z","value":13048},{"date":"2014-03-01T00:00:00.000Z","value":13943},{"date":"2014-04-01T00:00:00.000Z","value":13840},{"date":"2014-05-01T00:00:00.000Z","value":12167},{"date":"2014-06-01T00:00:00.000Z","value":12520},{"date":"2014-07-01T00:00:00.000Z","value":13415},{"date":"2014-08-01T00:00:00.000Z","value":13186},{"date":"2014-09-01T00:00:00.000Z","value":12465},{"date":"2014-10-01T00:00:00.000Z","value":12901},{"date":"2014-11-01T00:00:00.000Z","value":11257},{"date":"2014-12-01T00:00:00.000Z","value":11684},{"date":"2015-01-01T00:00:00.000Z","value":12627},{"date":"2015-02-01T00:00:00.000Z","value":12680},{"date":"2015-03-01T00:00:00.000Z","value":14514},{"date":"2015-04-01T00:00:00.000Z","value":13753},{"date":"2015-05-01T00:00:00.000Z","value":13682},{"date":"2015-06-01T00:00:00.000Z","value":14517},{"date":"2015-07-01T00:00:00.000Z","value":15920},{"date":"2015-08-01T00:00:00.000Z","value":15766},{"date":"2015-09-01T00:00:00.000Z","value":14336},{"date":"2015-10-01T00:00:00.000Z","value":14899},{"date":"2015-11-01T00:00:00.000Z","value":12897},{"date":"2015-12-01T00:00:00.000Z","value":12884},{"date":"2016-01-01T00:00:00.000Z","value":13840},{"date":"2016-02-01T00:00:00.000Z","value":14140},{"date":"2016-03-01T00:00:00.000Z","value":16611},{"date":"2016-04-01T00:00:00.000Z","value":15608},{"date":"2016-05-01T00:00:00.000Z","value":15517},{"date":"2016-06-01T00:00:00.000Z","value":16063},{"date":"2016-07-01T00:00:00.000Z","value":16043},{"date":"2016-08-01T00:00:00.000Z","value":17694},{"date":"2016-09-01T00:00:00.000Z","value":17584},{"date":"2016-10-01T00:00:00.000Z","value":17820},{"date":"2016-11-01T00:00:00.000Z","value":15207},{"date":"2016-12-01T00:00:00.000Z","value":15341},{"date":"2017-01-01T00:00:00.000Z","value":21006},{"date":"2017-02-01T00:00:00.000Z","value":18110},{"date":"2017-03-01T00:00:00.000Z","value":19762},{"date":"2017-04-01T00:00:00.000Z","value":18544},{"date":"2017-05-01T00:00:00.000Z","value":19304},{"date":"2017-06-01T00:00:00.000Z","value":18567},{"date":"2017-07-01T00:00:00.000Z","value":20433},{"date":"2017-08-01T00:00:00.000Z","value":21402},{"date":"2017-09-01T00:00:00.000Z","value":27357},{"date":"2017-10-01T00:00:00.000Z","value":20456},{"date":"2017-11-01T00:00:00.000Z","value":18990},{"date":"2017-12-01T00:00:00.000Z","value":19034},{"date":"2018-01-01T00:00:00.000Z","value":23650},{"date":"2018-02-01T00:00:00.000Z","value":21978},{"date":"2018-03-01T00:00:00.000Z","value":23639},{"date":"2018-04-01T00:00:00.000Z","value":24327},{"date":"2018-05-01T00:00:00.000Z","value":22339},{"date":"2018-06-01T00:00:00.000Z","value":20111},{"date":"2018-07-01T00:00:00.000Z","value":20963},{"date":"2018-08-01T00:00:00.000Z","value":21726},{"date":"2018-09-01T00:00:00.000Z","value":19072},{"date":"2018-10-01T00:00:00.000Z","value":21903},{"date":"2018-11-01T00:00:00.000Z","value":19053},{"date":"2018-12-01T00:00:00.000Z","value":18552},{"date":"2019-01-01T00:00:00.000Z","value":18934},{"date":"2019-02-01T00:00:00.000Z","value":20206},{"date":"2019-03-01T00:00:00.000Z","value":23412},{"date":"2019-04-01T00:00:00.000Z","value":22915},{"date":"2019-05-01T00:00:00.000Z","value":23850},{"date":"2019-06-01T00:00:00.000Z","value":23352},{"date":"2019-07-01T00:00:00.000Z","value":25090},{"date":"2019-08-01T00:00:00.000Z","value":26059},{"date":"2019-09-01T00:00:00.000Z","value":23575},{"date":"2019-10-01T00:00:00.000Z","value":25636},{"date":"2019-11-01T00:00:00.000Z","value":22657},{"date":"2019-12-01T00:00:00.000Z","value":21704},{"date":"2020-01-01T00:00:00.000Z","value":26413},{"date":"2020-02-01T00:00:00.000Z","value":25097},{"date":"2020-03-01T00:00:00.000Z","value":29494},{"date":"2020-04-01T00:00:00.000Z","value":34805},{"date":"2020-05-01T00:00:00.000Z","value":37146},{"date":"2020-06-01T00:00:00.000Z","value":32699},{"date":"2020-07-01T00:00:00.000Z","value":1152}],"dateRangeLine":{"dataByTopic":[{"topic":"Incorrect information on your report","topicName":"Incorrect information on your report","dashed":false,"show":true,"dates":[{"name":"Incorrect information on your report","date":"2017-07-01T00:00:00.000Z","value":3976},{"name":"Incorrect information on your report","date":"2017-08-01T00:00:00.000Z","value":5236},{"name":"Incorrect information on your report","date":"2017-09-01T00:00:00.000Z","value":4491},{"name":"Incorrect information on your report","date":"2017-10-01T00:00:00.000Z","value":4907},{"name":"Incorrect information on your report","date":"2017-11-01T00:00:00.000Z","value":4476},{"name":"Incorrect information on your report","date":"2017-12-01T00:00:00.000Z","value":4677},{"name":"Incorrect information on your report","date":"2018-01-01T00:00:00.000Z","value":5956},{"name":"Incorrect information on your report","date":"2018-02-01T00:00:00.000Z","value":5754},{"name":"Incorrect information on your report","date":"2018-03-01T00:00:00.000Z","value":6096},{"name":"Incorrect information on your report","date":"2018-04-01T00:00:00.000Z","value":6459},{"name":"Incorrect information on your report","date":"2018-05-01T00:00:00.000Z","value":5978},{"name":"Incorrect information on your report","date":"2018-06-01T00:00:00.000Z","value":5346},{"name":"Incorrect information on your report","date":"2018-07-01T00:00:00.000Z","value":5764},{"name":"Incorrect information on your report","date":"2018-08-01T00:00:00.000Z","value":6092},{"name":"Incorrect information on your report","date":"2018-09-01T00:00:00.000Z","value":5420},{"name":"Incorrect information on your report","date":"2018-10-01T00:00:00.000Z","value":6351},{"name":"Incorrect information on your report","date":"2018-11-01T00:00:00.000Z","value":5849},{"name":"Incorrect information on your report","date":"2018-12-01T00:00:00.000Z","value":5179},{"name":"Incorrect information on your report","date":"2019-01-01T00:00:00.000Z","value":5603},{"name":"Incorrect information on your report","date":"2019-02-01T00:00:00.000Z","value":5827},{"name":"Incorrect information on your report","date":"2019-03-01T00:00:00.000Z","value":7020},{"name":"Incorrect information on your report","date":"2019-04-01T00:00:00.000Z","value":6973},{"name":"Incorrect information on your report","date":"2019-05-01T00:00:00.000Z","value":7679},{"name":"Incorrect information on your report","date":"2019-06-01T00:00:00.000Z","value":7642},{"name":"Incorrect information on your report","date":"2019-07-01T00:00:00.000Z","value":8313},{"name":"Incorrect information on your report","date":"2019-08-01T00:00:00.000Z","value":8911},{"name":"Incorrect information on your report","date":"2019-09-01T00:00:00.000Z","value":8419},{"name":"Incorrect information on your report","date":"2019-10-01T00:00:00.000Z","value":8862},{"name":"Incorrect information on your report","date":"2019-11-01T00:00:00.000Z","value":8161},{"name":"Incorrect information on your report","date":"2019-12-01T00:00:00.000Z","value":7540},{"name":"Incorrect information on your report","date":"2020-01-01T00:00:00.000Z","value":10329},{"name":"Incorrect information on your report","date":"2020-02-01T00:00:00.000Z","value":9631},{"name":"Incorrect information on your report","date":"2020-03-01T00:00:00.000Z","value":12459},{"name":"Incorrect information on your report","date":"2020-04-01T00:00:00.000Z","value":15157},{"name":"Incorrect information on your report","date":"2020-05-01T00:00:00.000Z","value":16863},{"name":"Incorrect information on your report","date":"2020-06-01T00:00:00.000Z","value":15339},{"name":"Incorrect information on your report","date":"2020-07-01T00:00:00.000Z","value":639}]},{"topic":"Problem with a credit reporting company's investigation into an existing problem","topicName":"Problem with a credit reporting company's investigation into an existing problem","dashed":false,"show":true,"dates":[{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2017-07-01T00:00:00.000Z","value":1639},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2017-08-01T00:00:00.000Z","value":2271},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2017-09-01T00:00:00.000Z","value":2027},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2017-10-01T00:00:00.000Z","value":2065},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2017-11-01T00:00:00.000Z","value":1866},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2017-12-01T00:00:00.000Z","value":1618},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-01-01T00:00:00.000Z","value":2159},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-02-01T00:00:00.000Z","value":2270},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-03-01T00:00:00.000Z","value":2200},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-04-01T00:00:00.000Z","value":2417},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-05-01T00:00:00.000Z","value":2317},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-06-01T00:00:00.000Z","value":2227},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-07-01T00:00:00.000Z","value":2157},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-08-01T00:00:00.000Z","value":2160},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-09-01T00:00:00.000Z","value":1883},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-10-01T00:00:00.000Z","value":2025},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-11-01T00:00:00.000Z","value":1925},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-12-01T00:00:00.000Z","value":2103},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-01-01T00:00:00.000Z","value":1881},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-02-01T00:00:00.000Z","value":2299},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-03-01T00:00:00.000Z","value":2574},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-04-01T00:00:00.000Z","value":2653},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-05-01T00:00:00.000Z","value":2692},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-06-01T00:00:00.000Z","value":2887},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-07-01T00:00:00.000Z","value":2994},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-08-01T00:00:00.000Z","value":2852},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-09-01T00:00:00.000Z","value":2471},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-10-01T00:00:00.000Z","value":3135},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-11-01T00:00:00.000Z","value":2618},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-12-01T00:00:00.000Z","value":2821},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2020-01-01T00:00:00.000Z","value":3283},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2020-02-01T00:00:00.000Z","value":2794},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2020-03-01T00:00:00.000Z","value":3504},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2020-04-01T00:00:00.000Z","value":4392},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2020-05-01T00:00:00.000Z","value":5330},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2020-06-01T00:00:00.000Z","value":4631},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2020-07-01T00:00:00.000Z","value":218}]},{"topic":"Attempts to collect debt not owed","topicName":"Attempts to collect debt not owed","dashed":false,"show":true,"dates":[{"name":"Attempts to collect debt not owed","date":"2017-07-01T00:00:00.000Z","value":1379},{"name":"Attempts to collect debt not owed","date":"2017-08-01T00:00:00.000Z","value":1634},{"name":"Attempts to collect debt not owed","date":"2017-09-01T00:00:00.000Z","value":1459},{"name":"Attempts to collect debt not owed","date":"2017-10-01T00:00:00.000Z","value":1630},{"name":"Attempts to collect debt not owed","date":"2017-11-01T00:00:00.000Z","value":1517},{"name":"Attempts to collect debt not owed","date":"2017-12-01T00:00:00.000Z","value":1525},{"name":"Attempts to collect debt not owed","date":"2018-01-01T00:00:00.000Z","value":2035},{"name":"Attempts to collect debt not owed","date":"2018-02-01T00:00:00.000Z","value":1861},{"name":"Attempts to collect debt not owed","date":"2018-03-01T00:00:00.000Z","value":2267},{"name":"Attempts to collect debt not owed","date":"2018-04-01T00:00:00.000Z","value":2093},{"name":"Attempts to collect debt not owed","date":"2018-05-01T00:00:00.000Z","value":1996},{"name":"Attempts to collect debt not owed","date":"2018-06-01T00:00:00.000Z","value":1947},{"name":"Attempts to collect debt not owed","date":"2018-07-01T00:00:00.000Z","value":1703},{"name":"Attempts to collect debt not owed","date":"2018-08-01T00:00:00.000Z","value":1985},{"name":"Attempts to collect debt not owed","date":"2018-09-01T00:00:00.000Z","value":1652},{"name":"Attempts to collect debt not owed","date":"2018-10-01T00:00:00.000Z","value":1842},{"name":"Attempts to collect debt not owed","date":"2018-11-01T00:00:00.000Z","value":1568},{"name":"Attempts to collect debt not owed","date":"2018-12-01T00:00:00.000Z","value":1547},{"name":"Attempts to collect debt not owed","date":"2019-01-01T00:00:00.000Z","value":1584},{"name":"Attempts to collect debt not owed","date":"2019-02-01T00:00:00.000Z","value":1683},{"name":"Attempts to collect debt not owed","date":"2019-03-01T00:00:00.000Z","value":2026},{"name":"Attempts to collect debt not owed","date":"2019-04-01T00:00:00.000Z","value":1951},{"name":"Attempts to collect debt not owed","date":"2019-05-01T00:00:00.000Z","value":1988},{"name":"Attempts to collect debt not owed","date":"2019-06-01T00:00:00.000Z","value":2028},{"name":"Attempts to collect debt not owed","date":"2019-07-01T00:00:00.000Z","value":1931},{"name":"Attempts to collect debt not owed","date":"2019-08-01T00:00:00.000Z","value":2044},{"name":"Attempts to collect debt not owed","date":"2019-09-01T00:00:00.000Z","value":1969},{"name":"Attempts to collect debt not owed","date":"2019-10-01T00:00:00.000Z","value":1981},{"name":"Attempts to collect debt not owed","date":"2019-11-01T00:00:00.000Z","value":1878},{"name":"Attempts to collect debt not owed","date":"2019-12-01T00:00:00.000Z","value":1727},{"name":"Attempts to collect debt not owed","date":"2020-01-01T00:00:00.000Z","value":1721},{"name":"Attempts to collect debt not owed","date":"2020-02-01T00:00:00.000Z","value":1940},{"name":"Attempts to collect debt not owed","date":"2020-03-01T00:00:00.000Z","value":2319},{"name":"Attempts to collect debt not owed","date":"2020-04-01T00:00:00.000Z","value":2449},{"name":"Attempts to collect debt not owed","date":"2020-05-01T00:00:00.000Z","value":2363},{"name":"Attempts to collect debt not owed","date":"2020-06-01T00:00:00.000Z","value":1947},{"name":"Attempts to collect debt not owed","date":"2020-07-01T00:00:00.000Z","value":47}]},{"topic":"Improper use of your report","topicName":"Improper use of your report","dashed":false,"show":true,"dates":[{"name":"Improper use of your report","date":"2017-07-01T00:00:00.000Z","value":1161},{"name":"Improper use of your report","date":"2017-08-01T00:00:00.000Z","value":1102},{"name":"Improper use of your report","date":"2017-09-01T00:00:00.000Z","value":7186},{"name":"Improper use of your report","date":"2017-10-01T00:00:00.000Z","value":1319},{"name":"Improper use of your report","date":"2017-11-01T00:00:00.000Z","value":1352},{"name":"Improper use of your report","date":"2017-12-01T00:00:00.000Z","value":1217},{"name":"Improper use of your report","date":"2018-01-01T00:00:00.000Z","value":1392},{"name":"Improper use of your report","date":"2018-02-01T00:00:00.000Z","value":1530},{"name":"Improper use of your report","date":"2018-03-01T00:00:00.000Z","value":1408},{"name":"Improper use of your report","date":"2018-04-01T00:00:00.000Z","value":1311},{"name":"Improper use of your report","date":"2018-05-01T00:00:00.000Z","value":1070},{"name":"Improper use of your report","date":"2018-06-01T00:00:00.000Z","value":907},{"name":"Improper use of your report","date":"2018-07-01T00:00:00.000Z","value":1101},{"name":"Improper use of your report","date":"2018-08-01T00:00:00.000Z","value":1133},{"name":"Improper use of your report","date":"2018-09-01T00:00:00.000Z","value":919},{"name":"Improper use of your report","date":"2018-10-01T00:00:00.000Z","value":1127},{"name":"Improper use of your report","date":"2018-11-01T00:00:00.000Z","value":934},{"name":"Improper use of your report","date":"2018-12-01T00:00:00.000Z","value":841},{"name":"Improper use of your report","date":"2019-01-01T00:00:00.000Z","value":864},{"name":"Improper use of your report","date":"2019-02-01T00:00:00.000Z","value":913},{"name":"Improper use of your report","date":"2019-03-01T00:00:00.000Z","value":1066},{"name":"Improper use of your report","date":"2019-04-01T00:00:00.000Z","value":1013},{"name":"Improper use of your report","date":"2019-05-01T00:00:00.000Z","value":1216},{"name":"Improper use of your report","date":"2019-06-01T00:00:00.000Z","value":925},{"name":"Improper use of your report","date":"2019-07-01T00:00:00.000Z","value":1272},{"name":"Improper use of your report","date":"2019-08-01T00:00:00.000Z","value":1354},{"name":"Improper use of your report","date":"2019-09-01T00:00:00.000Z","value":929},{"name":"Improper use of your report","date":"2019-10-01T00:00:00.000Z","value":945},{"name":"Improper use of your report","date":"2019-11-01T00:00:00.000Z","value":808},{"name":"Improper use of your report","date":"2019-12-01T00:00:00.000Z","value":734},{"name":"Improper use of your report","date":"2020-01-01T00:00:00.000Z","value":858},{"name":"Improper use of your report","date":"2020-02-01T00:00:00.000Z","value":862},{"name":"Improper use of your report","date":"2020-03-01T00:00:00.000Z","value":980},{"name":"Improper use of your report","date":"2020-04-01T00:00:00.000Z","value":1031},{"name":"Improper use of your report","date":"2020-05-01T00:00:00.000Z","value":1286},{"name":"Improper use of your report","date":"2020-06-01T00:00:00.000Z","value":1236},{"name":"Improper use of your report","date":"2020-07-01T00:00:00.000Z","value":38}]},{"topic":"Managing an account","topicName":"Managing an account","dashed":false,"show":true,"dates":[{"name":"Managing an account","date":"2017-07-01T00:00:00.000Z","value":826},{"name":"Managing an account","date":"2017-08-01T00:00:00.000Z","value":952},{"name":"Managing an account","date":"2017-09-01T00:00:00.000Z","value":954},{"name":"Managing an account","date":"2017-10-01T00:00:00.000Z","value":912},{"name":"Managing an account","date":"2017-11-01T00:00:00.000Z","value":966},{"name":"Managing an account","date":"2017-12-01T00:00:00.000Z","value":870},{"name":"Managing an account","date":"2018-01-01T00:00:00.000Z","value":1093},{"name":"Managing an account","date":"2018-02-01T00:00:00.000Z","value":990},{"name":"Managing an account","date":"2018-03-01T00:00:00.000Z","value":1097},{"name":"Managing an account","date":"2018-04-01T00:00:00.000Z","value":1213},{"name":"Managing an account","date":"2018-05-01T00:00:00.000Z","value":1192},{"name":"Managing an account","date":"2018-06-01T00:00:00.000Z","value":1126},{"name":"Managing an account","date":"2018-07-01T00:00:00.000Z","value":1180},{"name":"Managing an account","date":"2018-08-01T00:00:00.000Z","value":1065},{"name":"Managing an account","date":"2018-09-01T00:00:00.000Z","value":1072},{"name":"Managing an account","date":"2018-10-01T00:00:00.000Z","value":1161},{"name":"Managing an account","date":"2018-11-01T00:00:00.000Z","value":1084},{"name":"Managing an account","date":"2018-12-01T00:00:00.000Z","value":1143},{"name":"Managing an account","date":"2019-01-01T00:00:00.000Z","value":1093},{"name":"Managing an account","date":"2019-02-01T00:00:00.000Z","value":1036},{"name":"Managing an account","date":"2019-03-01T00:00:00.000Z","value":1179},{"name":"Managing an account","date":"2019-04-01T00:00:00.000Z","value":1196},{"name":"Managing an account","date":"2019-05-01T00:00:00.000Z","value":1200},{"name":"Managing an account","date":"2019-06-01T00:00:00.000Z","value":1192},{"name":"Managing an account","date":"2019-07-01T00:00:00.000Z","value":1165},{"name":"Managing an account","date":"2019-08-01T00:00:00.000Z","value":1320},{"name":"Managing an account","date":"2019-09-01T00:00:00.000Z","value":1090},{"name":"Managing an account","date":"2019-10-01T00:00:00.000Z","value":1242},{"name":"Managing an account","date":"2019-11-01T00:00:00.000Z","value":1100},{"name":"Managing an account","date":"2019-12-01T00:00:00.000Z","value":1069},{"name":"Managing an account","date":"2020-01-01T00:00:00.000Z","value":1163},{"name":"Managing an account","date":"2020-02-01T00:00:00.000Z","value":1065},{"name":"Managing an account","date":"2020-03-01T00:00:00.000Z","value":1046},{"name":"Managing an account","date":"2020-04-01T00:00:00.000Z","value":1267},{"name":"Managing an account","date":"2020-05-01T00:00:00.000Z","value":1225},{"name":"Managing an account","date":"2020-06-01T00:00:00.000Z","value":1289},{"name":"Managing an account","date":"2020-07-01T00:00:00.000Z","value":51}]}]},"issue":[{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Incorrect information on your report","value":269374,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Information belongs to someone else","value":156308,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Account status incorrect","value":39224,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Account information incorrect","value":36552,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Personal information incorrect","value":12286,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Old information reappears or never goes away","value":9033,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Public record information inaccurate","value":8972,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Information is missing that should be on the report","value":4742,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Information is incorrect","value":677,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Information that should be on the report is missing","value":112,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Incorrect information on your report ","value":1,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Incorrect information on your report","name":"More Information about Incorrect information on your report","splitterText":"More Information about Incorrect information on your report","value":"","parent":"Incorrect information on your report","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Problem with a credit reporting company's investigation into an existing problem","value":93358,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Their investigation did not fix an error on your report","value":65070,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Investigation took more than 30 days","value":9055,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Was not notified of investigation status or results","value":8203,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Difficulty submitting a dispute or getting information about a dispute over the phone","value":6179,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Problem with personal statement of dispute","value":4418,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Problem with a credit reporting company's investigation into an existing problem","name":"More Information about Problem with a credit reporting company's investigation into an existing problem","splitterText":"More Information about Problem with a credit reporting company's investigation into an existing problem","value":"","parent":"Problem with a credit reporting company's investigation into an existing problem","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Attempts to collect debt not owed","value":67216,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Debt is not yours","value":34471,"parent":"Attempts to collect debt not owed","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Debt was result of identity theft","value":16625,"parent":"Attempts to collect debt not owed","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Debt was paid","value":13434,"parent":"Attempts to collect debt not owed","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Debt was already discharged in bankruptcy and is no longer owed","value":2686,"parent":"Attempts to collect debt not owed","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Attempts to collect debt not owed","name":"More Information about Attempts to collect debt not owed","splitterText":"More Information about Attempts to collect debt not owed","value":"","parent":"Attempts to collect debt not owed","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Improper use of your report","value":45340,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Credit inquiries on your report that you don't recognize","value":30086,"parent":"Improper use of your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Reporting company used your report improperly","value":14270,"parent":"Improper use of your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Received unsolicited financial product or insurance offers after opting out","value":427,"parent":"Improper use of your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Report provided to employer without your written authorization","value":425,"parent":"Improper use of your report","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Improper use of your report","name":"More Information about Improper use of your report","splitterText":"More Information about Improper use of your report","value":"","parent":"Improper use of your report","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Managing an account","value":39884,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Deposits and withdrawals","value":13703,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Problem using a debit or ATM card","value":6775,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Banking errors","value":5058,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Funds not handled or disbursed as instructed","value":3813,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Fee problem","value":3293,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Problem accessing account","value":2920,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Problem making or receiving payments","value":2296,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Cashing a check","value":1454,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Deposits or withdrawals","value":377,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Problem with fees or penalties","value":106,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Problem with renewal","value":89,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Managing an account","name":"More Information about Managing an account","splitterText":"More Information about Managing an account","value":"","parent":"Managing an account","pctOfSet":"","width":0.3,"visible":false}],"product":[{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Credit reporting, credit repair services, or other personal consumer reports","value":418955,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Credit reporting","value":412529,"parent":"Credit reporting, credit repair services, or other personal consumer reports","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Other personal consumer report","value":5116,"parent":"Credit reporting, credit repair services, or other personal consumer reports","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Credit repair services","value":1309,"parent":"Credit reporting, credit repair services, or other personal consumer reports","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Conventional home mortgage","value":1,"parent":"Credit reporting, credit repair services, or other personal consumer reports","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Credit reporting, credit repair services, or other personal consumer reports","name":"More Information about Credit reporting, credit repair services, or other personal consumer reports","splitterText":"More Information about Credit reporting, credit repair services, or other personal consumer reports","value":"","parent":"Credit reporting, credit repair services, or other personal consumer reports","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Debt collection","value":145052,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Other debt","value":42553,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Credit card debt","value":31480,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"I do not know","value":31271,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Medical debt","value":23049,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Auto debt","value":4734,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Payday loan debt","value":4343,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Mortgage debt","value":3120,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Federal student loan debt","value":2359,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Private student loan debt","value":2143,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Debt collection","name":"More Information about Debt collection","splitterText":"More Information about Debt collection","value":"","parent":"Debt collection","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Credit card or prepaid card","value":76892,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"General-purpose credit card or charge card","value":58770,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Store credit card","value":12346,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"General-purpose prepaid card","value":2993,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Government benefit card","value":2173,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Payroll card","value":331,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Gift card","value":270,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Student prepaid card","value":9,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Credit card or prepaid card","name":"More Information about Credit card or prepaid card","splitterText":"More Information about Credit card or prepaid card","value":"","parent":"Credit card or prepaid card","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Mortgage","value":71790,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Conventional home mortgage ","value":42482,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"FHA mortgage","value":10308,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Other type of mortgage","value":9399,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Home equity loan or line of credit (HELOC)","value":4687,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"VA mortgage","value":3878,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Reverse mortgage","value":1036,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Mortgage","name":"More Information about Mortgage","splitterText":"More Information about Mortgage","value":"","parent":"Mortgage","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Checking or savings account","value":63133,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Checking account","value":47811,"parent":"Checking or savings account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Other banking product or service","value":9113,"parent":"Checking or savings account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Savings account","value":4305,"parent":"Checking or savings account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"CD (Certificate of Deposit)","value":1863,"parent":"Checking or savings account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Personal line of credit","value":41,"parent":"Checking or savings account","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Checking or savings account","name":"More Information about Checking or savings account","splitterText":"More Information about Checking or savings account","value":"","parent":"Checking or savings account","pctOfSet":"","width":0.3,"visible":false}],"tags":[{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Servicemember","value":72491,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Older American","value":27082,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Older American, Servicemember","value":9098,"parent":false,"visible":true,"width":0.5}]},"subLens":"","tooltip":false,"total":846111}
diff --git a/src/reducers/__tests__/trends.spec.jsx b/src/reducers/__tests__/trends.spec.jsx
index 0d74a0541..6438f8597 100644
--- a/src/reducers/__tests__/trends.spec.jsx
+++ b/src/reducers/__tests__/trends.spec.jsx
@@ -235,14 +235,15 @@ describe( 'reducer:trends', () => {
 
     // Issue was removed from the aggregations. Retaining test
     // in case the feature is enabled JRC 7-6-20
-    // it( 'maps data to object state - Issue Lens', () => {
-    //   state.lens = 'Issue'
-    //   result = target( state, action )
-    //   expect( result ).toEqual( trendsLensIssueResults )
-    // } )
+    it( 'maps data to object state - Issue Lens', () => {
+      state.lens = 'Issue'
+      result = target( state, action )
+      expect( result ).toEqual( trendsLensIssueResults )
+    } )
 
     // This test is causing a pctChange = 'null' error, but otherwise passing
     // JRC 7-7
+    // pctChange comes from briteCharts rowcharts in the browser
     it( 'maps data to object state - dupe rows', () => {
       action.data.aggregations = trendsAggsDupes
       result = target( state, action )

From df0ef899dfda58356b5a25a72cf9dcffe8e368c5 Mon Sep 17 00:00:00 2001
From: Richard Dinh <richard.dinh@cfpb.gov>
Date: Tue, 7 Jul 2020 23:35:40 -0400
Subject: [PATCH 29/34] squashing lines

---
 src/reducers/__fixtures__/trendsResults.jsx | 1478 +------------------
 1 file changed, 1 insertion(+), 1477 deletions(-)

diff --git a/src/reducers/__fixtures__/trendsResults.jsx b/src/reducers/__fixtures__/trendsResults.jsx
index 95b38aadb..ecb5f480d 100644
--- a/src/reducers/__fixtures__/trendsResults.jsx
+++ b/src/reducers/__fixtures__/trendsResults.jsx
@@ -1,1479 +1,3 @@
-export const trendsResults = {
-    activeCall: '',
-    chartType: 'line',
-    colorMap: {
-      Complaints: '#ADDC91',
-      Other: '#a2a3a4',
-      'All other products': '#a2a3a4',
-      'All other companies': '#a2a3a4',
-      'All other values': '#a2a3a4'
-    },
-    error: false,
-    expandedTrends: [],
-    filterNames: [
-      'Credit reporting, credit repair services, or other personal consumer reports',
-      'Debt collection',
-      'Credit card or prepaid card',
-      'Mortgage',
-      'Checking or savings account',
-      'Incorrect information on your report',
-      'Problem with a credit reporting company\'s investigation into an existing problem',
-      'Attempts to collect debt not owed',
-      'Improper use of your report',
-      'Managing an account'
-    ],
-    focus: '',
-    isLoading: false,
-    lastDate: '2020-07-01T00:00:00.000Z',
-    lens: 'Overview',
-    results: {
-      dateRangeArea: [],
-      dateRangeBrush: [
-        {
-          date: '2011-12-01T00:00:00.000Z',
-          value: 2536
-        },
-        {
-          date: '2012-01-01T00:00:00.000Z',
-          value: 3230
-        },
-        {
-          date: '2012-02-01T00:00:00.000Z',
-          value: 3509
-        },
-        {
-          date: '2012-03-01T00:00:00.000Z',
-          value: 6230
-        },
-        {
-          date: '2012-04-01T00:00:00.000Z',
-          value: 5703
-        },
-        {
-          date: '2012-05-01T00:00:00.000Z',
-          value: 7617
-        },
-        {
-          date: '2012-06-01T00:00:00.000Z',
-          value: 7841
-        },
-        {
-          date: '2012-07-01T00:00:00.000Z',
-          value: 6755
-        },
-        {
-          date: '2012-08-01T00:00:00.000Z',
-          value: 6877
-        },
-        {
-          date: '2012-09-01T00:00:00.000Z',
-          value: 5493
-        },
-        {
-          date: '2012-10-01T00:00:00.000Z',
-          value: 6741
-        },
-        {
-          date: '2012-11-01T00:00:00.000Z',
-          value: 6139
-        },
-        {
-          date: '2012-12-01T00:00:00.000Z',
-          value: 6238
-        },
-        {
-          date: '2013-01-01T00:00:00.000Z',
-          value: 9741
-        },
-        {
-          date: '2013-02-01T00:00:00.000Z',
-          value: 8349
-        },
-        {
-          date: '2013-03-01T00:00:00.000Z',
-          value: 8784
-        },
-        {
-          date: '2013-04-01T00:00:00.000Z',
-          value: 8632
-        },
-        {
-          date: '2013-05-01T00:00:00.000Z',
-          value: 8170
-        },
-        {
-          date: '2013-06-01T00:00:00.000Z',
-          value: 8035
-        },
-        {
-          date: '2013-07-01T00:00:00.000Z',
-          value: 9271
-        },
-        {
-          date: '2013-08-01T00:00:00.000Z',
-          value: 9565
-        },
-        {
-          date: '2013-09-01T00:00:00.000Z',
-          value: 9636
-        },
-        {
-          date: '2013-10-01T00:00:00.000Z',
-          value: 9241
-        },
-        {
-          date: '2013-11-01T00:00:00.000Z',
-          value: 9319
-        },
-        {
-          date: '2013-12-01T00:00:00.000Z',
-          value: 9474
-        },
-        {
-          date: '2014-01-01T00:00:00.000Z',
-          value: 12617
-        },
-        {
-          date: '2014-02-01T00:00:00.000Z',
-          value: 13048
-        },
-        {
-          date: '2014-03-01T00:00:00.000Z',
-          value: 13943
-        },
-        {
-          date: '2014-04-01T00:00:00.000Z',
-          value: 13840
-        },
-        {
-          date: '2014-05-01T00:00:00.000Z',
-          value: 12167
-        },
-        {
-          date: '2014-06-01T00:00:00.000Z',
-          value: 12520
-        },
-        {
-          date: '2014-07-01T00:00:00.000Z',
-          value: 13415
-        },
-        {
-          date: '2014-08-01T00:00:00.000Z',
-          value: 13186
-        },
-        {
-          date: '2014-09-01T00:00:00.000Z',
-          value: 12465
-        },
-        {
-          date: '2014-10-01T00:00:00.000Z',
-          value: 12901
-        },
-        {
-          date: '2014-11-01T00:00:00.000Z',
-          value: 11257
-        },
-        {
-          date: '2014-12-01T00:00:00.000Z',
-          value: 11684
-        },
-        {
-          date: '2015-01-01T00:00:00.000Z',
-          value: 12627
-        },
-        {
-          date: '2015-02-01T00:00:00.000Z',
-          value: 12680
-        },
-        {
-          date: '2015-03-01T00:00:00.000Z',
-          value: 14514
-        },
-        {
-          date: '2015-04-01T00:00:00.000Z',
-          value: 13753
-        },
-        {
-          date: '2015-05-01T00:00:00.000Z',
-          value: 13682
-        },
-        {
-          date: '2015-06-01T00:00:00.000Z',
-          value: 14517
-        },
-        {
-          date: '2015-07-01T00:00:00.000Z',
-          value: 15920
-        },
-        {
-          date: '2015-08-01T00:00:00.000Z',
-          value: 15766
-        },
-        {
-          date: '2015-09-01T00:00:00.000Z',
-          value: 14336
-        },
-        {
-          date: '2015-10-01T00:00:00.000Z',
-          value: 14899
-        },
-        {
-          date: '2015-11-01T00:00:00.000Z',
-          value: 12897
-        },
-        {
-          date: '2015-12-01T00:00:00.000Z',
-          value: 12884
-        },
-        {
-          date: '2016-01-01T00:00:00.000Z',
-          value: 13840
-        },
-        {
-          date: '2016-02-01T00:00:00.000Z',
-          value: 14140
-        },
-        {
-          date: '2016-03-01T00:00:00.000Z',
-          value: 16611
-        },
-        {
-          date: '2016-04-01T00:00:00.000Z',
-          value: 15608
-        },
-        {
-          date: '2016-05-01T00:00:00.000Z',
-          value: 15517
-        },
-        {
-          date: '2016-06-01T00:00:00.000Z',
-          value: 16063
-        },
-        {
-          date: '2016-07-01T00:00:00.000Z',
-          value: 16043
-        },
-        {
-          date: '2016-08-01T00:00:00.000Z',
-          value: 17694
-        },
-        {
-          date: '2016-09-01T00:00:00.000Z',
-          value: 17584
-        },
-        {
-          date: '2016-10-01T00:00:00.000Z',
-          value: 17820
-        },
-        {
-          date: '2016-11-01T00:00:00.000Z',
-          value: 15207
-        },
-        {
-          date: '2016-12-01T00:00:00.000Z',
-          value: 15341
-        },
-        {
-          date: '2017-01-01T00:00:00.000Z',
-          value: 21006
-        },
-        {
-          date: '2017-02-01T00:00:00.000Z',
-          value: 18110
-        },
-        {
-          date: '2017-03-01T00:00:00.000Z',
-          value: 19762
-        },
-        {
-          date: '2017-04-01T00:00:00.000Z',
-          value: 18544
-        },
-        {
-          date: '2017-05-01T00:00:00.000Z',
-          value: 19304
-        },
-        {
-          date: '2017-06-01T00:00:00.000Z',
-          value: 18567
-        },
-        {
-          date: '2017-07-01T00:00:00.000Z',
-          value: 20433
-        },
-        {
-          date: '2017-08-01T00:00:00.000Z',
-          value: 21402
-        },
-        {
-          date: '2017-09-01T00:00:00.000Z',
-          value: 27357
-        },
-        {
-          date: '2017-10-01T00:00:00.000Z',
-          value: 20456
-        },
-        {
-          date: '2017-11-01T00:00:00.000Z',
-          value: 18990
-        },
-        {
-          date: '2017-12-01T00:00:00.000Z',
-          value: 19034
-        },
-        {
-          date: '2018-01-01T00:00:00.000Z',
-          value: 23650
-        },
-        {
-          date: '2018-02-01T00:00:00.000Z',
-          value: 21978
-        },
-        {
-          date: '2018-03-01T00:00:00.000Z',
-          value: 23639
-        },
-        {
-          date: '2018-04-01T00:00:00.000Z',
-          value: 24327
-        },
-        {
-          date: '2018-05-01T00:00:00.000Z',
-          value: 22339
-        },
-        {
-          date: '2018-06-01T00:00:00.000Z',
-          value: 20111
-        },
-        {
-          date: '2018-07-01T00:00:00.000Z',
-          value: 20963
-        },
-        {
-          date: '2018-08-01T00:00:00.000Z',
-          value: 21726
-        },
-        {
-          date: '2018-09-01T00:00:00.000Z',
-          value: 19072
-        },
-        {
-          date: '2018-10-01T00:00:00.000Z',
-          value: 21903
-        },
-        {
-          date: '2018-11-01T00:00:00.000Z',
-          value: 19053
-        },
-        {
-          date: '2018-12-01T00:00:00.000Z',
-          value: 18552
-        },
-        {
-          date: '2019-01-01T00:00:00.000Z',
-          value: 18934
-        },
-        {
-          date: '2019-02-01T00:00:00.000Z',
-          value: 20206
-        },
-        {
-          date: '2019-03-01T00:00:00.000Z',
-          value: 23412
-        },
-        {
-          date: '2019-04-01T00:00:00.000Z',
-          value: 22915
-        },
-        {
-          date: '2019-05-01T00:00:00.000Z',
-          value: 23850
-        },
-        {
-          date: '2019-06-01T00:00:00.000Z',
-          value: 23352
-        },
-        {
-          date: '2019-07-01T00:00:00.000Z',
-          value: 25090
-        },
-        {
-          date: '2019-08-01T00:00:00.000Z',
-          value: 26059
-        },
-        {
-          date: '2019-09-01T00:00:00.000Z',
-          value: 23575
-        },
-        {
-          date: '2019-10-01T00:00:00.000Z',
-          value: 25636
-        },
-        {
-          date: '2019-11-01T00:00:00.000Z',
-          value: 22657
-        },
-        {
-          date: '2019-12-01T00:00:00.000Z',
-          value: 21704
-        },
-        {
-          date: '2020-01-01T00:00:00.000Z',
-          value: 26413
-        },
-        {
-          date: '2020-02-01T00:00:00.000Z',
-          value: 25097
-        },
-        {
-          date: '2020-03-01T00:00:00.000Z',
-          value: 29494
-        },
-        {
-          date: '2020-04-01T00:00:00.000Z',
-          value: 34805
-        },
-        {
-          date: '2020-05-01T00:00:00.000Z',
-          value: 37146
-        },
-        {
-          date: '2020-06-01T00:00:00.000Z',
-          value: 32699
-        },
-        {
-          date: '2020-07-01T00:00:00.000Z',
-          value: 1152
-        }
-      ],
-      dateRangeLine: {
-        dataByTopic: [
-          {
-            topic: 'Complaints',
-            topicName: 'Complaints',
-            dashed: false,
-            show: true,
-            dates: [
-              {
-                date: '2017-07-01T00:00:00.000Z',
-                value: 17363
-              },
-              {
-                date: '2017-08-01T00:00:00.000Z',
-                value: 21402
-              },
-              {
-                date: '2017-09-01T00:00:00.000Z',
-                value: 27357
-              },
-              {
-                date: '2017-10-01T00:00:00.000Z',
-                value: 20456
-              },
-              {
-                date: '2017-11-01T00:00:00.000Z',
-                value: 18990
-              },
-              {
-                date: '2017-12-01T00:00:00.000Z',
-                value: 19034
-              },
-              {
-                date: '2018-01-01T00:00:00.000Z',
-                value: 23650
-              },
-              {
-                date: '2018-02-01T00:00:00.000Z',
-                value: 21978
-              },
-              {
-                date: '2018-03-01T00:00:00.000Z',
-                value: 23639
-              },
-              {
-                date: '2018-04-01T00:00:00.000Z',
-                value: 24327
-              },
-              {
-                date: '2018-05-01T00:00:00.000Z',
-                value: 22339
-              },
-              {
-                date: '2018-06-01T00:00:00.000Z',
-                value: 20111
-              },
-              {
-                date: '2018-07-01T00:00:00.000Z',
-                value: 20963
-              },
-              {
-                date: '2018-08-01T00:00:00.000Z',
-                value: 21726
-              },
-              {
-                date: '2018-09-01T00:00:00.000Z',
-                value: 19072
-              },
-              {
-                date: '2018-10-01T00:00:00.000Z',
-                value: 21903
-              },
-              {
-                date: '2018-11-01T00:00:00.000Z',
-                value: 19053
-              },
-              {
-                date: '2018-12-01T00:00:00.000Z',
-                value: 18552
-              },
-              {
-                date: '2019-01-01T00:00:00.000Z',
-                value: 18934
-              },
-              {
-                date: '2019-02-01T00:00:00.000Z',
-                value: 20206
-              },
-              {
-                date: '2019-03-01T00:00:00.000Z',
-                value: 23412
-              },
-              {
-                date: '2019-04-01T00:00:00.000Z',
-                value: 22915
-              },
-              {
-                date: '2019-05-01T00:00:00.000Z',
-                value: 23850
-              },
-              {
-                date: '2019-06-01T00:00:00.000Z',
-                value: 23352
-              },
-              {
-                date: '2019-07-01T00:00:00.000Z',
-                value: 25090
-              },
-              {
-                date: '2019-08-01T00:00:00.000Z',
-                value: 26059
-              },
-              {
-                date: '2019-09-01T00:00:00.000Z',
-                value: 23575
-              },
-              {
-                date: '2019-10-01T00:00:00.000Z',
-                value: 25636
-              },
-              {
-                date: '2019-11-01T00:00:00.000Z',
-                value: 22657
-              },
-              {
-                date: '2019-12-01T00:00:00.000Z',
-                value: 21704
-              },
-              {
-                date: '2020-01-01T00:00:00.000Z',
-                value: 26413
-              },
-              {
-                date: '2020-02-01T00:00:00.000Z',
-                value: 25097
-              },
-              {
-                date: '2020-03-01T00:00:00.000Z',
-                value: 29494
-              },
-              {
-                date: '2020-04-01T00:00:00.000Z',
-                value: 34805
-              },
-              {
-                date: '2020-05-01T00:00:00.000Z',
-                value: 37146
-              },
-              {
-                date: '2020-06-01T00:00:00.000Z',
-                value: 32699
-              },
-              {
-                date: '2020-07-01T00:00:00.000Z',
-                value: 1152
-              }
-            ]
-          }
-        ]
-      },
-      issue: [
-        {
-          hasChildren: true,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Incorrect information on your report',
-          value: 269374,
-          parent: false,
-          visible: true,
-          width: 0.5
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Information belongs to someone else',
-          value: 156308,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Account status incorrect',
-          value: 39224,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Account information incorrect',
-          value: 36552,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Personal information incorrect',
-          value: 12286,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Old information reappears or never goes away',
-          value: 9033,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Public record information inaccurate',
-          value: 8972,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Information is missing that should be on the report',
-          value: 4742,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Information is incorrect',
-          value: 677,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Information that should be on the report is missing',
-          value: 112,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Incorrect information on your report ',
-          value: 1,
-          parent: 'Incorrect information on your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: true,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Problem with a credit reporting company\'s investigation into an existing problem',
-          value: 93358,
-          parent: false,
-          visible: true,
-          width: 0.5
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Their investigation did not fix an error on your report',
-          value: 65070,
-          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Investigation took more than 30 days',
-          value: 9055,
-          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Was not notified of investigation status or results',
-          value: 8203,
-          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Difficulty submitting a dispute or getting information about a dispute over the phone',
-          value: 6179,
-          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Problem with personal statement of dispute',
-          value: 4418,
-          parent: 'Problem with a credit reporting company\'s investigation into an existing problem',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: true,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Attempts to collect debt not owed',
-          value: 67216,
-          parent: false,
-          visible: true,
-          width: 0.5
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Debt is not yours',
-          value: 34471,
-          parent: 'Attempts to collect debt not owed',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Debt was result of identity theft',
-          value: 16625,
-          parent: 'Attempts to collect debt not owed',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Debt was paid',
-          value: 13434,
-          parent: 'Attempts to collect debt not owed',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Debt was already discharged in bankruptcy and is no longer owed',
-          value: 2686,
-          parent: 'Attempts to collect debt not owed',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: true,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Improper use of your report',
-          value: 45340,
-          parent: false,
-          visible: true,
-          width: 0.5
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Credit inquiries on your report that you don\'t recognize',
-          value: 30086,
-          parent: 'Improper use of your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Reporting company used your report improperly',
-          value: 14270,
-          parent: 'Improper use of your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Received unsolicited financial product or insurance offers after opting out',
-          value: 427,
-          parent: 'Improper use of your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Report provided to employer without your written authorization',
-          value: 425,
-          parent: 'Improper use of your report',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: true,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Managing an account',
-          value: 39884,
-          parent: false,
-          visible: true,
-          width: 0.5
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Deposits and withdrawals',
-          value: 13703,
-          parent: 'Managing an account',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Problem using a debit or ATM card',
-          value: 6775,
-          parent: 'Managing an account',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Banking errors',
-          value: 5058,
-          parent: 'Managing an account',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Funds not handled or disbursed as instructed',
-          value: 3813,
-          parent: 'Managing an account',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Fee problem',
-          value: 3293,
-          parent: 'Managing an account',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Problem accessing account',
-          value: 2920,
-          parent: 'Managing an account',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Problem making or receiving payments',
-          value: 2296,
-          parent: 'Managing an account',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Cashing a check',
-          value: 1454,
-          parent: 'Managing an account',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Deposits or withdrawals',
-          value: 377,
-          parent: 'Managing an account',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Problem with fees or penalties',
-          value: 106,
-          parent: 'Managing an account',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Problem with renewal',
-          value: 89,
-          parent: 'Managing an account',
-          visible: false,
-          width: 0.4
-        }
-      ],
-      product: [
-        {
-          hasChildren: true,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Credit reporting, credit repair services, or other personal consumer reports',
-          value: 418955,
-          parent: false,
-          visible: true,
-          width: 0.5
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Credit reporting',
-          value: 412529,
-          parent: 'Credit reporting, credit repair services, or other personal consumer reports',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Other personal consumer report',
-          value: 5116,
-          parent: 'Credit reporting, credit repair services, or other personal consumer reports',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Credit repair services',
-          value: 1309,
-          parent: 'Credit reporting, credit repair services, or other personal consumer reports',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Conventional home mortgage',
-          value: 1,
-          parent: 'Credit reporting, credit repair services, or other personal consumer reports',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: true,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Debt collection',
-          value: 145052,
-          parent: false,
-          visible: true,
-          width: 0.5
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Other debt',
-          value: 42553,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Credit card debt',
-          value: 31480,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'I do not know',
-          value: 31271,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Medical debt',
-          value: 23049,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Auto debt',
-          value: 4734,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Payday loan debt',
-          value: 4343,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Mortgage debt',
-          value: 3120,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Federal student loan debt',
-          value: 2359,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Private student loan debt',
-          value: 2143,
-          parent: 'Debt collection',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: true,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Credit card or prepaid card',
-          value: 76892,
-          parent: false,
-          visible: true,
-          width: 0.5
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'General-purpose credit card or charge card',
-          value: 58770,
-          parent: 'Credit card or prepaid card',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Store credit card',
-          value: 12346,
-          parent: 'Credit card or prepaid card',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'General-purpose prepaid card',
-          value: 2993,
-          parent: 'Credit card or prepaid card',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Government benefit card',
-          value: 2173,
-          parent: 'Credit card or prepaid card',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Payroll card',
-          value: 331,
-          parent: 'Credit card or prepaid card',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Gift card',
-          value: 270,
-          parent: 'Credit card or prepaid card',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Student prepaid card',
-          value: 9,
-          parent: 'Credit card or prepaid card',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: true,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Mortgage',
-          value: 71790,
-          parent: false,
-          visible: true,
-          width: 0.5
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Conventional home mortgage ',
-          value: 42482,
-          parent: 'Mortgage',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'FHA mortgage',
-          value: 10308,
-          parent: 'Mortgage',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Other type of mortgage',
-          value: 9399,
-          parent: 'Mortgage',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Home equity loan or line of credit (HELOC)',
-          value: 4687,
-          parent: 'Mortgage',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'VA mortgage',
-          value: 3878,
-          parent: 'Mortgage',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Reverse mortgage',
-          value: 1036,
-          parent: 'Mortgage',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: true,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Checking or savings account',
-          value: 63133,
-          parent: false,
-          visible: true,
-          width: 0.5
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Checking account',
-          value: 47811,
-          parent: 'Checking or savings account',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Other banking product or service',
-          value: 9113,
-          parent: 'Checking or savings account',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Savings account',
-          value: 4305,
-          parent: 'Checking or savings account',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'CD (Certificate of Deposit)',
-          value: 1863,
-          parent: 'Checking or savings account',
-          visible: false,
-          width: 0.4
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: false,
-          pctOfSet: 0,
-          name: 'Personal line of credit',
-          value: 41,
-          parent: 'Checking or savings account',
-          visible: false,
-          width: 0.4
-        }
-      ],
-      tags: [
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Servicemember',
-          value: 72491,
-          parent: false,
-          visible: true,
-          width: 0.5
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Older American',
-          value: 27082,
-          parent: false,
-          visible: true,
-          width: 0.5
-        },
-        {
-          hasChildren: false,
-          isNotFilter: false,
-          isParent: true,
-          pctOfSet: 0,
-          name: 'Older American, Servicemember',
-          value: 9098,
-          parent: false,
-          visible: true,
-          width: 0.5
-        }
-      ]
-    },
-    subLens: '',
-    tooltip: false,
-    total: 846111
-  }
+export const trendsResults = { activeCall: '', chartType: 'line', colorMap: { Complaints: '#ADDC91', Other: '#a2a3a4', 'All other products': '#a2a3a4', 'All other companies': '#a2a3a4', 'All other values': '#a2a3a4' }, error: false, expandedTrends: [], filterNames: [ 'Credit reporting, credit repair services, or other personal consumer reports', 'Debt collection', 'Credit card or prepaid card', 'Mortgage', 'Checking or savings account', 'Incorrect information on your report', 'Problem with a credit reporting company\'s investigation into an existing problem', 'Attempts to collect debt not owed', 'Improper use of your report', 'Managing an account' ], focus: '', isLoading: false, lastDate: '2020-07-01T00:00:00.000Z', lens: 'Overview', results: { dateRangeArea: [], dateRangeBrush: [ { date: '2011-12-01T00:00:00.000Z', value: 2536 }, { date: '2012-01-01T00:00:00.000Z', value: 3230 }, { date: '2012-02-01T00:00:00.000Z', value: 3509 }, { date: '2012-03-01T00:00:00.000Z', value: 6230 }, { date: '2012-04-01T00:00:00.000Z', value: 5703 }, { date: '2012-05-01T00:00:00.000Z', value: 7617 }, { date: '2012-06-01T00:00:00.000Z', value: 7841 }, { date: '2012-07-01T00:00:00.000Z', value: 6755 }, { date: '2012-08-01T00:00:00.000Z', value: 6877 }, { date: '2012-09-01T00:00:00.000Z', value: 5493 }, { date: '2012-10-01T00:00:00.000Z', value: 6741 }, { date: '2012-11-01T00:00:00.000Z', value: 6139 }, { date: '2012-12-01T00:00:00.000Z', value: 6238 }, { date: '2013-01-01T00:00:00.000Z', value: 9741 }, { date: '2013-02-01T00:00:00.000Z', value: 8349 }, { date: '2013-03-01T00:00:00.000Z', value: 8784 }, { date: '2013-04-01T00:00:00.000Z', value: 8632 }, { date: '2013-05-01T00:00:00.000Z', value: 8170 }, { date: '2013-06-01T00:00:00.000Z', value: 8035 }, { date: '2013-07-01T00:00:00.000Z', value: 9271 }, { date: '2013-08-01T00:00:00.000Z', value: 9565 }, { date: '2013-09-01T00:00:00.000Z', value: 9636 }, { date: '2013-10-01T00:00:00.000Z', value: 9241 }, { date: '2013-11-01T00:00:00.000Z', value: 9319 }, { date: '2013-12-01T00:00:00.000Z', value: 9474 }, { date: '2014-01-01T00:00:00.000Z', value: 12617 }, { date: '2014-02-01T00:00:00.000Z', value: 13048 }, { date: '2014-03-01T00:00:00.000Z', value: 13943 }, { date: '2014-04-01T00:00:00.000Z', value: 13840 }, { date: '2014-05-01T00:00:00.000Z', value: 12167 }, { date: '2014-06-01T00:00:00.000Z', value: 12520 }, { date: '2014-07-01T00:00:00.000Z', value: 13415 }, { date: '2014-08-01T00:00:00.000Z', value: 13186 }, { date: '2014-09-01T00:00:00.000Z', value: 12465 }, { date: '2014-10-01T00:00:00.000Z', value: 12901 }, { date: '2014-11-01T00:00:00.000Z', value: 11257 }, { date: '2014-12-01T00:00:00.000Z', value: 11684 }, { date: '2015-01-01T00:00:00.000Z', value: 12627 }, { date: '2015-02-01T00:00:00.000Z', value: 12680 }, { date: '2015-03-01T00:00:00.000Z', value: 14514 }, { date: '2015-04-01T00:00:00.000Z', value: 13753 }, { date: '2015-05-01T00:00:00.000Z', value: 13682 }, { date: '2015-06-01T00:00:00.000Z', value: 14517 }, { date: '2015-07-01T00:00:00.000Z', value: 15920 }, { date: '2015-08-01T00:00:00.000Z', value: 15766 }, { date: '2015-09-01T00:00:00.000Z', value: 14336 }, { date: '2015-10-01T00:00:00.000Z', value: 14899 }, { date: '2015-11-01T00:00:00.000Z', value: 12897 }, { date: '2015-12-01T00:00:00.000Z', value: 12884 }, { date: '2016-01-01T00:00:00.000Z', value: 13840 }, { date: '2016-02-01T00:00:00.000Z', value: 14140 }, { date: '2016-03-01T00:00:00.000Z', value: 16611 }, { date: '2016-04-01T00:00:00.000Z', value: 15608 }, { date: '2016-05-01T00:00:00.000Z', value: 15517 }, { date: '2016-06-01T00:00:00.000Z', value: 16063 }, { date: '2016-07-01T00:00:00.000Z', value: 16043 }, { date: '2016-08-01T00:00:00.000Z', value: 17694 }, { date: '2016-09-01T00:00:00.000Z', value: 17584 }, { date: '2016-10-01T00:00:00.000Z', value: 17820 }, { date: '2016-11-01T00:00:00.000Z', value: 15207 }, { date: '2016-12-01T00:00:00.000Z', value: 15341 }, { date: '2017-01-01T00:00:00.000Z', value: 21006 }, { date: '2017-02-01T00:00:00.000Z', value: 18110 }, { date: '2017-03-01T00:00:00.000Z', value: 19762 }, { date: '2017-04-01T00:00:00.000Z', value: 18544 }, { date: '2017-05-01T00:00:00.000Z', value: 19304 }, { date: '2017-06-01T00:00:00.000Z', value: 18567 }, { date: '2017-07-01T00:00:00.000Z', value: 20433 }, { date: '2017-08-01T00:00:00.000Z', value: 21402 }, { date: '2017-09-01T00:00:00.000Z', value: 27357 }, { date: '2017-10-01T00:00:00.000Z', value: 20456 }, { date: '2017-11-01T00:00:00.000Z', value: 18990 }, { date: '2017-12-01T00:00:00.000Z', value: 19034 }, { date: '2018-01-01T00:00:00.000Z', value: 23650 }, { date: '2018-02-01T00:00:00.000Z', value: 21978 }, { date: '2018-03-01T00:00:00.000Z', value: 23639 }, { date: '2018-04-01T00:00:00.000Z', value: 24327 }, { date: '2018-05-01T00:00:00.000Z', value: 22339 }, { date: '2018-06-01T00:00:00.000Z', value: 20111 }, { date: '2018-07-01T00:00:00.000Z', value: 20963 }, { date: '2018-08-01T00:00:00.000Z', value: 21726 }, { date: '2018-09-01T00:00:00.000Z', value: 19072 }, { date: '2018-10-01T00:00:00.000Z', value: 21903 }, { date: '2018-11-01T00:00:00.000Z', value: 19053 }, { date: '2018-12-01T00:00:00.000Z', value: 18552 }, { date: '2019-01-01T00:00:00.000Z', value: 18934 }, { date: '2019-02-01T00:00:00.000Z', value: 20206 }, { date: '2019-03-01T00:00:00.000Z', value: 23412 }, { date: '2019-04-01T00:00:00.000Z', value: 22915 }, { date: '2019-05-01T00:00:00.000Z', value: 23850 }, { date: '2019-06-01T00:00:00.000Z', value: 23352 }, { date: '2019-07-01T00:00:00.000Z', value: 25090 }, { date: '2019-08-01T00:00:00.000Z', value: 26059 }, { date: '2019-09-01T00:00:00.000Z', value: 23575 }, { date: '2019-10-01T00:00:00.000Z', value: 25636 }, { date: '2019-11-01T00:00:00.000Z', value: 22657 }, { date: '2019-12-01T00:00:00.000Z', value: 21704 }, { date: '2020-01-01T00:00:00.000Z', value: 26413 }, { date: '2020-02-01T00:00:00.000Z', value: 25097 }, { date: '2020-03-01T00:00:00.000Z', value: 29494 }, { date: '2020-04-01T00:00:00.000Z', value: 34805 }, { date: '2020-05-01T00:00:00.000Z', value: 37146 }, { date: '2020-06-01T00:00:00.000Z', value: 32699 }, { date: '2020-07-01T00:00:00.000Z', value: 1152 } ], dateRangeLine: { dataByTopic: [ { topic: 'Complaints', topicName: 'Complaints', dashed: false, show: true, dates: [ { date: '2017-07-01T00:00:00.000Z', value: 17363 }, { date: '2017-08-01T00:00:00.000Z', value: 21402 }, { date: '2017-09-01T00:00:00.000Z', value: 27357 }, { date: '2017-10-01T00:00:00.000Z', value: 20456 }, { date: '2017-11-01T00:00:00.000Z', value: 18990 }, { date: '2017-12-01T00:00:00.000Z', value: 19034 }, { date: '2018-01-01T00:00:00.000Z', value: 23650 }, { date: '2018-02-01T00:00:00.000Z', value: 21978 }, { date: '2018-03-01T00:00:00.000Z', value: 23639 }, { date: '2018-04-01T00:00:00.000Z', value: 24327 }, { date: '2018-05-01T00:00:00.000Z', value: 22339 }, { date: '2018-06-01T00:00:00.000Z', value: 20111 }, { date: '2018-07-01T00:00:00.000Z', value: 20963 }, { date: '2018-08-01T00:00:00.000Z', value: 21726 }, { date: '2018-09-01T00:00:00.000Z', value: 19072 }, { date: '2018-10-01T00:00:00.000Z', value: 21903 }, { date: '2018-11-01T00:00:00.000Z', value: 19053 }, { date: '2018-12-01T00:00:00.000Z', value: 18552 }, { date: '2019-01-01T00:00:00.000Z', value: 18934 }, { date: '2019-02-01T00:00:00.000Z', value: 20206 }, { date: '2019-03-01T00:00:00.000Z', value: 23412 }, { date: '2019-04-01T00:00:00.000Z', value: 22915 }, { date: '2019-05-01T00:00:00.000Z', value: 23850 }, { date: '2019-06-01T00:00:00.000Z', value: 23352 }, { date: '2019-07-01T00:00:00.000Z', value: 25090 }, { date: '2019-08-01T00:00:00.000Z', value: 26059 }, { date: '2019-09-01T00:00:00.000Z', value: 23575 }, { date: '2019-10-01T00:00:00.000Z', value: 25636 }, { date: '2019-11-01T00:00:00.000Z', value: 22657 }, { date: '2019-12-01T00:00:00.000Z', value: 21704 }, { date: '2020-01-01T00:00:00.000Z', value: 26413 }, { date: '2020-02-01T00:00:00.000Z', value: 25097 }, { date: '2020-03-01T00:00:00.000Z', value: 29494 }, { date: '2020-04-01T00:00:00.000Z', value: 34805 }, { date: '2020-05-01T00:00:00.000Z', value: 37146 }, { date: '2020-06-01T00:00:00.000Z', value: 32699 }, { date: '2020-07-01T00:00:00.000Z', value: 1152 } ] } ] }, issue: [ { hasChildren: true, isNotFilter: false, isParent: true, pctOfSet: 0, name: 'Incorrect information on your report', value: 269374, parent: false, visible: true, width: 0.5 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Information belongs to someone else', value: 156308, parent: 'Incorrect information on your report', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Account status incorrect', value: 39224, parent: 'Incorrect information on your report', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Account information incorrect', value: 36552, parent: 'Incorrect information on your report', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Personal information incorrect', value: 12286, parent: 'Incorrect information on your report', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Old information reappears or never goes away', value: 9033, parent: 'Incorrect information on your report', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Public record information inaccurate', value: 8972, parent: 'Incorrect information on your report', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Information is missing that should be on the report', value: 4742, parent: 'Incorrect information on your report', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Information is incorrect', value: 677, parent: 'Incorrect information on your report', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Information that should be on the report is missing', value: 112, parent: 'Incorrect information on your report', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Incorrect information on your report ', value: 1, parent: 'Incorrect information on your report', visible: false, width: 0.4 }, { hasChildren: true, isNotFilter: false, isParent: true, pctOfSet: 0, name: 'Problem with a credit reporting company\'s investigation into an existing problem', value: 93358, parent: false, visible: true, width: 0.5 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Their investigation did not fix an error on your report', value: 65070, parent: 'Problem with a credit reporting company\'s investigation into an existing problem', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Investigation took more than 30 days', value: 9055, parent: 'Problem with a credit reporting company\'s investigation into an existing problem', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Was not notified of investigation status or results', value: 8203, parent: 'Problem with a credit reporting company\'s investigation into an existing problem', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Difficulty submitting a dispute or getting information about a dispute over the phone', value: 6179, parent: 'Problem with a credit reporting company\'s investigation into an existing problem', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Problem with personal statement of dispute', value: 4418, parent: 'Problem with a credit reporting company\'s investigation into an existing problem', visible: false, width: 0.4 }, { hasChildren: true, isNotFilter: false, isParent: true, pctOfSet: 0, name: 'Attempts to collect debt not owed', value: 67216, parent: false, visible: true, width: 0.5 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Debt is not yours', value: 34471, parent: 'Attempts to collect debt not owed', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Debt was result of identity theft', value: 16625, parent: 'Attempts to collect debt not owed', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Debt was paid', value: 13434, parent: 'Attempts to collect debt not owed', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Debt was already discharged in bankruptcy and is no longer owed', value: 2686, parent: 'Attempts to collect debt not owed', visible: false, width: 0.4 }, { hasChildren: true, isNotFilter: false, isParent: true, pctOfSet: 0, name: 'Improper use of your report', value: 45340, parent: false, visible: true, width: 0.5 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Credit inquiries on your report that you don\'t recognize', value: 30086, parent: 'Improper use of your report', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Reporting company used your report improperly', value: 14270, parent: 'Improper use of your report', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Received unsolicited financial product or insurance offers after opting out', value: 427, parent: 'Improper use of your report', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Report provided to employer without your written authorization', value: 425, parent: 'Improper use of your report', visible: false, width: 0.4 }, { hasChildren: true, isNotFilter: false, isParent: true, pctOfSet: 0, name: 'Managing an account', value: 39884, parent: false, visible: true, width: 0.5 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Deposits and withdrawals', value: 13703, parent: 'Managing an account', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Problem using a debit or ATM card', value: 6775, parent: 'Managing an account', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Banking errors', value: 5058, parent: 'Managing an account', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Funds not handled or disbursed as instructed', value: 3813, parent: 'Managing an account', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Fee problem', value: 3293, parent: 'Managing an account', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Problem accessing account', value: 2920, parent: 'Managing an account', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Problem making or receiving payments', value: 2296, parent: 'Managing an account', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Cashing a check', value: 1454, parent: 'Managing an account', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Deposits or withdrawals', value: 377, parent: 'Managing an account', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Problem with fees or penalties', value: 106, parent: 'Managing an account', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Problem with renewal', value: 89, parent: 'Managing an account', visible: false, width: 0.4 } ], product: [ { hasChildren: true, isNotFilter: false, isParent: true, pctOfSet: 0, name: 'Credit reporting, credit repair services, or other personal consumer reports', value: 418955, parent: false, visible: true, width: 0.5 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Credit reporting', value: 412529, parent: 'Credit reporting, credit repair services, or other personal consumer reports', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Other personal consumer report', value: 5116, parent: 'Credit reporting, credit repair services, or other personal consumer reports', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Credit repair services', value: 1309, parent: 'Credit reporting, credit repair services, or other personal consumer reports', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Conventional home mortgage', value: 1, parent: 'Credit reporting, credit repair services, or other personal consumer reports', visible: false, width: 0.4 }, { hasChildren: true, isNotFilter: false, isParent: true, pctOfSet: 0, name: 'Debt collection', value: 145052, parent: false, visible: true, width: 0.5 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Other debt', value: 42553, parent: 'Debt collection', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Credit card debt', value: 31480, parent: 'Debt collection', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'I do not know', value: 31271, parent: 'Debt collection', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Medical debt', value: 23049, parent: 'Debt collection', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Auto debt', value: 4734, parent: 'Debt collection', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Payday loan debt', value: 4343, parent: 'Debt collection', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Mortgage debt', value: 3120, parent: 'Debt collection', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Federal student loan debt', value: 2359, parent: 'Debt collection', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Private student loan debt', value: 2143, parent: 'Debt collection', visible: false, width: 0.4 }, { hasChildren: true, isNotFilter: false, isParent: true, pctOfSet: 0, name: 'Credit card or prepaid card', value: 76892, parent: false, visible: true, width: 0.5 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'General-purpose credit card or charge card', value: 58770, parent: 'Credit card or prepaid card', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Store credit card', value: 12346, parent: 'Credit card or prepaid card', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'General-purpose prepaid card', value: 2993, parent: 'Credit card or prepaid card', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Government benefit card', value: 2173, parent: 'Credit card or prepaid card', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Payroll card', value: 331, parent: 'Credit card or prepaid card', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Gift card', value: 270, parent: 'Credit card or prepaid card', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Student prepaid card', value: 9, parent: 'Credit card or prepaid card', visible: false, width: 0.4 }, { hasChildren: true, isNotFilter: false, isParent: true, pctOfSet: 0, name: 'Mortgage', value: 71790, parent: false, visible: true, width: 0.5 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Conventional home mortgage ', value: 42482, parent: 'Mortgage', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'FHA mortgage', value: 10308, parent: 'Mortgage', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Other type of mortgage', value: 9399, parent: 'Mortgage', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Home equity loan or line of credit (HELOC)', value: 4687, parent: 'Mortgage', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'VA mortgage', value: 3878, parent: 'Mortgage', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Reverse mortgage', value: 1036, parent: 'Mortgage', visible: false, width: 0.4 }, { hasChildren: true, isNotFilter: false, isParent: true, pctOfSet: 0, name: 'Checking or savings account', value: 63133, parent: false, visible: true, width: 0.5 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Checking account', value: 47811, parent: 'Checking or savings account', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Other banking product or service', value: 9113, parent: 'Checking or savings account', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Savings account', value: 4305, parent: 'Checking or savings account', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'CD (Certificate of Deposit)', value: 1863, parent: 'Checking or savings account', visible: false, width: 0.4 }, { hasChildren: false, isNotFilter: false, isParent: false, pctOfSet: 0, name: 'Personal line of credit', value: 41, parent: 'Checking or savings account', visible: false, width: 0.4 } ], tags: [ { hasChildren: false, isNotFilter: false, isParent: true, pctOfSet: 0, name: 'Servicemember', value: 72491, parent: false, visible: true, width: 0.5 }, { hasChildren: false, isNotFilter: false, isParent: true, pctOfSet: 0, name: 'Older American', value: 27082, parent: false, visible: true, width: 0.5 }, { hasChildren: false, isNotFilter: false, isParent: true, pctOfSet: 0, name: 'Older American, Servicemember', value: 9098, parent: false, visible: true, width: 0.5 } ] }, subLens: '', tooltip: false, total: 846111 }
 
 export const trendsLensIssueResults = {"activeCall":"","chartType":"line","colorMap":{"Other":"#a2a3a4","Incorrect information on your report":"#addc91","Problem with a credit reporting company's investigation into an existing problem":"#257675","Attempts to collect debt not owed":"#9ec4c3","Improper use of your report":"#0072ce","Managing an account":"#96c4ed","Complaints":"#ADDC91","All other products":"#a2a3a4","All other companies":"#a2a3a4","All other values":"#a2a3a4"},"error":false,"expandedTrends":[],"filterNames":["Credit reporting, credit repair services, or other personal consumer reports","Debt collection","Credit card or prepaid card","Mortgage","Checking or savings account","Incorrect information on your report","Problem with a credit reporting company's investigation into an existing problem","Attempts to collect debt not owed","Improper use of your report","Managing an account"],"focus":"","isLoading":false,"lastDate":"2020-07-01T00:00:00.000Z","lens":"Issue","results":{"dateRangeArea":[{"name":"Other","value":8382,"date":"2017-07-01T00:00:00.000Z"},{"name":"Other","value":10207,"date":"2017-08-01T00:00:00.000Z"},{"name":"Other","value":11240,"date":"2017-09-01T00:00:00.000Z"},{"name":"Other","value":9623,"date":"2017-10-01T00:00:00.000Z"},{"name":"Other","value":8813,"date":"2017-11-01T00:00:00.000Z"},{"name":"Other","value":9127,"date":"2017-12-01T00:00:00.000Z"},{"name":"Other","value":11015,"date":"2018-01-01T00:00:00.000Z"},{"name":"Other","value":9573,"date":"2018-02-01T00:00:00.000Z"},{"name":"Other","value":10571,"date":"2018-03-01T00:00:00.000Z"},{"name":"Other","value":10834,"date":"2018-04-01T00:00:00.000Z"},{"name":"Other","value":9786,"date":"2018-05-01T00:00:00.000Z"},{"name":"Other","value":8558,"date":"2018-06-01T00:00:00.000Z"},{"name":"Other","value":9058,"date":"2018-07-01T00:00:00.000Z"},{"name":"Other","value":9291,"date":"2018-08-01T00:00:00.000Z"},{"name":"Other","value":8126,"date":"2018-09-01T00:00:00.000Z"},{"name":"Other","value":9397,"date":"2018-10-01T00:00:00.000Z"},{"name":"Other","value":7693,"date":"2018-11-01T00:00:00.000Z"},{"name":"Other","value":7739,"date":"2018-12-01T00:00:00.000Z"},{"name":"Other","value":7909,"date":"2019-01-01T00:00:00.000Z"},{"name":"Other","value":8448,"date":"2019-02-01T00:00:00.000Z"},{"name":"Other","value":9547,"date":"2019-03-01T00:00:00.000Z"},{"name":"Other","value":9129,"date":"2019-04-01T00:00:00.000Z"},{"name":"Other","value":9075,"date":"2019-05-01T00:00:00.000Z"},{"name":"Other","value":8678,"date":"2019-06-01T00:00:00.000Z"},{"name":"Other","value":9415,"date":"2019-07-01T00:00:00.000Z"},{"name":"Other","value":9578,"date":"2019-08-01T00:00:00.000Z"},{"name":"Other","value":8697,"date":"2019-09-01T00:00:00.000Z"},{"name":"Other","value":9471,"date":"2019-10-01T00:00:00.000Z"},{"name":"Other","value":8092,"date":"2019-11-01T00:00:00.000Z"},{"name":"Other","value":7813,"date":"2019-12-01T00:00:00.000Z"},{"name":"Other","value":9059,"date":"2020-01-01T00:00:00.000Z"},{"name":"Other","value":8805,"date":"2020-02-01T00:00:00.000Z"},{"name":"Other","value":9186,"date":"2020-03-01T00:00:00.000Z"},{"name":"Other","value":10509,"date":"2020-04-01T00:00:00.000Z"},{"name":"Other","value":10079,"date":"2020-05-01T00:00:00.000Z"},{"name":"Other","value":8257,"date":"2020-06-01T00:00:00.000Z"},{"name":"Other","value":159,"date":"2020-07-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":3976,"date":"2017-07-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5236,"date":"2017-08-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":4491,"date":"2017-09-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":4907,"date":"2017-10-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":4476,"date":"2017-11-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":4677,"date":"2017-12-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5956,"date":"2018-01-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5754,"date":"2018-02-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":6096,"date":"2018-03-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":6459,"date":"2018-04-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5978,"date":"2018-05-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5346,"date":"2018-06-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5764,"date":"2018-07-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":6092,"date":"2018-08-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5420,"date":"2018-09-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":6351,"date":"2018-10-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5849,"date":"2018-11-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5179,"date":"2018-12-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5603,"date":"2019-01-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":5827,"date":"2019-02-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":7020,"date":"2019-03-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":6973,"date":"2019-04-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":7679,"date":"2019-05-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":7642,"date":"2019-06-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":8313,"date":"2019-07-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":8911,"date":"2019-08-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":8419,"date":"2019-09-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":8862,"date":"2019-10-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":8161,"date":"2019-11-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":7540,"date":"2019-12-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":10329,"date":"2020-01-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":9631,"date":"2020-02-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":12459,"date":"2020-03-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":15157,"date":"2020-04-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":16863,"date":"2020-05-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":15339,"date":"2020-06-01T00:00:00.000Z"},{"name":"Incorrect information on your report","value":639,"date":"2020-07-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":1639,"date":"2017-07-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2271,"date":"2017-08-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2027,"date":"2017-09-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2065,"date":"2017-10-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":1866,"date":"2017-11-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":1618,"date":"2017-12-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2159,"date":"2018-01-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2270,"date":"2018-02-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2200,"date":"2018-03-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2417,"date":"2018-04-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2317,"date":"2018-05-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2227,"date":"2018-06-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2157,"date":"2018-07-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2160,"date":"2018-08-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":1883,"date":"2018-09-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2025,"date":"2018-10-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":1925,"date":"2018-11-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2103,"date":"2018-12-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":1881,"date":"2019-01-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2299,"date":"2019-02-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2574,"date":"2019-03-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2653,"date":"2019-04-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2692,"date":"2019-05-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2887,"date":"2019-06-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2994,"date":"2019-07-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2852,"date":"2019-08-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2471,"date":"2019-09-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":3135,"date":"2019-10-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2618,"date":"2019-11-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2821,"date":"2019-12-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":3283,"date":"2020-01-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":2794,"date":"2020-02-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":3504,"date":"2020-03-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":4392,"date":"2020-04-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":5330,"date":"2020-05-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":4631,"date":"2020-06-01T00:00:00.000Z"},{"name":"Problem with a credit reporting company's investigation into an existing problem","value":218,"date":"2020-07-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1379,"date":"2017-07-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1634,"date":"2017-08-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1459,"date":"2017-09-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1630,"date":"2017-10-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1517,"date":"2017-11-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1525,"date":"2017-12-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2035,"date":"2018-01-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1861,"date":"2018-02-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2267,"date":"2018-03-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2093,"date":"2018-04-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1996,"date":"2018-05-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1947,"date":"2018-06-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1703,"date":"2018-07-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1985,"date":"2018-08-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1652,"date":"2018-09-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1842,"date":"2018-10-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1568,"date":"2018-11-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1547,"date":"2018-12-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1584,"date":"2019-01-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1683,"date":"2019-02-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2026,"date":"2019-03-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1951,"date":"2019-04-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1988,"date":"2019-05-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2028,"date":"2019-06-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1931,"date":"2019-07-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2044,"date":"2019-08-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1969,"date":"2019-09-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1981,"date":"2019-10-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1878,"date":"2019-11-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1727,"date":"2019-12-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1721,"date":"2020-01-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1940,"date":"2020-02-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2319,"date":"2020-03-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2449,"date":"2020-04-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":2363,"date":"2020-05-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":1947,"date":"2020-06-01T00:00:00.000Z"},{"name":"Attempts to collect debt not owed","value":47,"date":"2020-07-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1161,"date":"2017-07-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1102,"date":"2017-08-01T00:00:00.000Z"},{"name":"Improper use of your report","value":7186,"date":"2017-09-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1319,"date":"2017-10-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1352,"date":"2017-11-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1217,"date":"2017-12-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1392,"date":"2018-01-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1530,"date":"2018-02-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1408,"date":"2018-03-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1311,"date":"2018-04-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1070,"date":"2018-05-01T00:00:00.000Z"},{"name":"Improper use of your report","value":907,"date":"2018-06-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1101,"date":"2018-07-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1133,"date":"2018-08-01T00:00:00.000Z"},{"name":"Improper use of your report","value":919,"date":"2018-09-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1127,"date":"2018-10-01T00:00:00.000Z"},{"name":"Improper use of your report","value":934,"date":"2018-11-01T00:00:00.000Z"},{"name":"Improper use of your report","value":841,"date":"2018-12-01T00:00:00.000Z"},{"name":"Improper use of your report","value":864,"date":"2019-01-01T00:00:00.000Z"},{"name":"Improper use of your report","value":913,"date":"2019-02-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1066,"date":"2019-03-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1013,"date":"2019-04-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1216,"date":"2019-05-01T00:00:00.000Z"},{"name":"Improper use of your report","value":925,"date":"2019-06-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1272,"date":"2019-07-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1354,"date":"2019-08-01T00:00:00.000Z"},{"name":"Improper use of your report","value":929,"date":"2019-09-01T00:00:00.000Z"},{"name":"Improper use of your report","value":945,"date":"2019-10-01T00:00:00.000Z"},{"name":"Improper use of your report","value":808,"date":"2019-11-01T00:00:00.000Z"},{"name":"Improper use of your report","value":734,"date":"2019-12-01T00:00:00.000Z"},{"name":"Improper use of your report","value":858,"date":"2020-01-01T00:00:00.000Z"},{"name":"Improper use of your report","value":862,"date":"2020-02-01T00:00:00.000Z"},{"name":"Improper use of your report","value":980,"date":"2020-03-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1031,"date":"2020-04-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1286,"date":"2020-05-01T00:00:00.000Z"},{"name":"Improper use of your report","value":1236,"date":"2020-06-01T00:00:00.000Z"},{"name":"Improper use of your report","value":38,"date":"2020-07-01T00:00:00.000Z"},{"name":"Managing an account","value":826,"date":"2017-07-01T00:00:00.000Z"},{"name":"Managing an account","value":952,"date":"2017-08-01T00:00:00.000Z"},{"name":"Managing an account","value":954,"date":"2017-09-01T00:00:00.000Z"},{"name":"Managing an account","value":912,"date":"2017-10-01T00:00:00.000Z"},{"name":"Managing an account","value":966,"date":"2017-11-01T00:00:00.000Z"},{"name":"Managing an account","value":870,"date":"2017-12-01T00:00:00.000Z"},{"name":"Managing an account","value":1093,"date":"2018-01-01T00:00:00.000Z"},{"name":"Managing an account","value":990,"date":"2018-02-01T00:00:00.000Z"},{"name":"Managing an account","value":1097,"date":"2018-03-01T00:00:00.000Z"},{"name":"Managing an account","value":1213,"date":"2018-04-01T00:00:00.000Z"},{"name":"Managing an account","value":1192,"date":"2018-05-01T00:00:00.000Z"},{"name":"Managing an account","value":1126,"date":"2018-06-01T00:00:00.000Z"},{"name":"Managing an account","value":1180,"date":"2018-07-01T00:00:00.000Z"},{"name":"Managing an account","value":1065,"date":"2018-08-01T00:00:00.000Z"},{"name":"Managing an account","value":1072,"date":"2018-09-01T00:00:00.000Z"},{"name":"Managing an account","value":1161,"date":"2018-10-01T00:00:00.000Z"},{"name":"Managing an account","value":1084,"date":"2018-11-01T00:00:00.000Z"},{"name":"Managing an account","value":1143,"date":"2018-12-01T00:00:00.000Z"},{"name":"Managing an account","value":1093,"date":"2019-01-01T00:00:00.000Z"},{"name":"Managing an account","value":1036,"date":"2019-02-01T00:00:00.000Z"},{"name":"Managing an account","value":1179,"date":"2019-03-01T00:00:00.000Z"},{"name":"Managing an account","value":1196,"date":"2019-04-01T00:00:00.000Z"},{"name":"Managing an account","value":1200,"date":"2019-05-01T00:00:00.000Z"},{"name":"Managing an account","value":1192,"date":"2019-06-01T00:00:00.000Z"},{"name":"Managing an account","value":1165,"date":"2019-07-01T00:00:00.000Z"},{"name":"Managing an account","value":1320,"date":"2019-08-01T00:00:00.000Z"},{"name":"Managing an account","value":1090,"date":"2019-09-01T00:00:00.000Z"},{"name":"Managing an account","value":1242,"date":"2019-10-01T00:00:00.000Z"},{"name":"Managing an account","value":1100,"date":"2019-11-01T00:00:00.000Z"},{"name":"Managing an account","value":1069,"date":"2019-12-01T00:00:00.000Z"},{"name":"Managing an account","value":1163,"date":"2020-01-01T00:00:00.000Z"},{"name":"Managing an account","value":1065,"date":"2020-02-01T00:00:00.000Z"},{"name":"Managing an account","value":1046,"date":"2020-03-01T00:00:00.000Z"},{"name":"Managing an account","value":1267,"date":"2020-04-01T00:00:00.000Z"},{"name":"Managing an account","value":1225,"date":"2020-05-01T00:00:00.000Z"},{"name":"Managing an account","value":1289,"date":"2020-06-01T00:00:00.000Z"},{"name":"Managing an account","value":51,"date":"2020-07-01T00:00:00.000Z"}],"dateRangeBrush":[{"date":"2011-12-01T00:00:00.000Z","value":2536},{"date":"2012-01-01T00:00:00.000Z","value":3230},{"date":"2012-02-01T00:00:00.000Z","value":3509},{"date":"2012-03-01T00:00:00.000Z","value":6230},{"date":"2012-04-01T00:00:00.000Z","value":5703},{"date":"2012-05-01T00:00:00.000Z","value":7617},{"date":"2012-06-01T00:00:00.000Z","value":7841},{"date":"2012-07-01T00:00:00.000Z","value":6755},{"date":"2012-08-01T00:00:00.000Z","value":6877},{"date":"2012-09-01T00:00:00.000Z","value":5493},{"date":"2012-10-01T00:00:00.000Z","value":6741},{"date":"2012-11-01T00:00:00.000Z","value":6139},{"date":"2012-12-01T00:00:00.000Z","value":6238},{"date":"2013-01-01T00:00:00.000Z","value":9741},{"date":"2013-02-01T00:00:00.000Z","value":8349},{"date":"2013-03-01T00:00:00.000Z","value":8784},{"date":"2013-04-01T00:00:00.000Z","value":8632},{"date":"2013-05-01T00:00:00.000Z","value":8170},{"date":"2013-06-01T00:00:00.000Z","value":8035},{"date":"2013-07-01T00:00:00.000Z","value":9271},{"date":"2013-08-01T00:00:00.000Z","value":9565},{"date":"2013-09-01T00:00:00.000Z","value":9636},{"date":"2013-10-01T00:00:00.000Z","value":9241},{"date":"2013-11-01T00:00:00.000Z","value":9319},{"date":"2013-12-01T00:00:00.000Z","value":9474},{"date":"2014-01-01T00:00:00.000Z","value":12617},{"date":"2014-02-01T00:00:00.000Z","value":13048},{"date":"2014-03-01T00:00:00.000Z","value":13943},{"date":"2014-04-01T00:00:00.000Z","value":13840},{"date":"2014-05-01T00:00:00.000Z","value":12167},{"date":"2014-06-01T00:00:00.000Z","value":12520},{"date":"2014-07-01T00:00:00.000Z","value":13415},{"date":"2014-08-01T00:00:00.000Z","value":13186},{"date":"2014-09-01T00:00:00.000Z","value":12465},{"date":"2014-10-01T00:00:00.000Z","value":12901},{"date":"2014-11-01T00:00:00.000Z","value":11257},{"date":"2014-12-01T00:00:00.000Z","value":11684},{"date":"2015-01-01T00:00:00.000Z","value":12627},{"date":"2015-02-01T00:00:00.000Z","value":12680},{"date":"2015-03-01T00:00:00.000Z","value":14514},{"date":"2015-04-01T00:00:00.000Z","value":13753},{"date":"2015-05-01T00:00:00.000Z","value":13682},{"date":"2015-06-01T00:00:00.000Z","value":14517},{"date":"2015-07-01T00:00:00.000Z","value":15920},{"date":"2015-08-01T00:00:00.000Z","value":15766},{"date":"2015-09-01T00:00:00.000Z","value":14336},{"date":"2015-10-01T00:00:00.000Z","value":14899},{"date":"2015-11-01T00:00:00.000Z","value":12897},{"date":"2015-12-01T00:00:00.000Z","value":12884},{"date":"2016-01-01T00:00:00.000Z","value":13840},{"date":"2016-02-01T00:00:00.000Z","value":14140},{"date":"2016-03-01T00:00:00.000Z","value":16611},{"date":"2016-04-01T00:00:00.000Z","value":15608},{"date":"2016-05-01T00:00:00.000Z","value":15517},{"date":"2016-06-01T00:00:00.000Z","value":16063},{"date":"2016-07-01T00:00:00.000Z","value":16043},{"date":"2016-08-01T00:00:00.000Z","value":17694},{"date":"2016-09-01T00:00:00.000Z","value":17584},{"date":"2016-10-01T00:00:00.000Z","value":17820},{"date":"2016-11-01T00:00:00.000Z","value":15207},{"date":"2016-12-01T00:00:00.000Z","value":15341},{"date":"2017-01-01T00:00:00.000Z","value":21006},{"date":"2017-02-01T00:00:00.000Z","value":18110},{"date":"2017-03-01T00:00:00.000Z","value":19762},{"date":"2017-04-01T00:00:00.000Z","value":18544},{"date":"2017-05-01T00:00:00.000Z","value":19304},{"date":"2017-06-01T00:00:00.000Z","value":18567},{"date":"2017-07-01T00:00:00.000Z","value":20433},{"date":"2017-08-01T00:00:00.000Z","value":21402},{"date":"2017-09-01T00:00:00.000Z","value":27357},{"date":"2017-10-01T00:00:00.000Z","value":20456},{"date":"2017-11-01T00:00:00.000Z","value":18990},{"date":"2017-12-01T00:00:00.000Z","value":19034},{"date":"2018-01-01T00:00:00.000Z","value":23650},{"date":"2018-02-01T00:00:00.000Z","value":21978},{"date":"2018-03-01T00:00:00.000Z","value":23639},{"date":"2018-04-01T00:00:00.000Z","value":24327},{"date":"2018-05-01T00:00:00.000Z","value":22339},{"date":"2018-06-01T00:00:00.000Z","value":20111},{"date":"2018-07-01T00:00:00.000Z","value":20963},{"date":"2018-08-01T00:00:00.000Z","value":21726},{"date":"2018-09-01T00:00:00.000Z","value":19072},{"date":"2018-10-01T00:00:00.000Z","value":21903},{"date":"2018-11-01T00:00:00.000Z","value":19053},{"date":"2018-12-01T00:00:00.000Z","value":18552},{"date":"2019-01-01T00:00:00.000Z","value":18934},{"date":"2019-02-01T00:00:00.000Z","value":20206},{"date":"2019-03-01T00:00:00.000Z","value":23412},{"date":"2019-04-01T00:00:00.000Z","value":22915},{"date":"2019-05-01T00:00:00.000Z","value":23850},{"date":"2019-06-01T00:00:00.000Z","value":23352},{"date":"2019-07-01T00:00:00.000Z","value":25090},{"date":"2019-08-01T00:00:00.000Z","value":26059},{"date":"2019-09-01T00:00:00.000Z","value":23575},{"date":"2019-10-01T00:00:00.000Z","value":25636},{"date":"2019-11-01T00:00:00.000Z","value":22657},{"date":"2019-12-01T00:00:00.000Z","value":21704},{"date":"2020-01-01T00:00:00.000Z","value":26413},{"date":"2020-02-01T00:00:00.000Z","value":25097},{"date":"2020-03-01T00:00:00.000Z","value":29494},{"date":"2020-04-01T00:00:00.000Z","value":34805},{"date":"2020-05-01T00:00:00.000Z","value":37146},{"date":"2020-06-01T00:00:00.000Z","value":32699},{"date":"2020-07-01T00:00:00.000Z","value":1152}],"dateRangeLine":{"dataByTopic":[{"topic":"Incorrect information on your report","topicName":"Incorrect information on your report","dashed":false,"show":true,"dates":[{"name":"Incorrect information on your report","date":"2017-07-01T00:00:00.000Z","value":3976},{"name":"Incorrect information on your report","date":"2017-08-01T00:00:00.000Z","value":5236},{"name":"Incorrect information on your report","date":"2017-09-01T00:00:00.000Z","value":4491},{"name":"Incorrect information on your report","date":"2017-10-01T00:00:00.000Z","value":4907},{"name":"Incorrect information on your report","date":"2017-11-01T00:00:00.000Z","value":4476},{"name":"Incorrect information on your report","date":"2017-12-01T00:00:00.000Z","value":4677},{"name":"Incorrect information on your report","date":"2018-01-01T00:00:00.000Z","value":5956},{"name":"Incorrect information on your report","date":"2018-02-01T00:00:00.000Z","value":5754},{"name":"Incorrect information on your report","date":"2018-03-01T00:00:00.000Z","value":6096},{"name":"Incorrect information on your report","date":"2018-04-01T00:00:00.000Z","value":6459},{"name":"Incorrect information on your report","date":"2018-05-01T00:00:00.000Z","value":5978},{"name":"Incorrect information on your report","date":"2018-06-01T00:00:00.000Z","value":5346},{"name":"Incorrect information on your report","date":"2018-07-01T00:00:00.000Z","value":5764},{"name":"Incorrect information on your report","date":"2018-08-01T00:00:00.000Z","value":6092},{"name":"Incorrect information on your report","date":"2018-09-01T00:00:00.000Z","value":5420},{"name":"Incorrect information on your report","date":"2018-10-01T00:00:00.000Z","value":6351},{"name":"Incorrect information on your report","date":"2018-11-01T00:00:00.000Z","value":5849},{"name":"Incorrect information on your report","date":"2018-12-01T00:00:00.000Z","value":5179},{"name":"Incorrect information on your report","date":"2019-01-01T00:00:00.000Z","value":5603},{"name":"Incorrect information on your report","date":"2019-02-01T00:00:00.000Z","value":5827},{"name":"Incorrect information on your report","date":"2019-03-01T00:00:00.000Z","value":7020},{"name":"Incorrect information on your report","date":"2019-04-01T00:00:00.000Z","value":6973},{"name":"Incorrect information on your report","date":"2019-05-01T00:00:00.000Z","value":7679},{"name":"Incorrect information on your report","date":"2019-06-01T00:00:00.000Z","value":7642},{"name":"Incorrect information on your report","date":"2019-07-01T00:00:00.000Z","value":8313},{"name":"Incorrect information on your report","date":"2019-08-01T00:00:00.000Z","value":8911},{"name":"Incorrect information on your report","date":"2019-09-01T00:00:00.000Z","value":8419},{"name":"Incorrect information on your report","date":"2019-10-01T00:00:00.000Z","value":8862},{"name":"Incorrect information on your report","date":"2019-11-01T00:00:00.000Z","value":8161},{"name":"Incorrect information on your report","date":"2019-12-01T00:00:00.000Z","value":7540},{"name":"Incorrect information on your report","date":"2020-01-01T00:00:00.000Z","value":10329},{"name":"Incorrect information on your report","date":"2020-02-01T00:00:00.000Z","value":9631},{"name":"Incorrect information on your report","date":"2020-03-01T00:00:00.000Z","value":12459},{"name":"Incorrect information on your report","date":"2020-04-01T00:00:00.000Z","value":15157},{"name":"Incorrect information on your report","date":"2020-05-01T00:00:00.000Z","value":16863},{"name":"Incorrect information on your report","date":"2020-06-01T00:00:00.000Z","value":15339},{"name":"Incorrect information on your report","date":"2020-07-01T00:00:00.000Z","value":639}]},{"topic":"Problem with a credit reporting company's investigation into an existing problem","topicName":"Problem with a credit reporting company's investigation into an existing problem","dashed":false,"show":true,"dates":[{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2017-07-01T00:00:00.000Z","value":1639},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2017-08-01T00:00:00.000Z","value":2271},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2017-09-01T00:00:00.000Z","value":2027},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2017-10-01T00:00:00.000Z","value":2065},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2017-11-01T00:00:00.000Z","value":1866},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2017-12-01T00:00:00.000Z","value":1618},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-01-01T00:00:00.000Z","value":2159},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-02-01T00:00:00.000Z","value":2270},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-03-01T00:00:00.000Z","value":2200},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-04-01T00:00:00.000Z","value":2417},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-05-01T00:00:00.000Z","value":2317},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-06-01T00:00:00.000Z","value":2227},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-07-01T00:00:00.000Z","value":2157},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-08-01T00:00:00.000Z","value":2160},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-09-01T00:00:00.000Z","value":1883},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-10-01T00:00:00.000Z","value":2025},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-11-01T00:00:00.000Z","value":1925},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2018-12-01T00:00:00.000Z","value":2103},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-01-01T00:00:00.000Z","value":1881},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-02-01T00:00:00.000Z","value":2299},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-03-01T00:00:00.000Z","value":2574},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-04-01T00:00:00.000Z","value":2653},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-05-01T00:00:00.000Z","value":2692},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-06-01T00:00:00.000Z","value":2887},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-07-01T00:00:00.000Z","value":2994},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-08-01T00:00:00.000Z","value":2852},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-09-01T00:00:00.000Z","value":2471},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-10-01T00:00:00.000Z","value":3135},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-11-01T00:00:00.000Z","value":2618},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2019-12-01T00:00:00.000Z","value":2821},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2020-01-01T00:00:00.000Z","value":3283},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2020-02-01T00:00:00.000Z","value":2794},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2020-03-01T00:00:00.000Z","value":3504},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2020-04-01T00:00:00.000Z","value":4392},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2020-05-01T00:00:00.000Z","value":5330},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2020-06-01T00:00:00.000Z","value":4631},{"name":"Problem with a credit reporting company's investigation into an existing problem","date":"2020-07-01T00:00:00.000Z","value":218}]},{"topic":"Attempts to collect debt not owed","topicName":"Attempts to collect debt not owed","dashed":false,"show":true,"dates":[{"name":"Attempts to collect debt not owed","date":"2017-07-01T00:00:00.000Z","value":1379},{"name":"Attempts to collect debt not owed","date":"2017-08-01T00:00:00.000Z","value":1634},{"name":"Attempts to collect debt not owed","date":"2017-09-01T00:00:00.000Z","value":1459},{"name":"Attempts to collect debt not owed","date":"2017-10-01T00:00:00.000Z","value":1630},{"name":"Attempts to collect debt not owed","date":"2017-11-01T00:00:00.000Z","value":1517},{"name":"Attempts to collect debt not owed","date":"2017-12-01T00:00:00.000Z","value":1525},{"name":"Attempts to collect debt not owed","date":"2018-01-01T00:00:00.000Z","value":2035},{"name":"Attempts to collect debt not owed","date":"2018-02-01T00:00:00.000Z","value":1861},{"name":"Attempts to collect debt not owed","date":"2018-03-01T00:00:00.000Z","value":2267},{"name":"Attempts to collect debt not owed","date":"2018-04-01T00:00:00.000Z","value":2093},{"name":"Attempts to collect debt not owed","date":"2018-05-01T00:00:00.000Z","value":1996},{"name":"Attempts to collect debt not owed","date":"2018-06-01T00:00:00.000Z","value":1947},{"name":"Attempts to collect debt not owed","date":"2018-07-01T00:00:00.000Z","value":1703},{"name":"Attempts to collect debt not owed","date":"2018-08-01T00:00:00.000Z","value":1985},{"name":"Attempts to collect debt not owed","date":"2018-09-01T00:00:00.000Z","value":1652},{"name":"Attempts to collect debt not owed","date":"2018-10-01T00:00:00.000Z","value":1842},{"name":"Attempts to collect debt not owed","date":"2018-11-01T00:00:00.000Z","value":1568},{"name":"Attempts to collect debt not owed","date":"2018-12-01T00:00:00.000Z","value":1547},{"name":"Attempts to collect debt not owed","date":"2019-01-01T00:00:00.000Z","value":1584},{"name":"Attempts to collect debt not owed","date":"2019-02-01T00:00:00.000Z","value":1683},{"name":"Attempts to collect debt not owed","date":"2019-03-01T00:00:00.000Z","value":2026},{"name":"Attempts to collect debt not owed","date":"2019-04-01T00:00:00.000Z","value":1951},{"name":"Attempts to collect debt not owed","date":"2019-05-01T00:00:00.000Z","value":1988},{"name":"Attempts to collect debt not owed","date":"2019-06-01T00:00:00.000Z","value":2028},{"name":"Attempts to collect debt not owed","date":"2019-07-01T00:00:00.000Z","value":1931},{"name":"Attempts to collect debt not owed","date":"2019-08-01T00:00:00.000Z","value":2044},{"name":"Attempts to collect debt not owed","date":"2019-09-01T00:00:00.000Z","value":1969},{"name":"Attempts to collect debt not owed","date":"2019-10-01T00:00:00.000Z","value":1981},{"name":"Attempts to collect debt not owed","date":"2019-11-01T00:00:00.000Z","value":1878},{"name":"Attempts to collect debt not owed","date":"2019-12-01T00:00:00.000Z","value":1727},{"name":"Attempts to collect debt not owed","date":"2020-01-01T00:00:00.000Z","value":1721},{"name":"Attempts to collect debt not owed","date":"2020-02-01T00:00:00.000Z","value":1940},{"name":"Attempts to collect debt not owed","date":"2020-03-01T00:00:00.000Z","value":2319},{"name":"Attempts to collect debt not owed","date":"2020-04-01T00:00:00.000Z","value":2449},{"name":"Attempts to collect debt not owed","date":"2020-05-01T00:00:00.000Z","value":2363},{"name":"Attempts to collect debt not owed","date":"2020-06-01T00:00:00.000Z","value":1947},{"name":"Attempts to collect debt not owed","date":"2020-07-01T00:00:00.000Z","value":47}]},{"topic":"Improper use of your report","topicName":"Improper use of your report","dashed":false,"show":true,"dates":[{"name":"Improper use of your report","date":"2017-07-01T00:00:00.000Z","value":1161},{"name":"Improper use of your report","date":"2017-08-01T00:00:00.000Z","value":1102},{"name":"Improper use of your report","date":"2017-09-01T00:00:00.000Z","value":7186},{"name":"Improper use of your report","date":"2017-10-01T00:00:00.000Z","value":1319},{"name":"Improper use of your report","date":"2017-11-01T00:00:00.000Z","value":1352},{"name":"Improper use of your report","date":"2017-12-01T00:00:00.000Z","value":1217},{"name":"Improper use of your report","date":"2018-01-01T00:00:00.000Z","value":1392},{"name":"Improper use of your report","date":"2018-02-01T00:00:00.000Z","value":1530},{"name":"Improper use of your report","date":"2018-03-01T00:00:00.000Z","value":1408},{"name":"Improper use of your report","date":"2018-04-01T00:00:00.000Z","value":1311},{"name":"Improper use of your report","date":"2018-05-01T00:00:00.000Z","value":1070},{"name":"Improper use of your report","date":"2018-06-01T00:00:00.000Z","value":907},{"name":"Improper use of your report","date":"2018-07-01T00:00:00.000Z","value":1101},{"name":"Improper use of your report","date":"2018-08-01T00:00:00.000Z","value":1133},{"name":"Improper use of your report","date":"2018-09-01T00:00:00.000Z","value":919},{"name":"Improper use of your report","date":"2018-10-01T00:00:00.000Z","value":1127},{"name":"Improper use of your report","date":"2018-11-01T00:00:00.000Z","value":934},{"name":"Improper use of your report","date":"2018-12-01T00:00:00.000Z","value":841},{"name":"Improper use of your report","date":"2019-01-01T00:00:00.000Z","value":864},{"name":"Improper use of your report","date":"2019-02-01T00:00:00.000Z","value":913},{"name":"Improper use of your report","date":"2019-03-01T00:00:00.000Z","value":1066},{"name":"Improper use of your report","date":"2019-04-01T00:00:00.000Z","value":1013},{"name":"Improper use of your report","date":"2019-05-01T00:00:00.000Z","value":1216},{"name":"Improper use of your report","date":"2019-06-01T00:00:00.000Z","value":925},{"name":"Improper use of your report","date":"2019-07-01T00:00:00.000Z","value":1272},{"name":"Improper use of your report","date":"2019-08-01T00:00:00.000Z","value":1354},{"name":"Improper use of your report","date":"2019-09-01T00:00:00.000Z","value":929},{"name":"Improper use of your report","date":"2019-10-01T00:00:00.000Z","value":945},{"name":"Improper use of your report","date":"2019-11-01T00:00:00.000Z","value":808},{"name":"Improper use of your report","date":"2019-12-01T00:00:00.000Z","value":734},{"name":"Improper use of your report","date":"2020-01-01T00:00:00.000Z","value":858},{"name":"Improper use of your report","date":"2020-02-01T00:00:00.000Z","value":862},{"name":"Improper use of your report","date":"2020-03-01T00:00:00.000Z","value":980},{"name":"Improper use of your report","date":"2020-04-01T00:00:00.000Z","value":1031},{"name":"Improper use of your report","date":"2020-05-01T00:00:00.000Z","value":1286},{"name":"Improper use of your report","date":"2020-06-01T00:00:00.000Z","value":1236},{"name":"Improper use of your report","date":"2020-07-01T00:00:00.000Z","value":38}]},{"topic":"Managing an account","topicName":"Managing an account","dashed":false,"show":true,"dates":[{"name":"Managing an account","date":"2017-07-01T00:00:00.000Z","value":826},{"name":"Managing an account","date":"2017-08-01T00:00:00.000Z","value":952},{"name":"Managing an account","date":"2017-09-01T00:00:00.000Z","value":954},{"name":"Managing an account","date":"2017-10-01T00:00:00.000Z","value":912},{"name":"Managing an account","date":"2017-11-01T00:00:00.000Z","value":966},{"name":"Managing an account","date":"2017-12-01T00:00:00.000Z","value":870},{"name":"Managing an account","date":"2018-01-01T00:00:00.000Z","value":1093},{"name":"Managing an account","date":"2018-02-01T00:00:00.000Z","value":990},{"name":"Managing an account","date":"2018-03-01T00:00:00.000Z","value":1097},{"name":"Managing an account","date":"2018-04-01T00:00:00.000Z","value":1213},{"name":"Managing an account","date":"2018-05-01T00:00:00.000Z","value":1192},{"name":"Managing an account","date":"2018-06-01T00:00:00.000Z","value":1126},{"name":"Managing an account","date":"2018-07-01T00:00:00.000Z","value":1180},{"name":"Managing an account","date":"2018-08-01T00:00:00.000Z","value":1065},{"name":"Managing an account","date":"2018-09-01T00:00:00.000Z","value":1072},{"name":"Managing an account","date":"2018-10-01T00:00:00.000Z","value":1161},{"name":"Managing an account","date":"2018-11-01T00:00:00.000Z","value":1084},{"name":"Managing an account","date":"2018-12-01T00:00:00.000Z","value":1143},{"name":"Managing an account","date":"2019-01-01T00:00:00.000Z","value":1093},{"name":"Managing an account","date":"2019-02-01T00:00:00.000Z","value":1036},{"name":"Managing an account","date":"2019-03-01T00:00:00.000Z","value":1179},{"name":"Managing an account","date":"2019-04-01T00:00:00.000Z","value":1196},{"name":"Managing an account","date":"2019-05-01T00:00:00.000Z","value":1200},{"name":"Managing an account","date":"2019-06-01T00:00:00.000Z","value":1192},{"name":"Managing an account","date":"2019-07-01T00:00:00.000Z","value":1165},{"name":"Managing an account","date":"2019-08-01T00:00:00.000Z","value":1320},{"name":"Managing an account","date":"2019-09-01T00:00:00.000Z","value":1090},{"name":"Managing an account","date":"2019-10-01T00:00:00.000Z","value":1242},{"name":"Managing an account","date":"2019-11-01T00:00:00.000Z","value":1100},{"name":"Managing an account","date":"2019-12-01T00:00:00.000Z","value":1069},{"name":"Managing an account","date":"2020-01-01T00:00:00.000Z","value":1163},{"name":"Managing an account","date":"2020-02-01T00:00:00.000Z","value":1065},{"name":"Managing an account","date":"2020-03-01T00:00:00.000Z","value":1046},{"name":"Managing an account","date":"2020-04-01T00:00:00.000Z","value":1267},{"name":"Managing an account","date":"2020-05-01T00:00:00.000Z","value":1225},{"name":"Managing an account","date":"2020-06-01T00:00:00.000Z","value":1289},{"name":"Managing an account","date":"2020-07-01T00:00:00.000Z","value":51}]}]},"issue":[{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Incorrect information on your report","value":269374,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Information belongs to someone else","value":156308,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Account status incorrect","value":39224,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Account information incorrect","value":36552,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Personal information incorrect","value":12286,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Old information reappears or never goes away","value":9033,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Public record information inaccurate","value":8972,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Information is missing that should be on the report","value":4742,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Information is incorrect","value":677,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Information that should be on the report is missing","value":112,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Incorrect information on your report ","value":1,"parent":"Incorrect information on your report","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Incorrect information on your report","name":"More Information about Incorrect information on your report","splitterText":"More Information about Incorrect information on your report","value":"","parent":"Incorrect information on your report","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Problem with a credit reporting company's investigation into an existing problem","value":93358,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Their investigation did not fix an error on your report","value":65070,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Investigation took more than 30 days","value":9055,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Was not notified of investigation status or results","value":8203,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Difficulty submitting a dispute or getting information about a dispute over the phone","value":6179,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Problem with personal statement of dispute","value":4418,"parent":"Problem with a credit reporting company's investigation into an existing problem","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Problem with a credit reporting company's investigation into an existing problem","name":"More Information about Problem with a credit reporting company's investigation into an existing problem","splitterText":"More Information about Problem with a credit reporting company's investigation into an existing problem","value":"","parent":"Problem with a credit reporting company's investigation into an existing problem","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Attempts to collect debt not owed","value":67216,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Debt is not yours","value":34471,"parent":"Attempts to collect debt not owed","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Debt was result of identity theft","value":16625,"parent":"Attempts to collect debt not owed","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Debt was paid","value":13434,"parent":"Attempts to collect debt not owed","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Debt was already discharged in bankruptcy and is no longer owed","value":2686,"parent":"Attempts to collect debt not owed","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Attempts to collect debt not owed","name":"More Information about Attempts to collect debt not owed","splitterText":"More Information about Attempts to collect debt not owed","value":"","parent":"Attempts to collect debt not owed","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Improper use of your report","value":45340,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Credit inquiries on your report that you don't recognize","value":30086,"parent":"Improper use of your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Reporting company used your report improperly","value":14270,"parent":"Improper use of your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Received unsolicited financial product or insurance offers after opting out","value":427,"parent":"Improper use of your report","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Report provided to employer without your written authorization","value":425,"parent":"Improper use of your report","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Improper use of your report","name":"More Information about Improper use of your report","splitterText":"More Information about Improper use of your report","value":"","parent":"Improper use of your report","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Managing an account","value":39884,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Deposits and withdrawals","value":13703,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Problem using a debit or ATM card","value":6775,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Banking errors","value":5058,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Funds not handled or disbursed as instructed","value":3813,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Fee problem","value":3293,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Problem accessing account","value":2920,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Problem making or receiving payments","value":2296,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Cashing a check","value":1454,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Deposits or withdrawals","value":377,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Problem with fees or penalties","value":106,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Problem with renewal","value":89,"parent":"Managing an account","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Managing an account","name":"More Information about Managing an account","splitterText":"More Information about Managing an account","value":"","parent":"Managing an account","pctOfSet":"","width":0.3,"visible":false}],"product":[{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Credit reporting, credit repair services, or other personal consumer reports","value":418955,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Credit reporting","value":412529,"parent":"Credit reporting, credit repair services, or other personal consumer reports","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Other personal consumer report","value":5116,"parent":"Credit reporting, credit repair services, or other personal consumer reports","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Credit repair services","value":1309,"parent":"Credit reporting, credit repair services, or other personal consumer reports","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Conventional home mortgage","value":1,"parent":"Credit reporting, credit repair services, or other personal consumer reports","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Credit reporting, credit repair services, or other personal consumer reports","name":"More Information about Credit reporting, credit repair services, or other personal consumer reports","splitterText":"More Information about Credit reporting, credit repair services, or other personal consumer reports","value":"","parent":"Credit reporting, credit repair services, or other personal consumer reports","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Debt collection","value":145052,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Other debt","value":42553,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Credit card debt","value":31480,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"I do not know","value":31271,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Medical debt","value":23049,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Auto debt","value":4734,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Payday loan debt","value":4343,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Mortgage debt","value":3120,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Federal student loan debt","value":2359,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Private student loan debt","value":2143,"parent":"Debt collection","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Debt collection","name":"More Information about Debt collection","splitterText":"More Information about Debt collection","value":"","parent":"Debt collection","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Credit card or prepaid card","value":76892,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"General-purpose credit card or charge card","value":58770,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Store credit card","value":12346,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"General-purpose prepaid card","value":2993,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Government benefit card","value":2173,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Payroll card","value":331,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Gift card","value":270,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Student prepaid card","value":9,"parent":"Credit card or prepaid card","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Credit card or prepaid card","name":"More Information about Credit card or prepaid card","splitterText":"More Information about Credit card or prepaid card","value":"","parent":"Credit card or prepaid card","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Mortgage","value":71790,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Conventional home mortgage ","value":42482,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"FHA mortgage","value":10308,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Other type of mortgage","value":9399,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Home equity loan or line of credit (HELOC)","value":4687,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"VA mortgage","value":3878,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Reverse mortgage","value":1036,"parent":"Mortgage","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Mortgage","name":"More Information about Mortgage","splitterText":"More Information about Mortgage","value":"","parent":"Mortgage","pctOfSet":"","width":0.3,"visible":false},{"hasChildren":true,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Checking or savings account","value":63133,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Checking account","value":47811,"parent":"Checking or savings account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Other banking product or service","value":9113,"parent":"Checking or savings account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Savings account","value":4305,"parent":"Checking or savings account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"CD (Certificate of Deposit)","value":1863,"parent":"Checking or savings account","visible":false,"width":0.4},{"hasChildren":false,"isNotFilter":false,"isParent":false,"pctOfSet":0,"name":"Personal line of credit","value":41,"parent":"Checking or savings account","visible":false,"width":0.4},{"hasChildren":false,"isParent":false,"key":"More Information about Checking or savings account","name":"More Information about Checking or savings account","splitterText":"More Information about Checking or savings account","value":"","parent":"Checking or savings account","pctOfSet":"","width":0.3,"visible":false}],"tags":[{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Servicemember","value":72491,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Older American","value":27082,"parent":false,"visible":true,"width":0.5},{"hasChildren":false,"isNotFilter":false,"isParent":true,"pctOfSet":0,"name":"Older American, Servicemember","value":9098,"parent":false,"visible":true,"width":0.5}]},"subLens":"","tooltip":false,"total":846111}

From c29fbe0a89e29423dc9bd87dc4e6d3c551d18e7f Mon Sep 17 00:00:00 2001
From: Richard Dinh <richard.dinh@cfpb.gov>
Date: Tue, 7 Jul 2020 23:45:28 -0400
Subject: [PATCH 30/34] more test coverage

---
 .../__tests__/ExternalTooltip.spec.jsx        |  15 ++
 .../ExternalTooltip.spec.jsx.snap             | 220 ++++++++++++++++++
 2 files changed, 235 insertions(+)

diff --git a/src/components/__tests__/ExternalTooltip.spec.jsx b/src/components/__tests__/ExternalTooltip.spec.jsx
index 6754cf748..3c67f84d8 100644
--- a/src/components/__tests__/ExternalTooltip.spec.jsx
+++ b/src/components/__tests__/ExternalTooltip.spec.jsx
@@ -65,6 +65,21 @@ describe( 'initial state', () => {
     const tree = target.toJSON()
     expect( tree ).toMatchSnapshot()
   } )
+
+  it( 'renders "Other" without crashing', () => {
+    tooltip.values.push( { colorIndex: 5, name: 'Other', value: 900 } )
+    const target = setupSnapshot( query, tooltip )
+    const tree = target.toJSON()
+    expect( tree ).toMatchSnapshot()
+  } )
+
+  it( 'renders focus without crashing', () => {
+    query.focus = 'foobar'
+    const target = setupSnapshot( query, tooltip )
+    const tree = target.toJSON()
+    expect( tree ).toMatchSnapshot()
+  } )
+
 } )
 
 describe( 'buttons', () => {
diff --git a/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap b/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
index de9d72a48..cc60385b3 100644
--- a/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/ExternalTooltip.spec.jsx.snap
@@ -1,5 +1,126 @@
 // Jest Snapshot v1, https://goo.gl/fbAQLP
 
+exports[`initial state renders "Other" without crashing 1`] = `
+<section
+  className="tooltip-container u-clearfix "
+>
+  <p
+    className="a-micro-copy"
+  >
+    <span
+      className="heading"
+    >
+      Date Range:
+    </span>
+    <span
+      className="date"
+    >
+      1/1/1900 - 1/1/2000
+    </span>
+  </p>
+  <div>
+    <ul
+      className="tooltip-ul"
+    >
+      <li
+        className="color__1"
+      >
+        <span
+          className="u-left a-btn a-btn__link"
+          id="focus-foo"
+          onClick={[Function]}
+        >
+          foo
+        </span>
+        <span
+          className="u-right"
+        >
+          1,000
+        </span>
+      </li>
+      <li
+        className="color__2"
+      >
+        <span
+          className="u-left a-btn a-btn__link"
+          id="focus-bar"
+          onClick={[Function]}
+        >
+          bar
+        </span>
+        <span
+          className="u-right"
+        >
+          1,000
+        </span>
+      </li>
+      <li
+        className="color__3"
+      >
+        <span
+          className="u-left a-btn a-btn__link"
+          id="focus-allother"
+          onClick={[Function]}
+        >
+          All other
+        </span>
+        <span
+          className="u-right"
+        >
+          900
+        </span>
+      </li>
+      <li
+        className="color__4"
+      >
+        <span
+          className="u-left a-btn a-btn__link"
+          id="focus-eatatjoes"
+          onClick={[Function]}
+        >
+          Eat at Joe's
+        </span>
+        <span
+          className="u-right"
+        >
+          1,000
+        </span>
+      </li>
+      <li
+        className="color__5"
+      >
+        <span
+          className="u-left"
+        >
+          All other 
+        </span>
+        <span
+          className="u-right"
+        >
+          900
+        </span>
+      </li>
+    </ul>
+    <ul
+      className="m-list__unstyled tooltip-ul total"
+    >
+      <li>
+        <span
+          className="u-left"
+        >
+          Total
+        </span>
+        <span
+          className="u-right"
+        >
+          2,900
+        </span>
+      </li>
+    </ul>
+  </div>
+</section>
+`;
+
 exports[`initial state renders Company typehead without crashing 1`] = `
 <section
   className="tooltip-container u-clearfix "
@@ -202,6 +323,105 @@ exports[`initial state renders Company typehead without crashing 1`] = `
 </section>
 `;
 
+exports[`initial state renders focus without crashing 1`] = `
+<section
+  className="tooltip-container u-clearfix focus"
+>
+  <p
+    className="a-micro-copy"
+  >
+    <span
+      className="heading"
+    >
+      Date Range:
+    </span>
+    <span
+      className="date"
+    >
+      1/1/1900 - 1/1/2000
+    </span>
+  </p>
+  <div>
+    <ul
+      className="tooltip-ul"
+    >
+      <li
+        className="color__1"
+      >
+        <span
+          className="u-left"
+        >
+          foo
+        </span>
+        <span
+          className="u-right"
+        >
+          1,000
+        </span>
+      </li>
+      <li
+        className="color__2"
+      >
+        <span
+          className="u-left"
+        >
+          bar
+        </span>
+        <span
+          className="u-right"
+        >
+          1,000
+        </span>
+      </li>
+      <li
+        className="color__3"
+      >
+        <span
+          className="u-left"
+        >
+          All other
+        </span>
+        <span
+          className="u-right"
+        >
+          900
+        </span>
+      </li>
+      <li
+        className="color__4"
+      >
+        <span
+          className="u-left"
+        >
+          Eat at Joe's
+        </span>
+        <span
+          className="u-right"
+        >
+          1,000
+        </span>
+      </li>
+    </ul>
+    <ul
+      className="m-list__unstyled tooltip-ul total"
+    >
+      <li>
+        <span
+          className="u-left"
+        >
+          Total
+        </span>
+        <span
+          className="u-right"
+        >
+          2,900
+        </span>
+      </li>
+    </ul>
+  </div>
+</section>
+`;
+
 exports[`initial state renders nothing without crashing 1`] = `null`;
 
 exports[`initial state renders without crashing 1`] = `

From 2667cf70776fc1185c4e7b67d8b3dce22547f262 Mon Sep 17 00:00:00 2001
From: Richard Dinh <richard.dinh@cfpb.gov>
Date: Wed, 8 Jul 2020 06:52:36 -0400
Subject: [PATCH 31/34] revert line to force rebuild test

---
 src/utils/trends.jsx | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/utils/trends.jsx b/src/utils/trends.jsx
index e17c18847..91dda670f 100644
--- a/src/utils/trends.jsx
+++ b/src/utils/trends.jsx
@@ -42,8 +42,7 @@ export const pruneOther = buckets => {
     .filter( o => o.name === 'Other' )
     .reduce( ( prev, cur ) => prev + cur.value, 0 )
 
-  return sumOther > 0 ? buckets :
-   buckets.filter( o => o.name !== 'Other' )
+  return sumOther > 0 ? buckets : buckets.filter( o => o.name !== 'Other' )
 }
 
 export const isGreaterThanYear = ( from, to ) => {

From 464917bc6d23aa292b1a92d2c95d182337823cd7 Mon Sep 17 00:00:00 2001
From: Richard Dinh <richard.dinh@cfpb.gov>
Date: Wed, 8 Jul 2020 07:15:46 -0400
Subject: [PATCH 32/34] fix test update snapshots

---
 src/components/Trends/TrendsPanel.jsx         | 62 ++++++++++---------
 .../__snapshots__/TrendsPanel.spec.jsx.snap   | 14 ++---
 2 files changed, 39 insertions(+), 37 deletions(-)

diff --git a/src/components/Trends/TrendsPanel.jsx b/src/components/Trends/TrendsPanel.jsx
index b2497fc52..3b24109fc 100644
--- a/src/components/Trends/TrendsPanel.jsx
+++ b/src/components/Trends/TrendsPanel.jsx
@@ -14,10 +14,10 @@ import ExternalTooltip from './ExternalTooltip'
 import FilterPanel from '../Filters/FilterPanel'
 import FilterPanelToggle from '../Filters/FilterPanelToggle'
 import FocusHeader from './FocusHeader'
+import { formatDateView } from '../../utils/formatDate'
 import LensTabs from './LensTabs'
 import LineChart from '../Charts/LineChart'
 import Loading from '../Dialogs/Loading'
-import moment from 'moment'
 import { processRows } from '../../utils/chart'
 import React from 'react'
 import RowChart from '../Charts/RowChart'
@@ -79,40 +79,44 @@ export class TrendsPanel extends React.Component {
   }
 
   _phaseMap() {
-    if ( this.props.companyOverlay ) {
+    const {
+      companyOverlay, dataLensData, focusData, focusHelperText, overview, lens,
+      lensHelperText, minDate, maxDate, productData, subLensTitle, total
+    } = this.props
+
+    if ( companyOverlay ) {
       return null
     }
 
-    if ( this.props.overview ) {
+    if ( overview ) {
       return <RowChart id="product"
-                       colorScheme={ this.props.productData.colorScheme }
-                       data={ this.props.productData.data }
+                       colorScheme={ productData.colorScheme }
+                       data={ productData.data }
                        title={ 'Product by highest complaint volume ' +
-                        this.props.minDate + ' to ' + this.props.maxDate}
-                       helperText={ this.props.lensHelperText }
-                       total={ this.props.total }/>
+                        minDate + ' to ' + maxDate}
+                       helperText={ lensHelperText }
+                       total={ total }/>
     }
 
     if ( this.props.focus ) {
-      return <RowChart id={ this.props.lens }
-                       colorScheme={ this.props.focusData.colorScheme }
-                       data={ this.props.focusData.data }
-                       title={ this.props.subLensTitle + ' ' +
-                        this.props.minDate + ' to ' + this.props.maxDate }
-                       helperText={ this.props.focusHelperText }
-                       total={ this.props.total }/>
+      return <RowChart id={ lens }
+                       colorScheme={ focusData.colorScheme }
+                       data={ focusData.data }
+                       title={ subLensTitle + ' ' + minDate + ' to ' + maxDate }
+                       helperText={ focusHelperText }
+                       total={ total }/>
     }
 
     return [
       <LensTabs key={ 'lens-tab' } showTitle={ true }/>,
-      <RowChart id={ this.props.lens }
-                colorScheme={ this.props.dataLensData.colorScheme }
-                data={ this.props.dataLensData.data }
-                title={ this.props.subLensTitle + ' ' +
-                 this.props.minDate + ' to ' + this.props.maxDate }
-                helperText={ this.props.lensHelperText}
-                total={ this.props.total }
-                key={ this.props.lens + 'row' }/>
+      <RowChart id={ lens }
+                colorScheme={ dataLensData.colorScheme }
+                data={ dataLensData.data }
+                title={ subLensTitle + ' ' +
+                 minDate + ' to ' + maxDate }
+                helperText={ lensHelperText}
+                total={ total }
+                key={ lens + 'row' }/>
     ]
   }
 
@@ -221,10 +225,8 @@ const mapStateToProps = state => {
   const focusHelperText = subLens === '' ?
    focusHelperTextMap[lensKey] : focusHelperTextMap[subLens]
 
-  const minDate = moment( date_received_min )
-                      .format( 'MM/DD/YYYY' )
-  const maxDate = moment( date_received_max )
-                      .format( 'MM/DD/YYYY' )
+  const minDate = formatDateView( date_received_min )
+  const maxDate = formatDateView( date_received_max )
 
   return {
     chartType,
@@ -238,6 +240,8 @@ const mapStateToProps = state => {
     productData: processRows( results.product, false, lens ),
     dataLensData: processRows( results[lensKey], colorMap, lens ),
     lens,
+    maxDate,
+    minDate,
     overview: lens === 'Overview',
     showMobileFilters: state.view.width < 750,
     subLens,
@@ -245,9 +249,7 @@ const mapStateToProps = state => {
     lensHelperText: lensHelperText,
     focusHelperText: focusHelperText,
     total,
-    trendsDateWarningEnabled,
-    minDate,
-    maxDate
+    trendsDateWarningEnabled
   }
 }
 
diff --git a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
index f200e472f..53255783c 100644
--- a/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
+++ b/src/components/__tests__/__snapshots__/TrendsPanel.spec.jsx.snap
@@ -404,7 +404,7 @@ exports[`component:TrendsPanel Snapshots renders Focus without crashing 1`] = `
     className="row-chart-section"
   >
     <h3>
-      Sub-products, by product from 12/31/2017 to 12/31/2019
+      Sub-products, by product from 01/01/2018 to 01/01/2020
     </h3>
     <p>
       Sub-products the consumer identified in the complaint
@@ -787,7 +787,7 @@ exports[`component:TrendsPanel Snapshots renders area without crashing 1`] = `
     className="row-chart-section"
   >
     <h3>
-      Sub-products, by product from 12/31/2017 to 12/31/2019
+      Sub-products, by product from 01/01/2018 to 01/01/2020
     </h3>
     <p>
       Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.
@@ -1448,7 +1448,7 @@ exports[`component:TrendsPanel Snapshots renders date warning without crashing 1
     className="row-chart-section"
   >
     <h3>
-      Product by highest complaint volume 12/31/2017 to 12/31/2019
+      Product by highest complaint volume 01/01/2018 to 01/01/2020
     </h3>
     <p>
       Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.
@@ -1831,7 +1831,7 @@ exports[`component:TrendsPanel Snapshots renders external Tooltip without crashi
     className="row-chart-section"
   >
     <h3>
-      Sub-products, by product from 12/31/2017 to 12/31/2019
+      Sub-products, by product from 01/01/2018 to 01/01/2020
     </h3>
     <p>
       Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.
@@ -2096,7 +2096,7 @@ exports[`component:TrendsPanel Snapshots renders lineChart Overview without cras
     className="row-chart-section"
   >
     <h3>
-      Product by highest complaint volume 12/31/2017 to 12/31/2019
+      Product by highest complaint volume 01/01/2018 to 01/01/2020
     </h3>
     <p>
       Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.
@@ -2362,7 +2362,7 @@ exports[`component:TrendsPanel Snapshots renders mobile filters without crashing
     className="row-chart-section"
   >
     <h3>
-      Product by highest complaint volume 12/31/2017 to 12/31/2019
+      Product by highest complaint volume 01/01/2018 to 01/01/2020
     </h3>
     <p>
       Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.
@@ -2627,7 +2627,7 @@ exports[`component:TrendsPanel Snapshots renders print mode without crashing 1`]
     className="row-chart-section"
   >
     <h3>
-      Product by highest complaint volume 12/31/2017 to 12/31/2019
+      Product by highest complaint volume 01/01/2018 to 01/01/2020
     </h3>
     <p>
       Product and sub-product the consumer identified in the  complaint. Click on a product to expand sub-products.

From 3d576c400323522b1c0211fd6b4e8adaa42c3642 Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Wed, 8 Jul 2020 08:41:38 -0400
Subject: [PATCH 33/34] added showTitle status back

---
 src/components/Trends/LensTabs.jsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/components/Trends/LensTabs.jsx b/src/components/Trends/LensTabs.jsx
index 7545d9c6d..3f365ddc7 100644
--- a/src/components/Trends/LensTabs.jsx
+++ b/src/components/Trends/LensTabs.jsx
@@ -30,7 +30,7 @@ export class LensTabs extends React.Component {
   }
 
   render() {
-    const { lens } = this.props
+    const { lens, showTitle } = this.props
     if ( lens === 'Overview' ) {
       return null
     }

From 13278a123401e65433f5076db36558caba3f13bf Mon Sep 17 00:00:00 2001
From: Seph Coster <joseph.coster@cfpb.gov>
Date: Wed, 8 Jul 2020 08:51:46 -0400
Subject: [PATCH 34/34] reverting showTitle

---
 src/components/Trends/LensTabs.jsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/components/Trends/LensTabs.jsx b/src/components/Trends/LensTabs.jsx
index 3f365ddc7..7545d9c6d 100644
--- a/src/components/Trends/LensTabs.jsx
+++ b/src/components/Trends/LensTabs.jsx
@@ -30,7 +30,7 @@ export class LensTabs extends React.Component {
   }
 
   render() {
-    const { lens, showTitle } = this.props
+    const { lens } = this.props
     if ( lens === 'Overview' ) {
       return null
     }